Setting up my environment

Load libraries.

library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr     1.1.4     ✔ readr     2.1.5
## ✔ forcats   1.0.0     ✔ stringr   1.5.0
## ✔ ggplot2   3.5.0     ✔ tibble    3.2.1
## ✔ lubridate 1.9.3     ✔ tidyr     1.3.1
## ✔ purrr     1.0.1     
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(dplyr)
library(ggplot2)
library(tidyr)
library(maps)
## 
## Attaching package: 'maps'
## 
## The following object is masked from 'package:purrr':
## 
##     map
library(knitr)
library(here)
## here() starts at /Users/jjlof/Documents/Data Analyst/Videogames/R Data
library(skimr)
library(janitor)
## 
## Attaching package: 'janitor'
## 
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
library(readr)
library(scales)
## 
## Attaching package: 'scales'
## 
## The following object is masked from 'package:purrr':
## 
##     discard
## 
## The following object is masked from 'package:readr':
## 
##     col_factor
library(gridExtra)
## 
## Attaching package: 'gridExtra'
## 
## The following object is masked from 'package:dplyr':
## 
##     combine
library(grid)
library(magrittr)
## 
## Attaching package: 'magrittr'
## 
## The following object is masked from 'package:purrr':
## 
##     set_names
## 
## The following object is masked from 'package:tidyr':
## 
##     extract
library(patchwork)
library(RColorBrewer)

Read documents

In this analysis I choose to analyze:

I want to conduct this analysis because I love video games and play them in my free time. It has caught my attention to learn more about the sales that have been generated and the preferences that people have around the world because it is information that I wasn’t aware of.

Showing video games global sales data

dVgSales <- read.csv('~/Documents/Data Analyst/Videogames/VG-Chartz/VideoGamesGlobalSales_2024_02_19.csv')
unique(dVgSales)
##      Position
## 1           1
## 2           2
## 3           3
## 4           4
## 5           5
## 6           6
## 7           7
## 8           8
## 9           9
## 10         10
## 11         11
## 12         12
## 13         13
## 14         14
## 15         15
## 16         16
## 17         17
## 18         18
## 19         19
## 20         20
## 21         21
## 22         22
## 23         23
## 24         24
## 25         25
## 26         26
## 27         27
## 28         28
## 29         29
## 30         30
## 31         31
## 32         32
## 33         33
## 34         34
## 35         35
## 36         36
## 37         37
## 38         38
## 39         39
## 40         40
## 41         41
## 42         42
## 43         43
## 44         44
## 45         45
## 46         46
## 47         47
## 48         48
## 49         49
## 50         50
## 51         51
## 52         52
## 53         53
## 54         54
## 55         55
## 56         56
## 57         57
## 58         58
## 59         59
## 60         60
## 61         61
## 62         62
## 63         63
## 64         64
## 65         65
## 66         66
## 67         67
## 68         68
## 69         69
## 70         70
## 71         71
## 72         72
## 73         73
## 74         74
## 75         75
## 76         76
## 77         77
## 78         78
## 79         79
## 80         80
## 81         81
## 82         82
## 83         83
## 84         84
## 85         85
## 86         86
## 87         87
## 88         88
## 89         89
## 90         90
## 91         91
## 92         92
## 93         93
## 94         94
## 95         95
## 96         96
## 97         97
## 98         98
## 99         99
## 100       100
## 101       101
## 102       102
## 103       103
## 104       104
## 105       105
## 106       106
## 107       107
## 108       108
## 109       109
## 110       110
## 111       111
## 112       112
## 113       113
## 114       114
## 115       115
## 116       116
## 117       117
## 118       118
## 119       119
## 120       120
## 121       121
## 122       122
## 123       123
## 124       124
## 125       125
## 126       126
## 127       127
## 128       128
## 129       129
## 130       130
## 131       131
## 132       132
## 133       133
## 134       134
## 135       135
## 136       136
## 137       137
## 138       138
## 139       139
## 140       140
## 141       141
## 142       142
## 143       143
## 144       144
## 145       145
## 146       146
## 147       147
## 148       148
## 149       149
## 150       150
## 151       151
## 152       152
## 153       153
## 154       154
## 155       155
## 156       156
## 157       157
## 158       158
## 159       159
## 160       160
## 161       161
## 162       162
## 163       163
## 164       164
## 165       165
## 166       166
## 167       167
## 168       168
## 169       169
## 170       170
## 171       171
## 172       172
## 173       173
## 174       174
## 175       175
## 176       176
## 177       177
## 178       178
## 179       179
## 180       180
## 181       181
## 182       182
## 183       183
## 184       184
## 185       185
## 186       186
## 187       187
## 188       188
## 189       189
## 190       190
## 191       191
## 192       192
## 193       193
## 194       194
## 195       195
## 196       196
## 197       197
## 198       198
## 199       199
## 200       200
## 201       201
## 202       202
## 203       203
## 204       204
## 205       205
## 206       206
## 207       207
## 208       208
## 209       209
## 210       210
## 211       211
## 212       212
## 213       213
## 214       214
## 215       215
## 216       216
## 217       217
## 218       218
## 219       219
## 220       220
## 221       221
## 222       222
## 223       223
## 224       224
## 225       225
## 226       226
## 227       227
## 228       228
## 229       229
## 230       230
## 231       231
## 232       232
## 233       233
## 234       234
## 235       235
## 236       236
## 237       237
## 238       238
## 239       239
## 240       240
## 241       241
## 242       242
## 243       243
## 244       244
## 245       245
## 246       246
## 247       247
## 248       248
## 249       249
## 250       250
## 251       251
## 252       252
## 253       253
## 254       254
## 255       255
## 256       256
## 257       257
## 258       258
## 259       259
## 260       260
## 261       261
## 262       262
## 263       263
## 264       264
## 265       265
## 266       266
## 267       267
## 268       268
## 269       269
## 270       270
## 271       271
## 272       272
## 273       273
## 274       274
## 275       275
## 276       276
## 277       277
## 278       278
## 279       279
## 280       280
## 281       281
## 282       282
## 283       283
## 284       284
## 285       285
## 286       286
## 287       287
## 288       288
## 289       289
## 290       290
## 291       291
## 292       292
## 293       293
## 294       294
## 295       295
## 296       296
## 297       297
## 298       298
## 299       299
## 300       300
## 301       301
## 302       302
## 303       303
## 304       304
## 305       305
## 306       306
## 307       307
## 308       308
## 309       309
## 310       310
## 311       311
## 312       312
## 313       313
## 314       314
## 315       315
## 316       316
## 317       317
## 318       318
## 319       319
## 320       320
## 321       321
## 322       322
## 323       323
## 324       324
## 325       325
## 326       326
## 327       327
## 328       328
## 329       329
## 330       330
## 331       331
## 332       332
## 333       333
## 334       334
## 335       335
## 336       336
## 337       337
## 338       338
## 339       339
## 340       340
## 341       341
## 342       342
## 343       343
## 344       344
## 345       345
## 346       346
## 347       347
## 348       348
## 349       349
## 350       350
## 351       351
## 352       352
## 353       353
## 354       354
## 355       355
## 356       356
## 357       357
## 358       358
## 359       359
## 360       360
## 361       361
## 362       362
## 363       363
## 364       364
## 365       365
## 366       366
## 367       367
## 368       368
## 369       369
## 370       370
## 371       371
## 372       372
## 373       373
## 374       374
## 375       375
## 376       376
## 377       377
## 378       378
## 379       379
## 380       380
## 381       381
## 382       382
## 383       383
## 384       384
## 385       385
## 386       386
## 387       387
## 388       388
## 389       389
## 390       390
## 391       391
## 392       392
## 393       393
## 394       394
## 395       395
## 396       396
## 397       397
## 398       398
## 399       399
## 400       400
## 401       401
## 402       402
## 403       403
## 404       404
## 405       405
## 406       406
## 407       407
## 408       408
## 409       409
## 410       410
## 411       411
## 412       412
## 413       413
## 414       414
## 415       415
## 416       416
## 417       417
## 418       418
## 419       419
## 420       420
## 421       421
## 422       422
## 423       423
## 424       424
## 425       425
## 426       426
## 427       427
## 428       428
## 429       429
## 430       430
## 431       431
## 432       432
## 433       433
## 434       434
## 435       435
## 436       436
## 437       437
## 438       438
## 439       439
## 440       440
## 441       441
## 442       442
## 443       443
## 444       444
## 445       445
## 446       446
## 447       447
## 448       448
## 449       449
## 450       450
## 451       451
## 452       452
## 453       453
## 454       454
## 455       455
## 456       456
## 457       457
## 458       458
## 459       459
## 460       460
## 461       461
## 462       462
## 463       463
## 464       464
## 465       465
## 466       466
## 467       467
## 468       468
## 469       469
## 470       470
## 471       471
## 472       472
## 473       473
## 474       474
## 475       475
## 476       476
## 477       477
## 478       478
## 479       479
## 480       480
## 481       481
## 482       482
## 483       483
## 484       484
## 485       485
## 486       486
## 487       487
## 488       488
## 489       489
## 490       490
## 491       491
## 492       492
## 493       493
## 494       494
## 495       495
## 496       496
## 497       497
## 498       498
## 499       499
## 500       500
## 501       501
## 502       502
## 503       503
## 504       504
## 505       505
## 506       506
## 507       507
## 508       508
## 509       509
## 510       510
## 511       511
## 512       512
## 513       513
## 514       514
## 515       515
## 516       516
## 517       517
## 518       518
## 519       519
## 520       520
## 521       521
## 522       522
## 523       523
## 524       524
## 525       525
## 526       526
## 527       527
## 528       528
## 529       529
## 530       530
## 531       531
## 532       532
## 533       533
## 534       534
## 535       535
## 536       536
## 537       537
## 538       538
## 539       539
## 540       540
## 541       541
## 542       542
## 543       543
## 544       544
## 545       545
## 546       546
## 547       547
## 548       548
## 549       549
## 550       550
## 551       551
## 552       552
## 553       553
## 554       554
## 555       555
## 556       556
## 557       557
## 558       558
## 559       559
## 560       560
## 561       561
## 562       562
## 563       563
## 564       564
## 565       565
## 566       566
## 567       567
## 568       568
## 569       569
## 570       570
## 571       571
## 572       572
## 573       573
## 574       574
## 575       575
## 576       576
## 577       577
## 578       578
## 579       579
## 580       580
## 581       581
## 582       582
## 583       583
## 584       584
## 585       585
## 586       586
## 587       587
## 588       588
## 589       589
## 590       590
## 591       591
## 592       592
## 593       593
## 594       594
## 595       595
## 596       596
## 597       597
## 598       598
## 599       599
## 600       600
## 601       601
## 602       602
## 603       603
## 604       604
## 605       605
## 606       606
## 607       607
## 608       608
## 609       609
## 610       610
## 611       611
## 612       612
## 613       613
## 614       614
## 615       615
## 616       616
## 617       617
## 618       618
## 619       619
## 620       620
## 621       621
## 622       622
## 623       623
## 624       624
## 625       625
## 626       626
## 627       627
## 628       628
## 629       629
## 630       630
## 631       631
## 632       632
## 633       633
## 634       634
## 635       635
## 636       636
## 637       637
## 638       638
## 639       639
## 640       640
## 641       641
## 642       642
## 643       643
## 644       644
## 645       645
## 646       646
## 647       647
## 648       648
## 649       649
## 650       650
## 651       651
## 652       652
## 653       653
## 654       655
## 655       656
## 656       657
## 657       658
## 658       659
## 659       660
## 660       661
## 661       662
## 662       663
## 663       664
## 664       665
## 665       666
## 666       667
## 667       668
## 668       669
## 669       670
## 670       671
## 671       672
## 672       673
## 673       674
## 674       675
## 675       676
## 676       677
## 677       678
## 678       679
## 679       680
## 680       681
## 681       682
## 682       683
## 683       684
## 684       685
## 685       686
## 686       687
## 687       688
## 688       689
## 689       690
## 690       691
## 691       692
## 692       693
## 693       694
## 694       695
## 695       696
## 696       697
## 697       698
## 698       699
## 699       700
## 700       701
## 701       702
## 702       703
## 703       704
## 704       705
## 705       706
## 706       707
## 707       708
## 708       709
## 709       710
## 710       711
## 711       712
## 712       713
## 713       714
## 714       715
## 715       716
## 716       717
## 717       718
## 718       719
## 719       720
## 720       721
## 721       722
## 722       723
## 723       724
## 724       725
## 725       726
## 726       727
## 727       728
## 728       729
## 729       730
## 730       731
## 731       732
## 732       733
## 733       734
## 734       735
## 735       736
## 736       737
## 737       738
## 738       739
## 739       740
## 740       741
## 741       742
## 742       743
## 743       744
## 744       745
## 745       746
## 746       747
## 747       748
## 748       749
## 749       750
## 750       751
## 751       752
## 752       753
## 753       754
## 754       755
## 755       756
## 756       757
## 757       758
## 758       759
## 759       760
## 760       761
## 761       762
## 762       763
## 763       764
## 764       765
## 765       766
## 766       767
## 767       768
## 768       769
## 769       770
## 770       771
## 771       772
## 772       773
## 773       774
## 774       775
## 775       776
## 776       777
## 777       778
## 778       779
## 779       780
## 780       781
## 781       782
## 782       783
## 783       784
## 784       785
## 785       786
## 786       787
## 787       788
## 788       789
## 789       790
## 790       791
## 791       792
## 792       793
## 793       794
## 794       795
## 795       796
## 796       797
## 797       798
## 798       799
## 799       800
## 800       801
## 801       802
## 802       803
## 803       804
## 804       805
## 805       806
## 806       807
## 807       808
## 808       809
## 809       810
## 810       811
## 811       812
## 812       813
## 813       814
## 814       815
## 815       816
## 816       817
## 817       818
## 818       819
## 819       820
## 820       821
## 821       822
## 822       823
## 823       824
## 824       825
## 825       826
## 826       827
## 827       828
## 828       829
## 829       830
## 830       831
## 831       832
## 832       833
## 833       834
## 834       835
## 835       836
## 836       837
## 837       838
## 838       839
## 839       840
## 840       841
## 841       842
## 842       843
## 843       844
## 844       845
## 845       846
## 846       847
## 847       848
## 848       849
## 849       850
## 850       851
## 851       852
## 852       853
## 853       854
## 854       855
## 855       856
## 856       857
## 857       858
## 858       859
## 859       860
## 860       861
## 861       862
## 862       863
## 863       864
## 864       865
## 865       866
## 866       867
## 867       868
## 868       869
## 869       870
## 870       871
## 871       872
## 872       873
## 873       874
## 874       875
## 875       876
## 876       877
## 877       878
## 878       879
## 879       880
## 880       881
## 881       882
## 882       883
## 883       884
## 884       885
## 885       886
## 886       887
## 887       888
## 888       889
## 889       890
## 890       891
## 891       892
## 892       893
## 893       894
## 894       895
## 895       896
## 896       897
## 897       898
## 898       899
## 899       900
## 900       901
## 901       902
## 902       903
## 903       904
## 904       905
## 905       906
## 906       907
## 907       908
## 908       909
## 909       910
## 910       911
## 911       912
## 912       913
## 913       914
## 914       915
## 915       916
## 916       917
## 917       918
## 918       919
## 919       920
## 920       921
## 921       922
## 922       923
## 923       924
## 924       925
## 925       926
## 926       927
## 927       928
## 928       929
## 929       930
## 930       931
## 931       932
## 932       933
## 933       934
## 934       935
## 935       936
## 936       937
## 937       938
## 938       939
## 939       940
## 940       941
## 941       942
## 942       943
## 943       944
## 944       945
## 945       946
## 946       947
## 947       948
## 948       949
## 949       950
## 950       951
## 951       952
## 952       953
## 953       954
## 954       955
## 955       956
## 956       957
## 957       958
## 958       959
## 959       960
## 960       961
## 961       962
## 962       963
## 963       964
## 964       965
## 965       966
## 966       967
## 967       968
## 968       969
## 969       970
## 970       971
## 971       972
## 972       973
## 973       974
## 974       975
## 975       976
## 976       977
## 977       978
## 978       979
## 979       980
## 980       981
## 981       982
## 982       983
## 983       984
## 984       985
## 985       986
## 986       987
## 987       988
## 988       989
## 989       990
## 990       991
## 991       992
## 992       993
## 993       994
## 994       995
## 995       996
## 996       997
## 997       998
## 998       999
## 999      1000
## 1000     1001
## 1001     1002
## 1002     1003
## 1003     1004
## 1004     1005
## 1005     1006
## 1006     1007
## 1007     1008
## 1008     1009
## 1009     1010
## 1010     1011
## 1011     1012
## 1012     1013
## 1013     1014
## 1014     1015
## 1015     1016
## 1016     1017
## 1017     1018
## 1018     1019
## 1019     1020
## 1020     1021
## 1021     1022
## 1022     1023
## 1023     1024
## 1024     1025
## 1025     1026
## 1026     1027
## 1027     1028
## 1028     1029
## 1029     1030
## 1030     1031
## 1031     1032
## 1032     1033
## 1033     1034
## 1034     1035
## 1035     1036
## 1036     1037
## 1037     1038
## 1038     1039
## 1039     1040
## 1040     1041
## 1041     1042
## 1042     1043
## 1043     1044
## 1044     1045
## 1045     1046
## 1046     1047
## 1047     1048
## 1048     1049
## 1049     1050
## 1050     1051
## 1051     1052
## 1052     1053
## 1053     1054
## 1054     1055
## 1055     1056
## 1056     1057
## 1057     1058
## 1058     1059
## 1059     1060
## 1060     1061
## 1061     1062
## 1062     1063
## 1063     1064
## 1064     1065
## 1065     1066
## 1066     1067
## 1067     1068
## 1068     1069
## 1069     1070
## 1070     1071
## 1071     1072
## 1072     1073
## 1073     1074
## 1074     1075
## 1075     1076
## 1076     1077
## 1077     1078
## 1078     1079
## 1079     1080
## 1080     1081
## 1081     1082
## 1082     1083
## 1083     1084
## 1084     1085
## 1085     1086
## 1086     1087
## 1087     1088
## 1088     1089
## 1089     1090
## 1090     1091
## 1091     1092
## 1092     1093
## 1093     1094
## 1094     1095
## 1095     1096
## 1096     1097
## 1097     1098
## 1098     1099
## 1099     1100
## 1100     1101
## 1101     1102
## 1102     1103
## 1103     1104
## 1104     1105
## 1105     1106
## 1106     1107
## 1107     1108
## 1108     1109
## 1109     1110
## 1110     1111
## 1111     1112
## 1112     1113
## 1113     1114
## 1114     1115
## 1115     1116
## 1116     1117
## 1117     1118
## 1118     1119
## 1119     1120
## 1120     1121
## 1121     1122
## 1122     1123
## 1123     1124
## 1124     1125
## 1125     1126
## 1126     1127
## 1127     1128
## 1128     1129
## 1129     1130
## 1130     1131
## 1131     1132
## 1132     1133
## 1133     1134
## 1134     1135
## 1135     1136
## 1136     1137
## 1137     1138
## 1138     1139
## 1139     1140
## 1140     1141
## 1141     1142
## 1142     1143
## 1143     1144
## 1144     1145
## 1145     1146
## 1146     1147
## 1147     1148
## 1148     1149
## 1149     1150
## 1150     1151
## 1151     1152
## 1152     1153
## 1153     1154
## 1154     1155
## 1155     1156
## 1156     1157
## 1157     1158
## 1158     1159
## 1159     1160
## 1160     1161
## 1161     1162
## 1162     1163
## 1163     1164
## 1164     1165
## 1165     1166
## 1166     1167
## 1167     1168
## 1168     1169
## 1169     1170
## 1170     1171
## 1171     1172
## 1172     1173
## 1173     1174
## 1174     1175
## 1175     1176
## 1176     1177
## 1177     1178
## 1178     1179
## 1179     1180
## 1180     1181
## 1181     1182
## 1182     1183
## 1183     1184
## 1184     1185
## 1185     1186
## 1186     1187
## 1187     1188
## 1188     1189
## 1189     1190
## 1190     1191
## 1191     1192
## 1192     1193
## 1193     1194
## 1194     1195
## 1195     1196
## 1196     1197
## 1197     1198
## 1198     1199
## 1199     1200
## 1200     1201
## 1201     1202
## 1202     1203
## 1203     1204
## 1204     1205
## 1205     1206
## 1206     1207
## 1207     1208
## 1208     1209
## 1209     1210
## 1210     1211
## 1211     1212
## 1212     1213
## 1213     1214
## 1214     1215
## 1215     1216
## 1216     1217
## 1217     1218
## 1218     1219
## 1219     1220
## 1220     1221
## 1221     1222
## 1222     1223
## 1223     1224
## 1224     1225
## 1225     1226
## 1226     1227
## 1227     1228
## 1228     1229
## 1229     1230
## 1230     1231
## 1231     1232
## 1232     1233
## 1233     1234
## 1234     1235
## 1235     1236
## 1236     1237
## 1237     1238
## 1238     1239
## 1239     1240
## 1240     1241
## 1241     1242
## 1242     1243
## 1243     1244
## 1244     1245
## 1245     1246
## 1246     1247
## 1247     1248
## 1248     1249
## 1249     1250
## 1250     1251
## 1251     1252
## 1252     1253
## 1253     1254
## 1254     1255
## 1255     1256
## 1256     1257
## 1257     1258
## 1258     1259
## 1259     1260
## 1260     1261
## 1261     1262
## 1262     1263
## 1263     1264
## 1264     1265
## 1265     1266
## 1266     1267
## 1267     1268
## 1268     1269
## 1269     1270
## 1270     1271
## 1271     1272
## 1272     1273
## 1273     1274
## 1274     1275
## 1275     1276
## 1276     1277
## 1277     1278
## 1278     1279
## 1279     1280
## 1280     1281
## 1281     1282
## 1282     1283
## 1283     1284
## 1284     1285
## 1285     1286
## 1286     1287
## 1287     1288
## 1288     1289
## 1289     1290
## 1290     1291
## 1291     1292
## 1292     1293
## 1293     1294
## 1294     1295
## 1295     1296
## 1296     1297
## 1297     1298
## 1298     1299
## 1299     1300
## 1300     1301
## 1301     1302
## 1302     1303
## 1303     1304
## 1304     1305
## 1305     1306
## 1306     1307
## 1307     1308
## 1308     1309
## 1309     1310
## 1310     1311
## 1311     1312
## 1312     1313
## 1313     1314
## 1314     1315
## 1315     1316
## 1316     1317
## 1317     1318
## 1318     1319
## 1319     1320
## 1320     1321
## 1321     1322
## 1322     1323
## 1323     1324
## 1324     1325
## 1325     1326
## 1326     1327
## 1327     1328
## 1328     1329
## 1329     1330
## 1330     1331
## 1331     1332
## 1332     1333
## 1333     1334
## 1334     1335
## 1335     1336
## 1336     1337
## 1337     1338
## 1338     1339
## 1339     1340
## 1340     1341
## 1341     1342
## 1342     1343
## 1343     1344
## 1344     1345
## 1345     1346
## 1346     1347
## 1347     1348
## 1348     1349
## 1349     1350
## 1350     1351
## 1351     1352
## 1352     1353
## 1353     1354
## 1354     1355
## 1355     1356
## 1356     1357
## 1357     1358
## 1358     1359
## 1359     1360
## 1360     1361
## 1361     1362
## 1362     1363
## 1363     1364
## 1364     1365
## 1365     1366
## 1366     1367
## 1367     1368
## 1368     1369
## 1369     1370
## 1370     1371
## 1371     1372
## 1372     1373
## 1373     1374
## 1374     1375
## 1375     1376
## 1376     1377
## 1377     1378
## 1378     1379
## 1379     1380
## 1380     1381
## 1381     1382
## 1382     1383
## 1383     1384
## 1384     1385
## 1385     1386
## 1386     1387
## 1387     1388
## 1388     1389
## 1389     1390
## 1390     1391
## 1391     1392
## 1392     1393
## 1393     1394
## 1394     1395
## 1395     1396
## 1396     1397
## 1397     1398
## 1398     1399
## 1399     1400
## 1400     1401
## 1401     1402
## 1402     1403
## 1403     1404
## 1404     1405
## 1405     1406
## 1406     1407
## 1407     1408
## 1408     1409
## 1409     1410
## 1410     1411
## 1411     1412
## 1412     1413
## 1413     1414
## 1414     1415
## 1415     1416
## 1416     1417
## 1417     1418
## 1418     1419
## 1419     1420
## 1420     1421
## 1421     1422
## 1422     1423
## 1423     1424
## 1424     1425
## 1425     1426
## 1426     1427
## 1427     1428
## 1428     1429
## 1429     1430
## 1430     1431
## 1431     1432
## 1432     1433
## 1433     1434
## 1434     1435
## 1435     1436
## 1436     1437
## 1437     1438
## 1438     1439
## 1439     1440
## 1440     1441
## 1441     1442
## 1442     1443
## 1443     1444
## 1444     1445
## 1445     1446
## 1446     1447
## 1447     1448
## 1448     1449
## 1449     1450
## 1450     1451
## 1451     1452
## 1452     1453
## 1453     1454
## 1454     1455
## 1455     1456
## 1456     1457
## 1457     1458
## 1458     1459
## 1459     1460
## 1460     1461
## 1461     1462
## 1462     1463
## 1463     1464
## 1464     1465
## 1465     1466
## 1466     1467
## 1467     1468
## 1468     1469
## 1469     1470
## 1470     1471
## 1471     1472
## 1472     1473
## 1473     1474
## 1474     1475
## 1475     1476
## 1476     1477
## 1477     1478
## 1478     1479
## 1479     1480
## 1480     1481
## 1481     1482
## 1482     1483
## 1483     1484
## 1484     1485
## 1485     1486
## 1486     1487
## 1487     1488
## 1488     1489
## 1489     1490
## 1490     1491
## 1491     1492
## 1492     1493
## 1493     1494
## 1494     1495
## 1495     1496
## 1496     1497
## 1497     1498
## 1498     1499
## 1499     1500
## 1500     1501
## 1501     1502
## 1502     1503
## 1503     1504
## 1504     1505
## 1505     1506
## 1506     1507
## 1507     1508
## 1508     1509
## 1509     1510
## 1510     1511
## 1511     1512
## 1512     1513
## 1513     1514
## 1514    16060
## 1515     1516
## 1516     1517
## 1517     1518
## 1518     1519
## 1519     1520
## 1520     1521
## 1521     1522
## 1522     1523
## 1523     1524
## 1524     1525
## 1525     1526
## 1526     1527
## 1527     1528
## 1528     1529
## 1529     1530
## 1530     1531
## 1531     1532
## 1532     1533
## 1533     1534
## 1534     1535
## 1535     1536
## 1536     1537
## 1537     1538
## 1538     1539
## 1539     1540
## 1540     1541
## 1541     1542
## 1542     1543
## 1543     1544
## 1544     1545
## 1545     1546
## 1546     1547
## 1547     1548
## 1548     1549
## 1549     1550
## 1550     1551
## 1551     1552
## 1552     1553
## 1553     1554
## 1554     1555
## 1555     1556
## 1556     1557
## 1557     1558
## 1558     1559
## 1559     1560
## 1560     1561
## 1561     1562
## 1562     1563
## 1563     1564
## 1564     1565
## 1565     1566
## 1566     1567
## 1567     1568
## 1568     1569
## 1569     1570
## 1570     1571
## 1571     1572
## 1572     1573
## 1573     1574
## 1574     1575
## 1575     1576
## 1576     1577
## 1577     1578
## 1578     1579
## 1579     1580
## 1580     1581
## 1581     1582
## 1582     1583
## 1583     1584
## 1584     1585
## 1585     1586
## 1586    16061
## 1587     1588
## 1588     1589
## 1589     1590
## 1590     1591
## 1591     1592
## 1592     1593
## 1593     1594
## 1594     1595
## 1595     1596
## 1596     1597
## 1597     1598
## 1598     1599
## 1599     1600
## 1600     1601
## 1601     1602
## 1602     1603
## 1603     1604
## 1604     1605
## 1605     1606
## 1606     1607
## 1607     1608
## 1608     1609
## 1609     1610
## 1610     1611
## 1611     1612
## 1612     1613
## 1613     1614
## 1614     1615
## 1615     1616
## 1616     1617
## 1617     1618
## 1618     1619
## 1619     1620
## 1620     1621
## 1621     1622
## 1622     1623
## 1623     1624
## 1624     1625
## 1625     1626
## 1626     1627
## 1627     1628
## 1628     1629
## 1629     1630
## 1630     1631
## 1631     1632
## 1632     1633
## 1633     1634
## 1634     1635
## 1635     1636
## 1636     1637
## 1637     1638
## 1638     1639
## 1639     1640
## 1640     1641
## 1641     1642
## 1642     1643
## 1643     1644
## 1644     1645
## 1645     1646
## 1646     1647
## 1647     1648
## 1648     1649
## 1649     1650
## 1650    16068
## 1651     1652
## 1652     1653
## 1653     1654
## 1654     1655
## 1655     1656
## 1656     1657
## 1657     1658
## 1658     1659
## 1659     1660
## 1660     1661
## 1661     1662
## 1662     1663
## 1663     1664
## 1664     1665
## 1665     1666
## 1666     1667
## 1667     1668
## 1668     1669
## 1669     1670
## 1670     1671
## 1671     1672
## 1672     1673
## 1673     1674
## 1674     1675
## 1675     1676
## 1676     1677
## 1677     1678
## 1678     1679
## 1679     1680
## 1680     1681
## 1681     1682
## 1682     1683
## 1683     1684
## 1684     1685
## 1685     1686
## 1686     1687
## 1687     1688
## 1688     1689
## 1689     1690
## 1690     1691
## 1691     1692
## 1692     1693
## 1693     1694
## 1694     1695
## 1695     1696
## 1696     1697
## 1697     1698
## 1698    16194
## 1699     1700
## 1700     1701
## 1701     1702
## 1702     1703
## 1703     1704
## 1704     1705
## 1705     1706
## 1706     1707
## 1707     1708
## 1708     1709
## 1709     1710
## 1710     1711
## 1711     1712
## 1712     1713
## 1713     1714
## 1714     1715
## 1715     1716
## 1716     1717
## 1717     1718
## 1718     1719
## 1719     1720
## 1720     1721
## 1721     1722
## 1722     1723
## 1723     1724
## 1724     1725
## 1725     1726
## 1726     1727
## 1727     1728
## 1728     1729
## 1729     1730
## 1730     1731
## 1731     1732
## 1732     1733
## 1733     1734
## 1734     1735
## 1735     1736
## 1736     1737
## 1737     1738
## 1738     1739
## 1739     1740
## 1740     1741
## 1741     1742
## 1742     1743
## 1743     1744
## 1744     1745
## 1745     1746
## 1746     1747
## 1747     1748
## 1748     1749
## 1749     1750
## 1750     1751
## 1751     1752
## 1752     1753
## 1753     1754
## 1754     1755
## 1755     1756
## 1756     1757
## 1757     1758
## 1758     1759
## 1759     1760
## 1760     1761
## 1761     1762
## 1762     1763
## 1763     1764
## 1764     1765
## 1765     1766
## 1766     1767
## 1767     1768
## 1768     1769
## 1769     1770
## 1770     1771
## 1771     1772
## 1772     1773
## 1773     1774
## 1774     1775
## 1775     1776
## 1776     1777
## 1777     1778
## 1778     1779
## 1779     1780
## 1780     1781
## 1781     1782
## 1782     1783
## 1783     1784
## 1784     1785
## 1785     1786
## 1786     1787
## 1787     1788
## 1788     1789
## 1789     1790
## 1790     1791
## 1791     1792
## 1792     1793
## 1793     1794
## 1794     1795
## 1795     1796
## 1796     1797
## 1797     1798
## 1798     1799
## 1799     1800
## 1800     1801
## 1801     1802
## 1802     1803
## 1803     1804
## 1804     1805
## 1805     1806
## 1806     1807
## 1807     1808
## 1808     1809
## 1809     1810
## 1810     1811
## 1811     1812
## 1812     1813
## 1813     1814
## 1814     1815
## 1815     1816
## 1816     1817
## 1817     1818
## 1818     1819
## 1819     1820
## 1820     1821
## 1821     1822
## 1822     1823
## 1823     1824
## 1824     1825
## 1825     1826
## 1826     1827
## 1827     1828
## 1828     1829
## 1829     1830
## 1830     1831
## 1831     1832
## 1832     1833
## 1833     1834
## 1834     1835
## 1835     1836
## 1836     1837
## 1837     1838
## 1838     1839
## 1839     1840
## 1840     1841
## 1841     1842
## 1842     1843
## 1843     1844
## 1844     1845
## 1845     1846
## 1846     1847
## 1847     1848
## 1848     1849
## 1849     1850
## 1850     1851
## 1851     1852
## 1852     1853
## 1853     1854
## 1854     1855
## 1855     1856
## 1856     1857
## 1857     1858
## 1858     1859
## 1859     1860
## 1860     1861
## 1861     1862
## 1862     1863
## 1863     1864
## 1864     1865
## 1865     1866
## 1866     1867
## 1867     1868
## 1868     1869
## 1869     1870
## 1870     1871
## 1871     1872
## 1872     1873
## 1873     1874
## 1874     1875
## 1875     1876
## 1876     1877
## 1877     1878
## 1878     1879
## 1879     1880
## 1880     1881
## 1881     1882
## 1882     1883
## 1883     1884
## 1884     1885
## 1885     1886
## 1886     1887
## 1887     1888
## 1888     1889
## 1889     1890
## 1890     1891
## 1891     1892
## 1892     1893
## 1893     1894
## 1894     1895
## 1895     1896
## 1896     1897
## 1897     1898
## 1898     1899
## 1899     1900
## 1900     1901
## 1901     1902
## 1902     1903
## 1903     1904
## 1904     1905
## 1905     1906
## 1906     1907
## 1907     1908
## 1908     1909
## 1909     1910
## 1910     1911
## 1911     1912
## 1912     1913
## 1913     1914
## 1914     1915
## 1915     1916
## 1916     1917
## 1917     1918
## 1918     1919
## 1919     1920
## 1920     1921
## 1921     1922
## 1922     1923
## 1923     1924
## 1924     1925
## 1925     1926
## 1926     1927
## 1927     1928
## 1928     1929
## 1929     1930
## 1930     1931
## 1931     1932
## 1932     1933
## 1933     1934
## 1934     1935
## 1935     1936
## 1936     1937
## 1937     1938
## 1938     1939
## 1939     1940
## 1940     1941
## 1941     1942
## 1942     1943
## 1943     1944
## 1944     1945
## 1945     1946
## 1946     1947
## 1947     1948
## 1948     1949
## 1949     1950
## 1950     1951
## 1951     1952
## 1952     1953
## 1953     1954
## 1954     1955
## 1955     1956
## 1956     1957
## 1957     1958
## 1958     1959
## 1959     1960
## 1960     1961
## 1961     1962
## 1962     1963
## 1963     1964
## 1964     1965
## 1965     1966
## 1966     1967
## 1967     1968
## 1968     1969
## 1969     1970
## 1970     1971
## 1971     1972
## 1972     1973
## 1973     1974
## 1974     1975
## 1975     1976
## 1976     1977
## 1977     1978
## 1978     1979
## 1979     1980
## 1980     1981
## 1981     1982
## 1982     1983
## 1983     1984
## 1984     1985
## 1985     1986
## 1986     1987
## 1987     1988
## 1988     1989
## 1989     1990
## 1990     1991
## 1991    16197
## 1992     1993
## 1993     1994
## 1994     1995
## 1995     1996
## 1996     1997
## 1997     1998
## 1998     1999
## 1999     2000
## 2000     2001
## 2001     2002
## 2002     2003
## 2003     2004
## 2004     2005
## 2005     2006
## 2006     2007
## 2007     2008
## 2008     2009
## 2009     2010
## 2010     2011
## 2011     2012
## 2012     2013
## 2013     2014
## 2014     2015
## 2015     2016
## 2016     2017
## 2017     2018
## 2018     2019
## 2019     2020
## 2020    16201
## 2021     2022
## 2022     2023
## 2023     2024
## 2024     2025
## 2025     2026
## 2026     2027
## 2027     2028
## 2028     2029
## 2029     2030
## 2030     2031
## 2031     2032
## 2032     2033
## 2033     2034
## 2034     2035
## 2035     2036
## 2036     2037
## 2037     2038
## 2038     2039
## 2039     2040
## 2040     2041
## 2041     2042
## 2042     2043
## 2043     2044
## 2044     2045
## 2045     2046
## 2046     2047
## 2047     2048
## 2048     2049
## 2049     2050
## 2050     2051
## 2051     2052
## 2052     2053
## 2053     2054
## 2054     2055
## 2055     2056
## 2056     2057
## 2057     2058
## 2058     2059
## 2059     2060
## 2060     2061
## 2061     2062
## 2062     2063
## 2063     2064
## 2064     2065
## 2065     2066
## 2066     2067
## 2067     2068
## 2068     2069
## 2069     2070
## 2070     2071
## 2071     2072
## 2072     2073
## 2073     2074
## 2074     2075
## 2075     2076
## 2076     2077
## 2077     2078
## 2078     2079
## 2079     2080
## 2080     2081
## 2081     2082
## 2082     2083
## 2083     2084
## 2084     2085
## 2085     2086
## 2086     2087
## 2087     2088
## 2088     2089
## 2089     2090
## 2090     2091
## 2091     2092
## 2092     2093
## 2093     2094
## 2094     2095
## 2095     2096
## 2096     2097
## 2097     2098
## 2098     2099
## 2099     2100
## 2100     2101
## 2101     2102
## 2102     2103
## 2103     2104
## 2104     2105
## 2105     2106
## 2106     2107
## 2107     2108
## 2108     2109
## 2109     2110
## 2110     2111
## 2111     2112
## 2112     2113
## 2113     2114
## 2114    16232
## 2115    16249
## 2116     2117
## 2117     2118
## 2118     2119
## 2119     2120
## 2120     2121
## 2121     2122
## 2122     2123
## 2123     2124
## 2124     2125
## 2125     2126
## 2126     2127
## 2127     2128
## 2128     2129
## 2129     2130
## 2130     2131
## 2131     2132
## 2132     2133
## 2133     2134
## 2134     2135
## 2135    16310
## 2136     2137
## 2137     2138
## 2138     2139
## 2139     2140
## 2140     2141
## 2141     2142
## 2142     2143
## 2143     2144
## 2144     2145
## 2145     2146
## 2146     2147
## 2147     2148
## 2148     2149
## 2149     2150
## 2150     2151
## 2151     2152
## 2152     2153
## 2153     2154
## 2154     2155
## 2155     2156
## 2156     2157
## 2157     2158
## 2158     2159
## 2159     2160
## 2160     2161
## 2161     2162
## 2162     2163
## 2163     2164
## 2164     2165
## 2165     2166
## 2166     2167
## 2167     2168
## 2168     2169
## 2169     2170
## 2170     2171
## 2171     2172
## 2172     2173
## 2173     2174
## 2174    16330
## 2175     2176
## 2176     2177
## 2177     2178
## 2178     2179
## 2179     2180
## 2180     2181
## 2181     2182
## 2182     2183
## 2183     2184
## 2184     2185
## 2185     2186
## 2186     2187
## 2187     2188
## 2188     2189
## 2189     2190
## 2190     2191
## 2191     2192
## 2192     2193
## 2193     2194
## 2194     2195
## 2195     2196
## 2196     2197
## 2197     2198
## 2198     2199
## 2199     2200
## 2200     2201
## 2201     2202
## 2202     2203
## 2203     2204
## 2204     2205
## 2205     2206
## 2206     2207
## 2207     2208
## 2208     2209
## 2209     2210
## 2210     2211
## 2211     2212
## 2212     2213
## 2213     2214
## 2214     2215
## 2215     2216
## 2216     2217
## 2217     2218
## 2218     2219
## 2219     2220
## 2220     2221
## 2221     2222
## 2222     2223
## 2223     2224
## 2224     2225
## 2225     2226
## 2226     2227
## 2227     2228
## 2228     2229
## 2229     2230
## 2230     2231
## 2231     2232
## 2232     2233
## 2233     2234
## 2234     2235
## 2235     2236
## 2236     2237
## 2237     2238
## 2238     2239
## 2239     2240
## 2240     2241
## 2241     2242
## 2242     2243
## 2243     2244
## 2244     2245
## 2245     2246
## 2246     2247
## 2247     2248
## 2248     2249
## 2249     2250
## 2250     2251
## 2251     2252
## 2252     2253
## 2253     2254
## 2254     2255
## 2255     2256
## 2256     2257
## 2257     2258
## 2258     2259
## 2259     2260
## 2260     2261
## 2261     2262
## 2262     2263
## 2263     2264
## 2264     2265
## 2265     2266
## 2266     2267
## 2267     2268
## 2268     2269
## 2269     2270
## 2270     2271
## 2271     2272
## 2272     2273
## 2273     2274
## 2274     2275
## 2275     2276
## 2276     2277
## 2277     2278
## 2278     2279
## 2279     2280
## 2280     2281
## 2281     2282
## 2282     2283
## 2283     2284
## 2284     2285
## 2285     2286
## 2286     2287
## 2287    16369
## 2288     2289
## 2289     2290
## 2290     2291
## 2291     2292
## 2292     2293
## 2293     2294
## 2294     2295
## 2295     2296
## 2296    16430
## 2297     2298
## 2298     2299
## 2299     2300
## 2300     2301
## 2301     2302
## 2302     2303
## 2303     2304
## 2304     2305
## 2305     2306
## 2306     2307
## 2307     2308
## 2308     2309
## 2309     2310
## 2310     2311
## 2311     2312
## 2312     2313
## 2313     2314
## 2314     2315
## 2315     2316
## 2316     2317
## 2317     2318
## 2318     2319
## 2319     2320
## 2320     2321
## 2321     2322
## 2322     2323
## 2323     2324
## 2324     2325
## 2325     2326
## 2326     2327
## 2327     2328
## 2328     2329
## 2329     2330
## 2330     2331
## 2331     2332
## 2332     2333
## 2333     2334
## 2334     2335
## 2335     2336
## 2336     2337
## 2337     2338
## 2338     2339
## 2339     2340
## 2340     2341
## 2341     2342
## 2342     2343
## 2343     2344
## 2344     2345
## 2345     2346
## 2346     2347
## 2347     2348
## 2348     2349
## 2349     2350
## 2350     2351
## 2351     2352
## 2352     2353
## 2353     2354
## 2354     2355
## 2355     2356
## 2356     2357
## 2357     2358
## 2358     2359
## 2359     2360
## 2360     2361
## 2361     2362
## 2362     2363
## 2363     2364
## 2364     2365
## 2365     2366
## 2366     2367
## 2367     2368
## 2368     2369
## 2369     2370
## 2370     2371
## 2371     2372
## 2372     2373
## 2373     2374
## 2374     2375
## 2375     2376
## 2376     2377
## 2377     2378
## 2378     2379
## 2379     2380
## 2380     2381
## 2381     2382
## 2382     2383
## 2383     2384
## 2384     2385
## 2385     2386
## 2386     2387
## 2387     2388
## 2388     2389
## 2389     2390
## 2390     2391
## 2391     2392
## 2392     2393
## 2393     2394
## 2394     2395
## 2395     2396
## 2396     2397
## 2397     2398
## 2398     2399
## 2399     2400
## 2400     2401
## 2401     2402
## 2402     2403
## 2403     2404
## 2404     2405
## 2405     2406
## 2406     2407
## 2407     2408
## 2408     2409
## 2409     2410
## 2410     2411
## 2411     2412
## 2412     2413
## 2413     2414
## 2414     2415
## 2415     2416
## 2416    16496
## 2417     2418
## 2418     2419
## 2419     2420
## 2420     2421
## 2421     2422
## 2422     2423
## 2423    14928
## 2424     2425
## 2425     2426
## 2426     2427
## 2427     2428
## 2428     2429
## 2429     2430
## 2430     2431
## 2431     2432
## 2432     2433
## 2433     2434
## 2434     2435
## 2435     2436
## 2436     2437
## 2437     2438
## 2438     2439
## 2439     2440
## 2440     2441
## 2441     2442
## 2442     2443
## 2443     2444
## 2444     2445
## 2445     2446
## 2446     2447
## 2447     2448
## 2448     2449
## 2449     2450
## 2450     2451
## 2451     2452
## 2452     2453
## 2453     2454
## 2454     2455
## 2455     2456
## 2456     2457
## 2457     2458
## 2458     2459
## 2459     2460
## 2460     2461
## 2461     2462
## 2462     2463
## 2463     2464
## 2464     2465
## 2465     2466
## 2466     2467
## 2467     2468
## 2468     2469
## 2469     2470
## 2470     2471
## 2471     2472
## 2472     2473
## 2473     2474
## 2474     2475
## 2475     2476
## 2476     2477
## 2477     2478
## 2478     2479
## 2479     2480
## 2480     2481
## 2481     2482
## 2482     2483
## 2483     2484
## 2484     2485
## 2485    14945
## 2486     2487
## 2487     2488
## 2488     2489
## 2489     2490
## 2490     2491
## 2491     2492
## 2492     2493
## 2493     2494
## 2494     2495
## 2495     2496
## 2496     2497
## 2497     2498
## 2498    15000
## 2499     2500
## 2500     2501
## 2501     2502
## 2502     2503
## 2503     2504
## 2504     2505
## 2505     2506
## 2506     2507
## 2507     2508
## 2508     2509
## 2509     2510
## 2510     2511
## 2511     2512
## 2512     2513
## 2513     2514
## 2514     2515
## 2515     2516
## 2516     2517
## 2517     2518
## 2518     2519
## 2519     2520
## 2520     2521
## 2521     2522
## 2522     2523
## 2523     2524
## 2524     2525
## 2525     2526
## 2526     2527
## 2527     2528
## 2528     2529
## 2529    15001
## 2530     2531
## 2531     2532
## 2532     2533
## 2533     2534
## 2534     2535
## 2535     2536
## 2536     2537
## 2537     2538
## 2538     2539
## 2539     2540
## 2540     2541
## 2541     2542
## 2542     2543
## 2543     2544
## 2544     2545
## 2545     2546
## 2546     2547
## 2547     2548
## 2548     2549
## 2549     2550
## 2550     2551
## 2551     2552
## 2552     2553
## 2553     2554
## 2554     2555
## 2555     2556
## 2556     2557
## 2557     2558
## 2558     2559
## 2559     2560
## 2560     2561
## 2561     2562
## 2562     2563
## 2563     2564
## 2564     2565
## 2565     2566
## 2566     2567
## 2567     2568
## 2568     2569
## 2569     2570
## 2570     2571
## 2571     2572
## 2572     2573
## 2573     2574
## 2574     2575
## 2575     2576
## 2576     2577
## 2577     2578
## 2578     2579
## 2579     2580
## 2580     2581
## 2581     2582
## 2582     2583
## 2583     2584
## 2584     2585
## 2585     2586
## 2586     2587
## 2587    15002
## 2588     2589
## 2589     2590
## 2590     2591
## 2591     2592
## 2592     2593
## 2593     2594
## 2594     2595
## 2595     2596
## 2596     2597
## 2597     2598
## 2598     2599
## 2599     2600
## 2600     2601
## 2601     2602
## 2602     2603
## 2603     2604
## 2604     2605
## 2605     2606
## 2606     2607
## 2607     2608
## 2608     2609
## 2609     2610
## 2610     2611
## 2611     2612
## 2612     2613
## 2613     2614
## 2614     2615
## 2615     2616
## 2616     2617
## 2617     2618
## 2618     2619
## 2619     2620
## 2620     2621
## 2621     2622
## 2622     2623
## 2623     2624
## 2624     2625
## 2625     2626
## 2626     2627
## 2627     2628
## 2628     2629
## 2629     2630
## 2630     2631
## 2631     2632
## 2632     2633
## 2633     2634
## 2634     2635
## 2635     2636
## 2636     2637
## 2637     2638
## 2638     2639
## 2639     2640
## 2640     2641
## 2641     2642
## 2642     2643
## 2643     2644
## 2644     2645
## 2645     2646
## 2646     2647
## 2647     2648
## 2648     2649
## 2649     2650
## 2650     2651
## 2651     2652
## 2652     2653
## 2653     2654
## 2654     2655
## 2655     2656
## 2656     2657
## 2657     2658
## 2658     2659
## 2659     2660
## 2660     2661
## 2661     2662
## 2662     2663
## 2663     2664
## 2664     2665
## 2665     2666
## 2666     2667
## 2667     2668
## 2668     2669
## 2669     2670
## 2670     2671
## 2671     2672
## 2672     2673
## 2673     2674
## 2674     2675
## 2675     2676
## 2676     2677
## 2677     2678
## 2678     2679
## 2679     2680
## 2680     2681
## 2681     2682
## 2682     2683
## 2683     2684
## 2684     2685
## 2685     2686
## 2686     2687
## 2687     2688
## 2688     2689
## 2689     2690
## 2690     2691
## 2691     2692
## 2692     2693
## 2693     2694
## 2694     2695
## 2695     2696
## 2696     2697
## 2697     2698
## 2698     2699
## 2699     2700
## 2700     2701
## 2701     2702
## 2702     2703
## 2703     2704
## 2704     2705
## 2705     2706
## 2706     2707
## 2707     2708
## 2708     2709
## 2709     2710
## 2710     2711
## 2711     2712
## 2712     2713
## 2713     2714
## 2714     2715
## 2715     2716
## 2716     2717
## 2717     2718
## 2718     2719
## 2719     2720
## 2720     2721
## 2721     2722
## 2722     2723
## 2723     2724
## 2724     2725
## 2725     2726
## 2726     2727
## 2727     2728
## 2728     2729
## 2729     2730
## 2730     2731
## 2731     2732
## 2732     2733
## 2733     2734
## 2734     2735
## 2735     2736
## 2736     2737
## 2737     2738
## 2738     2739
## 2739     2740
## 2740     2741
## 2741     2742
## 2742     2743
## 2743     2744
## 2744     2745
## 2745     2746
## 2746     2747
## 2747     2748
## 2748     2749
## 2749     2750
## 2750     2751
## 2751     2752
## 2752     2753
## 2753     2754
## 2754     2755
## 2755     2756
## 2756     2757
## 2757     2758
## 2758     2759
## 2759     2760
## 2760     2761
## 2761     2762
## 2762     2763
## 2763     2764
## 2764     2765
## 2765     2766
## 2766     2767
## 2767     2768
## 2768     2769
## 2769     2770
## 2770     2771
## 2771     2772
## 2772     2773
## 2773     2774
## 2774     2775
## 2775     2776
## 2776     2777
## 2777    15200
## 2778     2779
## 2779     2780
## 2780     2781
## 2781     2782
## 2782     2783
## 2783     2784
## 2784     2785
## 2785     2786
## 2786     2787
## 2787    15211
## 2788     2789
## 2789     2790
## 2790     2791
## 2791     2792
## 2792     2793
## 2793     2794
## 2794     2795
## 2795     2796
## 2796     2797
## 2797     2798
## 2798     2799
## 2799     2800
## 2800     2801
## 2801     2802
## 2802     2803
## 2803     2804
## 2804     2805
## 2805     2806
## 2806     2807
## 2807     2808
## 2808     2809
## 2809     2810
## 2810     2811
## 2811     2812
## 2812     2813
## 2813     2814
## 2814     2815
## 2815     2816
## 2816     2817
## 2817     2818
## 2818     2819
## 2819     2820
## 2820     2821
## 2821     2822
## 2822     2823
## 2823     2824
## 2824     2825
## 2825     2826
## 2826     2827
## 2827     2828
## 2828     2829
## 2829     2830
## 2830     2831
## 2831     2832
## 2832     2833
## 2833     2834
## 2834     2835
## 2835     2836
## 2836     2837
## 2837     2838
## 2838     2839
## 2839     2840
## 2840     2841
## 2841     2842
## 2842     2843
## 2843     2844
## 2844     2845
## 2845     2846
## 2846     2847
## 2847     2848
## 2848     2849
## 2849     2850
## 2850     2851
## 2851     2852
## 2852     2853
## 2853     2854
## 2854     2855
## 2855     2856
## 2856     2857
## 2857     2858
## 2858     2859
## 2859     2860
## 2860     2861
## 2861     2862
## 2862     2863
## 2863     2864
## 2864     2865
## 2865     2866
## 2866     2867
## 2867     2868
## 2868     2869
## 2869     2870
## 2870     2871
## 2871     2872
## 2872     2873
## 2873     2874
## 2874     2875
## 2875     2876
## 2876     2877
## 2877     2878
## 2878     2879
## 2879     2880
## 2880     2881
## 2881     2882
## 2882     2883
## 2883     2884
## 2884     2885
## 2885     2886
## 2886     2887
## 2887     2888
## 2888     2889
## 2889     2890
## 2890     2891
## 2891     2892
## 2892     2893
## 2893     2894
## 2894     2895
## 2895     2896
## 2896     2897
## 2897     2898
## 2898     2899
## 2899     2900
## 2900     2901
## 2901     2902
## 2902     2903
## 2903     2904
## 2904     2905
## 2905     2906
## 2906     2907
## 2907     2908
## 2908     2909
## 2909     2910
## 2910     2911
## 2911     2912
## 2912     2913
## 2913     2914
## 2914     2915
## 2915     2916
## 2916     2917
## 2917     2918
## 2918     2919
## 2919     2920
## 2920     2921
## 2921     2922
## 2922     2923
## 2923     2924
## 2924     2925
## 2925     2926
## 2926     2927
## 2927     2928
## 2928     2929
## 2929     2930
## 2930     2931
## 2931     2932
## 2932     2933
## 2933     2934
## 2934     2935
## 2935     2936
## 2936     2937
## 2937     2938
## 2938     2939
## 2939     2940
## 2940     2941
## 2941     2942
## 2942     2943
## 2943     2944
## 2944     2945
## 2945     2946
## 2946     2947
## 2947     2948
## 2948    15264
## 2949     2950
## 2950     2951
## 2951     2952
## 2952     2953
## 2953     2954
## 2954     2955
## 2955     2956
## 2956     2957
## 2957     2958
## 2958     2959
## 2959     2960
## 2960     2961
## 2961     2962
## 2962     2963
## 2963     2964
## 2964     2965
## 2965     2966
## 2966     2967
## 2967     2968
## 2968     2969
## 2969     2970
## 2970     2971
## 2971     2972
## 2972     2973
## 2973     2974
## 2974     2975
## 2975     2976
## 2976     2977
## 2977     2978
## 2978     2979
## 2979     2980
## 2980     2981
## 2981     2982
## 2982     2983
## 2983     2984
## 2984     2985
## 2985     2986
## 2986     2987
## 2987     2988
## 2988     2989
## 2989     2990
## 2990     2991
## 2991     2992
## 2992     2993
## 2993     2994
## 2994     2995
## 2995     2996
## 2996     2997
## 2997     2998
## 2998     2999
## 2999     3000
## 3000     3001
## 3001     3002
## 3002     3003
## 3003     3004
## 3004     3005
## 3005     3006
## 3006     3007
## 3007     3008
## 3008     3009
## 3009     3010
## 3010     3011
## 3011     3012
## 3012     3013
## 3013     3014
## 3014     3015
## 3015     3016
## 3016     3017
## 3017     3018
## 3018     3019
## 3019     3020
## 3020     3021
## 3021     3022
## 3022     3023
## 3023     3024
## 3024     3025
## 3025     3026
## 3026     3027
## 3027     3028
## 3028     3029
## 3029     3030
## 3030     3031
## 3031     3032
## 3032     3033
## 3033     3034
## 3034     3035
## 3035     3036
## 3036     3037
## 3037     3038
## 3038     3039
## 3039     3040
## 3040     3041
## 3041     3042
## 3042     3043
## 3043     3044
## 3044     3045
## 3045     3046
## 3046     3047
## 3047     3048
## 3048     3049
## 3049     3050
## 3050    15319
## 3051     3052
## 3052     3053
## 3053     3054
## 3054     3055
## 3055     3056
## 3056     3057
## 3057     3058
## 3058     3059
## 3059     3060
## 3060     3061
## 3061     3062
## 3062     3063
## 3063     3064
## 3064     3065
## 3065     3066
## 3066     3067
## 3067     3068
## 3068     3069
## 3069     3070
## 3070     3071
## 3071     3072
## 3072     3073
## 3073     3074
## 3074     3075
## 3075     3076
## 3076     3077
## 3077     3078
## 3078     3079
## 3079     3080
## 3080     3081
## 3081     3082
## 3082     3083
## 3083     3084
## 3084     3085
## 3085     3086
## 3086     3087
## 3087     3088
## 3088     3089
## 3089     3090
## 3090     3091
## 3091     3092
## 3092     3093
## 3093     3094
## 3094     3095
## 3095     3096
## 3096     3097
## 3097     3098
## 3098     3099
## 3099     3100
## 3100     3101
## 3101     3102
## 3102     3103
## 3103     3104
## 3104     3105
## 3105     3106
## 3106     3107
## 3107     3108
## 3108     3109
## 3109     3110
## 3110     3111
## 3111     3112
## 3112     3113
## 3113     3114
## 3114     3115
## 3115     3116
## 3116     3117
## 3117     3118
## 3118     3119
## 3119     3120
## 3120     3121
## 3121     3122
## 3122     3123
## 3123     3124
## 3124     3125
## 3125     3126
## 3126     3127
## 3127     3128
## 3128     3129
## 3129     3130
## 3130     3131
## 3131     3132
## 3132     3133
## 3133     3134
## 3134     3135
## 3135     3136
## 3136     3137
## 3137     3138
## 3138     3139
## 3139     3140
## 3140     3141
## 3141     3142
## 3142    15479
## 3143     3144
## 3144     3145
## 3145     3146
## 3146     3147
## 3147     3148
## 3148     3149
## 3149     3150
## 3150     3151
## 3151     3152
## 3152     3153
## 3153     3154
## 3154     3155
## 3155     3156
## 3156     3157
## 3157     3158
## 3158     3159
## 3159     3160
## 3160     3161
## 3161     3162
## 3162     3163
## 3163     3164
## 3164     3165
## 3165     3166
## 3166     3167
## 3167     3168
## 3168     3169
## 3169     3170
## 3170     3171
## 3171     3172
## 3172     3173
## 3173     3174
## 3174     3175
## 3175     3176
## 3176     3177
## 3177     3178
## 3178     3179
## 3179     3180
## 3180     3181
## 3181     3182
## 3182     3183
## 3183     3184
## 3184     3185
## 3185     3186
## 3186     3187
## 3187     3188
## 3188     3189
## 3189     3190
## 3190     3191
## 3191     3192
## 3192     3193
## 3193     3194
## 3194     3195
## 3195    15582
## 3196     3197
## 3197     3198
## 3198     3199
## 3199     3200
## 3200     3201
## 3201     3202
## 3202     3203
## 3203     3204
## 3204     3205
## 3205     3206
## 3206     3207
## 3207     3208
## 3208     3209
## 3209     3210
## 3210     3211
## 3211     3212
## 3212     3213
## 3213     3214
## 3214     3215
## 3215     3216
## 3216     3217
## 3217     3218
## 3218    15609
## 3219     3220
## 3220     3221
## 3221     3222
## 3222     3223
## 3223     3224
## 3224     3225
## 3225     3226
## 3226     3227
## 3227     3228
## 3228     3229
## 3229     3230
## 3230     3231
## 3231     3232
## 3232     3233
## 3233     3234
## 3234     3235
## 3235     3236
## 3236     3237
## 3237     3238
## 3238     3239
## 3239    15655
## 3240     3241
## 3241     3242
## 3242     3243
## 3243     3244
## 3244     3245
## 3245     3246
## 3246     3247
## 3247     3248
## 3248     3249
## 3249     3250
## 3250     3251
## 3251     3252
## 3252     3253
## 3253     3254
## 3254     3255
## 3255     3256
## 3256     3257
## 3257     3258
## 3258     3259
## 3259     3260
## 3260     3261
## 3261     3262
## 3262     3263
## 3263     3264
## 3264     3265
## 3265     3266
## 3266     3267
## 3267     3268
## 3268     3269
## 3269     3270
## 3270     3271
## 3271     3272
## 3272     3273
## 3273     3274
## 3274     3275
## 3275     3276
## 3276     3277
## 3277     3278
## 3278     3279
## 3279     3280
## 3280     3281
## 3281     3282
## 3282     3283
## 3283     3284
## 3284     3285
## 3285     3286
## 3286     3287
## 3287     3288
## 3288     3289
## 3289     3290
## 3290     3291
## 3291     3292
## 3292     3293
## 3293     3294
## 3294     3295
## 3295     3296
## 3296     3297
## 3297     3298
## 3298     3299
## 3299     3300
## 3300     3301
## 3301     3302
## 3302     3303
## 3303     3304
## 3304     3305
## 3305     3306
## 3306     3307
## 3307     3308
## 3308     3309
## 3309     3310
## 3310     3311
## 3311     3312
## 3312     3313
## 3313     3314
## 3314     3315
## 3315     3316
## 3316     3317
## 3317     3318
## 3318     3319
## 3319     3320
## 3320     3321
## 3321     3322
## 3322     3323
## 3323     3324
## 3324     3325
## 3325     3326
## 3326     3327
## 3327     3328
## 3328     3329
## 3329     3330
## 3330     3331
## 3331     3332
## 3332     3333
## 3333     3334
## 3334     3335
## 3335     3336
## 3336     3337
## 3337     3338
## 3338     3339
## 3339     3340
## 3340     3341
## 3341     3342
## 3342     3343
## 3343     3344
## 3344     3345
## 3345     3346
## 3346     3347
## 3347    15700
## 3348     3349
## 3349     3350
## 3350     3351
## 3351     3352
## 3352     3353
## 3353     3354
## 3354     3355
## 3355     3356
## 3356     3357
## 3357     3358
## 3358     3359
## 3359     3360
## 3360     3361
## 3361     3362
## 3362     3363
## 3363     3364
## 3364     3365
## 3365     3366
## 3366     3367
## 3367     3368
## 3368     3369
## 3369     3370
## 3370     3371
## 3371     3372
## 3372     3373
## 3373     3374
## 3374     3375
## 3375     3376
## 3376     3377
## 3377     3378
## 3378     3379
## 3379     3380
## 3380     3381
## 3381     3382
## 3382     3383
## 3383     3384
## 3384     3385
## 3385     3386
## 3386     3387
## 3387     3388
## 3388     3389
## 3389     3390
## 3390     3391
## 3391     3392
## 3392     3393
## 3393     3394
## 3394     3395
## 3395     3396
## 3396     3397
## 3397     3398
## 3398     3399
## 3399     3400
## 3400     3401
## 3401     3402
## 3402     3403
## 3403     3404
## 3404     3405
## 3405     3406
## 3406     3407
## 3407     3408
## 3408     3409
## 3409     3410
## 3410     3411
## 3411     3412
## 3412     3413
## 3413     3414
## 3414     3415
## 3415     3416
## 3416     3417
## 3417     3418
## 3418     3419
## 3419     3420
## 3420     3421
## 3421     3422
## 3422    15720
## 3423     3424
## 3424     3425
## 3425     3426
## 3426     3427
## 3427     3428
## 3428     3429
## 3429     3430
## 3430     3431
## 3431     3432
## 3432     3433
## 3433     3434
## 3434     3435
## 3435     3436
## 3436     3437
## 3437     3438
## 3438     3439
## 3439     3440
## 3440     3441
## 3441     3442
## 3442     3443
## 3443     3444
## 3444     3445
## 3445     3446
## 3446     3447
## 3447     3448
## 3448     3449
## 3449     3450
## 3450     3451
## 3451     3452
## 3452     3453
## 3453     3454
## 3454     3455
## 3455     3456
## 3456     3457
## 3457     3458
## 3458     3459
## 3459     3460
## 3460     3461
## 3461     3462
## 3462     3463
## 3463     3464
## 3464     3465
## 3465     3466
## 3466     3467
## 3467     3468
## 3468     3469
## 3469    15742
## 3470     3471
## 3471     3472
## 3472     3473
## 3473     3474
## 3474     3475
## 3475     3476
## 3476     3477
## 3477     3478
## 3478     3479
## 3479     3480
## 3480     3481
## 3481     3482
## 3482     3483
## 3483     3484
## 3484     3485
## 3485     3486
## 3486     3487
## 3487     3488
## 3488     3489
## 3489     3490
## 3490     3491
## 3491     3492
## 3492     3493
## 3493     3494
## 3494     3495
## 3495     3496
## 3496     3497
## 3497     3498
## 3498     3499
## 3499     3500
## 3500     3501
## 3501     3502
## 3502    15814
## 3503     3504
## 3504     3505
## 3505     3506
## 3506     3507
## 3507     3508
## 3508     3509
## 3509     3510
## 3510     3511
## 3511     3512
## 3512     3513
## 3513     3514
## 3514     3515
## 3515     3516
## 3516     3517
## 3517     3518
## 3518     3519
## 3519     3520
## 3520     3521
## 3521     3522
## 3522     3523
## 3523     3524
## 3524     3525
## 3525     3526
## 3526     3527
## 3527     3528
## 3528     3529
## 3529     3530
## 3530     3531
## 3531     3532
## 3532     3533
## 3533     3534
## 3534     3535
## 3535     3536
## 3536     3537
## 3537     3538
## 3538     3539
## 3539     3540
## 3540     3541
## 3541     3542
## 3542     3543
## 3543     3544
## 3544     3545
## 3545     3546
## 3546     3547
## 3547     3548
## 3548     3549
## 3549     3550
## 3550     3551
## 3551     3552
## 3552     3553
## 3553     3554
## 3554     3555
## 3555     3556
## 3556     3557
## 3557     3558
## 3558     3559
## 3559     3560
## 3560     3561
## 3561     3562
## 3562     3563
## 3563     3564
## 3564     3565
## 3565     3566
## 3566     3567
## 3567     3568
## 3568     3569
## 3569     3570
## 3570     3571
## 3571     3572
## 3572     3573
## 3573     3574
## 3574     3575
## 3575     3576
## 3576     3577
## 3577     3578
## 3578     3579
## 3579     3580
## 3580     3581
## 3581     3582
## 3582     3583
## 3583     3584
## 3584     3585
## 3585     3586
## 3586     3587
## 3587     3588
## 3588     3589
## 3589     3590
## 3590     3591
## 3591     3592
## 3592     3593
## 3593     3594
## 3594     3595
## 3595     3596
## 3596     3597
## 3597     3598
## 3598     3599
## 3599     3600
## 3600     3601
## 3601     3602
## 3602     3603
## 3603     3604
## 3604     3605
## 3605     3606
## 3606     3607
## 3607     3608
## 3608     3609
## 3609     3610
## 3610     3611
## 3611     3612
## 3612     3613
## 3613     3614
## 3614     3615
## 3615     3616
## 3616     3617
## 3617     3618
## 3618     3619
## 3619     3620
## 3620     3621
## 3621     3622
## 3622     3623
## 3623     3624
## 3624     3625
## 3625     3626
## 3626     3627
## 3627     3628
## 3628     3629
## 3629     3630
## 3630     3631
## 3631     3632
## 3632     3633
## 3633     3634
## 3634     3635
## 3635     3636
## 3636     3637
## 3637     3638
## 3638     3639
## 3639     3640
## 3640     3641
## 3641     3642
## 3642     3643
## 3643     3644
## 3644     3645
## 3645     3646
## 3646     3647
## 3647     3648
## 3648     3649
## 3649     3650
## 3650     3651
## 3651     3652
## 3652     3653
## 3653     3654
## 3654     3655
## 3655     3656
## 3656     3657
## 3657     3658
## 3658     3659
## 3659     3660
## 3660     3661
## 3661     3662
## 3662     3663
## 3663     3664
## 3664     3665
## 3665     3666
## 3666     3667
## 3667     3668
## 3668     3669
## 3669     3670
## 3670     3671
## 3671     3672
## 3672     3673
## 3673     3674
## 3674     3675
## 3675     3676
## 3676     3677
## 3677     3678
## 3678     3679
## 3679     3680
## 3680     3681
## 3681     3682
## 3682     3683
## 3683     3684
## 3684     3685
## 3685     3686
## 3686     3687
## 3687     3688
## 3688     3689
## 3689     3690
## 3690     3691
## 3691     3692
## 3692     3693
## 3693     3694
## 3694     3695
## 3695     3696
## 3696     3697
## 3697     3698
## 3698     3699
## 3699     3700
## 3700     3701
## 3701     3702
## 3702     3703
## 3703     3704
## 3704     3705
## 3705     3706
## 3706     3707
## 3707     3708
## 3708     3709
## 3709     3710
## 3710     3711
## 3711     3712
## 3712     3713
## 3713     3714
## 3714     3715
## 3715     3716
## 3716    15868
## 3717     3718
## 3718     3719
## 3719     3720
## 3720     3721
## 3721     3722
## 3722     3723
## 3723     3724
## 3724     3725
## 3725     3726
## 3726     3727
## 3727     3728
## 3728     3729
## 3729     3730
## 3730     3731
## 3731     3732
## 3732     3733
## 3733     3734
## 3734     3735
## 3735     3736
## 3736     3737
## 3737     3738
## 3738     3739
## 3739     3740
## 3740     3741
## 3741     3742
## 3742     3743
## 3743     3744
## 3744     3745
## 3745     3746
## 3746     3747
## 3747     3748
## 3748     3749
## 3749     3750
## 3750     3751
## 3751     3752
## 3752     3753
## 3753     3754
## 3754    15879
## 3755     3756
## 3756     3757
## 3757     3758
## 3758     3759
## 3759     3760
## 3760     3761
## 3761     3762
## 3762     3763
## 3763     3764
## 3764     3765
## 3765     3766
## 3766     3767
## 3767     3768
## 3768     3769
## 3769     3770
## 3770     3771
## 3771     3772
## 3772     3773
## 3773     3774
## 3774     3775
## 3775     3776
## 3776     3777
## 3777     3778
## 3778     3779
## 3779     3780
## 3780     3781
## 3781     3782
## 3782     3783
## 3783     3784
## 3784     3785
## 3785     3786
## 3786     3787
## 3787     3788
## 3788     3789
## 3789     3790
## 3790     3791
## 3791     3792
## 3792     3793
## 3793     3794
## 3794     3795
## 3795     3796
## 3796     3797
## 3797     3798
## 3798     3799
## 3799     3800
## 3800     3801
## 3801     3802
## 3802     3803
## 3803     3804
## 3804     3805
## 3805     3806
## 3806     3807
## 3807     3808
## 3808     3809
## 3809     3810
## 3810     3811
## 3811     3812
## 3812     3813
## 3813     3814
## 3814     3815
## 3815     3816
## 3816     3817
## 3817     3818
## 3818     3819
## 3819     3820
## 3820     3821
## 3821     3822
## 3822     3823
## 3823     3824
## 3824     3825
## 3825     3826
## 3826     3827
## 3827     3828
## 3828     3829
## 3829     3830
## 3830     3831
## 3831     3832
## 3832     3833
## 3833     3834
## 3834     3835
## 3835     3836
## 3836     3837
## 3837     3838
## 3838     3839
## 3839     3840
## 3840     3841
## 3841     3842
## 3842     3843
## 3843     3844
## 3844     3845
## 3845     3846
## 3846     3847
## 3847     3848
## 3848     3849
## 3849     3850
## 3850     3851
## 3851     3852
## 3852     3853
## 3853     3854
## 3854     3855
## 3855     3856
## 3856     3857
## 3857     3858
## 3858     3859
## 3859     3860
## 3860     3861
## 3861     3862
## 3862     3863
## 3863     3864
## 3864     3865
## 3865     3866
## 3866     3867
## 3867     3868
## 3868     3869
## 3869     3870
## 3870     3871
## 3871     3872
## 3872     3873
## 3873     3874
## 3874     3875
## 3875     3876
## 3876     3877
## 3877     3878
## 3878     3879
## 3879     3880
## 3880     3881
## 3881    15881
## 3882     3883
## 3883     3884
## 3884     3885
## 3885     3886
## 3886     3887
## 3887     3888
## 3888     3889
## 3889     3890
## 3890     3891
## 3891     3892
## 3892     3893
## 3893     3894
## 3894     3895
## 3895     3896
## 3896     3897
## 3897     3898
## 3898     3899
## 3899     3900
## 3900     3901
## 3901     3902
## 3902     3903
## 3903     3904
## 3904     3905
## 3905     3906
## 3906     3907
## 3907     3908
## 3908     3909
## 3909     3910
## 3910     3911
## 3911     3912
## 3912     3913
## 3913     3914
## 3914     3915
## 3915     3916
## 3916     3917
## 3917     3918
## 3918     3919
## 3919     3920
## 3920     3921
## 3921     3922
## 3922     3923
## 3923     3924
## 3924     3925
## 3925     3926
## 3926     3927
## 3927     3928
## 3928     3929
## 3929     3930
## 3930     3931
## 3931     3932
## 3932     3933
## 3933     3934
## 3934     3935
## 3935     3936
## 3936     3937
## 3937     3938
## 3938     3939
## 3939     3940
## 3940     3941
## 3941     3942
## 3942     3943
## 3943     3944
## 3944     3945
## 3945     3946
## 3946     3947
## 3947     3948
## 3948     3949
## 3949     3950
## 3950     3951
## 3951     3952
## 3952     3953
## 3953    15903
## 3954     3955
## 3955     3956
## 3956     3957
## 3957     3958
## 3958     3959
## 3959     3960
## 3960     3961
## 3961     3962
## 3962     3963
## 3963     3964
## 3964     3965
## 3965     3966
## 3966     3967
## 3967     3968
## 3968     3969
## 3969     3970
## 3970     3971
## 3971     3972
## 3972     3973
## 3973     3974
## 3974     3975
## 3975     3976
## 3976     3977
## 3977     3978
## 3978     3979
## 3979     3980
## 3980     3981
## 3981     3982
## 3982     3983
## 3983     3984
## 3984     3985
## 3985     3986
## 3986     3987
## 3987     3988
## 3988     3989
## 3989     3990
## 3990     3991
## 3991     3992
## 3992     3993
## 3993     3994
## 3994     3995
## 3995     3996
## 3996     3997
## 3997     3998
## 3998     3999
## 3999     4000
## 4000     4001
## 4001     4002
## 4002     4003
## 4003     4004
## 4004     4005
## 4005     4006
## 4006     4007
## 4007     4008
## 4008     4009
## 4009     4010
## 4010     4011
## 4011     4012
## 4012     4013
## 4013     4014
## 4014     4015
## 4015     4016
## 4016     4017
## 4017     4018
## 4018     4019
## 4019     4020
## 4020     4021
## 4021     4022
## 4022     4023
## 4023     4024
## 4024     4025
## 4025     4026
## 4026     4027
## 4027     4028
## 4028     4029
## 4029     4030
## 4030     4031
## 4031     4032
## 4032     4033
## 4033     4034
## 4034     4035
## 4035     4036
## 4036     4037
## 4037     4038
## 4038     4039
## 4039     4040
## 4040     4041
## 4041     4042
## 4042     4043
## 4043     4044
## 4044     4045
## 4045     4046
## 4046     4047
## 4047     4048
## 4048     4049
## 4049     4050
## 4050     4051
## 4051     4052
## 4052     4053
## 4053     4054
## 4054     4055
## 4055     4056
## 4056     4057
## 4057     4058
## 4058     4059
## 4059     4060
## 4060     4061
## 4061     4062
## 4062     4063
## 4063     4064
## 4064     4065
## 4065     4066
## 4066     4067
## 4067     4068
## 4068     4069
## 4069     4070
## 4070     4071
## 4071     4072
## 4072     4073
## 4073     4074
## 4074     4075
## 4075     4076
## 4076     4077
## 4077     4078
## 4078     4079
## 4079     4080
## 4080     4081
## 4081     4082
## 4082     4083
## 4083     4084
## 4084     4085
## 4085     4086
## 4086     4087
## 4087     4088
## 4088     4089
## 4089     4090
## 4090     4091
## 4091     4092
## 4092     4093
## 4093     4094
## 4094     4095
## 4095     4096
## 4096     4097
## 4097     4098
## 4098     4099
## 4099     4100
## 4100     4101
## 4101     4102
## 4102     4103
## 4103     4104
## 4104     4105
## 4105     4106
## 4106     4107
## 4107     4108
## 4108     4109
## 4109     4110
## 4110     4111
## 4111     4112
## 4112     4113
## 4113     4114
## 4114     4115
## 4115     4116
## 4116     4117
## 4117     4118
## 4118     4119
## 4119     4120
## 4120     4121
## 4121     4122
## 4122     4123
## 4123     4124
## 4124     4125
## 4125     4126
## 4126     4127
## 4127     4128
## 4128     4129
## 4129     4130
## 4130     4131
## 4131     4132
## 4132     4133
## 4133     4134
## 4134     4135
## 4135     4136
## 4136     4137
## 4137     4138
## 4138     4139
## 4139     4140
## 4140     4141
## 4141     4142
## 4142     4143
## 4143     4144
## 4144     4145
## 4145     4146
## 4146    15918
## 4147     4148
## 4148     4149
## 4149     4150
## 4150     4151
## 4151     4152
## 4152    14100
## 4153     4154
## 4154     4155
## 4155     4156
## 4156     4157
## 4157     4158
## 4158     4159
## 4159     4160
## 4160     4161
## 4161     4162
## 4162     4163
## 4163     4164
## 4164     4165
## 4165     4166
## 4166     4167
## 4167     4168
## 4168     4169
## 4169     4170
## 4170     4171
## 4171     4172
## 4172     4173
## 4173     4174
## 4174     4175
## 4175     4176
## 4176     4177
## 4177     4178
## 4178     4179
## 4179     4180
## 4180     4181
## 4181     4182
## 4182     4183
## 4183     4184
## 4184     4185
## 4185     4186
## 4186     4187
## 4187     4188
## 4188     4189
## 4189     4190
## 4190     4191
## 4191     4192
## 4192     4193
## 4193     4194
## 4194     4195
## 4195     4196
## 4196     4197
## 4197     4198
## 4198     4199
## 4199     4200
## 4200    14162
## 4201     4202
## 4202     4203
## 4203     4204
## 4204     4205
## 4205     4206
## 4206     4207
## 4207     4208
## 4208     4209
## 4209     4210
## 4210     4211
## 4211     4212
## 4212     4213
## 4213     4214
## 4214     4215
## 4215     4216
## 4216     4217
## 4217     4218
## 4218     4219
## 4219     4220
## 4220     4221
## 4221     4222
## 4222     4223
## 4223     4224
## 4224     4225
## 4225     4226
## 4226     4227
## 4227     4228
## 4228     4229
## 4229     4230
## 4230     4231
## 4231     4232
## 4232     4233
## 4233    14276
## 4234     4235
## 4235     4236
## 4236     4237
## 4237     4238
## 4238     4239
## 4239     4240
## 4240     4241
## 4241     4242
## 4242     4243
## 4243     4244
## 4244     4245
## 4245     4246
## 4246     4247
## 4247     4248
## 4248     4249
## 4249     4250
## 4250     4251
## 4251     4252
## 4252     4253
## 4253     4254
## 4254     4255
## 4255     4256
## 4256     4257
## 4257     4258
## 4258     4259
## 4259     4260
## 4260     4261
## 4261     4262
## 4262     4263
## 4263     4264
## 4264     4265
## 4265     4266
## 4266     4267
## 4267     4268
## 4268     4269
## 4269     4270
## 4270     4271
## 4271     4272
## 4272     4273
## 4273     4274
## 4274     4275
## 4275     4276
## 4276     4277
## 4277     4278
## 4278     4279
## 4279     4280
## 4280     4281
## 4281     4282
## 4282     4283
## 4283     4284
## 4284     4285
## 4285     4286
## 4286     4287
## 4287     4288
## 4288     4289
## 4289     4290
## 4290     4291
## 4291     4292
## 4292     4293
## 4293     4294
## 4294     4295
## 4295     4296
## 4296     4297
## 4297     4298
## 4298     4299
## 4299     4300
## 4300     4301
## 4301     4302
## 4302     4303
## 4303     4304
## 4304     4305
## 4305     4306
## 4306     4307
## 4307     4308
## 4308     4309
## 4309     4310
## 4310     4311
## 4311     4312
## 4312     4313
## 4313     4314
## 4314     4315
## 4315     4316
## 4316     4317
## 4317     4318
## 4318     4319
## 4319     4320
## 4320     4321
## 4321     4322
## 4322     4323
## 4323     4324
## 4324     4325
## 4325     4326
## 4326     4327
## 4327     4328
## 4328     4329
## 4329     4330
## 4330     4331
## 4331    14299
## 4332     4333
## 4333     4334
## 4334     4335
## 4335     4336
## 4336     4337
## 4337     4338
## 4338     4339
## 4339     4340
## 4340     4341
## 4341     4342
## 4342     4343
## 4343     4344
## 4344     4345
## 4345     4346
## 4346     4347
## 4347     4348
## 4348     4349
## 4349     4350
## 4350     4351
## 4351     4352
## 4352     4353
## 4353     4354
## 4354     4355
## 4355     4356
## 4356     4357
## 4357     4358
## 4358     4359
## 4359     4360
## 4360     4361
## 4361     4362
## 4362     4363
## 4363     4364
## 4364     4365
## 4365     4366
## 4366     4367
## 4367     4368
## 4368     4369
## 4369     4370
## 4370     4371
## 4371     4372
## 4372     4373
## 4373     4374
## 4374     4375
## 4375     4376
## 4376     4377
## 4377     4378
## 4378     4379
## 4379    14315
## 4380     4381
## 4381    14380
## 4382     4383
## 4383     4384
## 4384     4385
## 4385     4386
## 4386     4387
## 4387     4388
## 4388     4389
## 4389     4390
## 4390     4391
## 4391     4392
## 4392     4393
## 4393     4394
## 4394     4395
## 4395     4396
## 4396     4397
## 4397     4398
## 4398     4399
## 4399     4400
## 4400     4401
## 4401     4402
## 4402     4403
## 4403     4404
## 4404     4405
## 4405     4406
## 4406     4407
## 4407     4408
## 4408     4409
## 4409     4410
## 4410     4411
## 4411     4412
## 4412     4413
## 4413     4414
## 4414     4415
## 4415     4416
## 4416     4417
## 4417     4418
## 4418     4419
## 4419     4420
## 4420     4421
## 4421     4422
## 4422     4423
## 4423     4424
## 4424     4425
## 4425     4426
## 4426     4427
## 4427     4428
## 4428     4429
## 4429     4430
## 4430     4431
## 4431     4432
## 4432     4433
## 4433     4434
## 4434     4435
## 4435     4436
## 4436     4437
## 4437     4438
## 4438     4439
## 4439     4440
## 4440     4441
## 4441     4442
## 4442     4443
## 4443     4444
## 4444     4445
## 4445     4446
## 4446     4447
## 4447     4448
## 4448     4449
## 4449     4450
## 4450     4451
## 4451     4452
## 4452     4453
## 4453     4454
## 4454     4455
## 4455     4456
## 4456     4457
## 4457     4458
## 4458     4459
## 4459     4460
## 4460     4461
## 4461     4462
## 4462     4463
## 4463     4464
## 4464     4465
## 4465     4466
## 4466     4467
## 4467     4468
## 4468     4469
## 4469     4470
## 4470    14476
## 4471     4472
## 4472     4473
## 4473    14525
## 4474     4475
## 4475     4476
## 4476     4477
## 4477     4478
## 4478     4479
## 4479     4480
## 4480     4481
## 4481     4482
## 4482     4483
## 4483     4484
## 4484     4485
## 4485     4486
## 4486     4487
## 4487     4488
## 4488     4489
## 4489     4490
## 4490     4491
## 4491     4492
## 4492     4493
## 4493     4494
## 4494     4495
## 4495     4496
## 4496     4497
## 4497     4498
## 4498     4499
## 4499     4500
## 4500     4501
## 4501     4502
## 4502     4503
## 4503     4504
## 4504     4505
## 4505     4506
## 4506     4507
## 4507     4508
## 4508     4509
## 4509     4510
## 4510     4511
## 4511     4512
## 4512     4513
## 4513     4514
## 4514     4515
## 4515     4516
## 4516     4517
## 4517     4518
## 4518     4519
## 4519     4520
## 4520     4521
## 4521     4522
## 4522     4523
## 4523     4524
## 4524     4525
## 4525     4526
## 4526     4527
## 4527     4528
## 4528     4529
## 4529     4530
## 4530     4531
## 4531     4532
## 4532     4533
## 4533     4534
## 4534     4535
## 4535     4536
## 4536     4537
## 4537    14586
## 4538     4539
## 4539     4540
## 4540     4541
## 4541     4542
## 4542     4543
## 4543     4544
## 4544     4545
## 4545     4546
## 4546     4547
## 4547     4548
## 4548     4549
## 4549     4550
## 4550     4551
## 4551     4552
## 4552     4553
## 4553     4554
## 4554     4555
## 4555     4556
## 4556     4557
## 4557     4558
## 4558     4559
## 4559     4560
## 4560     4561
## 4561     4562
## 4562     4563
## 4563     4564
## 4564     4565
## 4565     4566
## 4566     4567
## 4567     4568
## 4568     4569
## 4569     4570
## 4570     4571
## 4571     4572
## 4572     4573
## 4573     4574
## 4574     4575
## 4575     4576
## 4576     4577
## 4577     4578
## 4578     4579
## 4579     4580
## 4580     4581
## 4581     4582
## 4582     4583
## 4583     4584
## 4584     4585
## 4585     4586
## 4586     4587
## 4587     4588
## 4588     4589
## 4589     4590
## 4590     4591
## 4591     4592
## 4592     4593
## 4593     4594
## 4594     4595
## 4595     4596
## 4596     4597
## 4597     4598
## 4598     4599
## 4599     4600
## 4600     4601
## 4601     4602
## 4602     4603
## 4603     4604
## 4604     4605
## 4605     4606
## 4606     4607
## 4607     4608
## 4608     4609
## 4609     4610
## 4610     4611
## 4611     4612
## 4612     4613
## 4613     4614
## 4614     4615
## 4615     4616
## 4616     4617
## 4617     4618
## 4618     4619
## 4619     4620
## 4620     4621
## 4621     4622
## 4622     4623
## 4623     4624
## 4624     4625
## 4625     4626
## 4626     4627
## 4627     4628
## 4628     4629
## 4629     4630
## 4630     4631
## 4631     4632
## 4632     4633
## 4633     4634
## 4634     4635
## 4635     4636
## 4636     4637
## 4637     4638
## 4638     4639
## 4639     4640
## 4640     4641
## 4641     4642
## 4642     4643
## 4643     4644
## 4644     4645
## 4645     4646
## 4646     4647
## 4647     4648
## 4648     4649
## 4649     4650
## 4650     4651
## 4651     4652
## 4652     4653
## 4653     4654
## 4654     4655
## 4655     4656
## 4656     4657
## 4657     4658
## 4658     4659
## 4659     4660
## 4660     4661
## 4661     4662
## 4662     4663
## 4663     4664
## 4664     4665
## 4665     4666
## 4666     4667
## 4667     4668
## 4668     4669
## 4669     4670
## 4670     4671
## 4671     4672
## 4672     4673
## 4673     4674
## 4674     4675
## 4675     4676
## 4676     4677
## 4677     4678
## 4678     4679
## 4679     4680
## 4680     4681
## 4681     4682
## 4682     4683
## 4683     4684
## 4684    14679
## 4685     4686
## 4686     4687
## 4687     4688
## 4688     4689
## 4689     4690
## 4690     4691
## 4691     4692
## 4692     4693
## 4693     4694
## 4694     4695
## 4695     4696
## 4696     4697
## 4697     4698
## 4698     4699
## 4699     4700
## 4700     4701
## 4701     4702
## 4702     4703
## 4703     4704
## 4704     4705
## 4705     4706
## 4706     4707
## 4707     4708
## 4708     4709
## 4709     4710
## 4710     4711
## 4711     4712
## 4712     4713
## 4713     4714
## 4714     4715
## 4715     4716
## 4716     4717
## 4717     4718
## 4718     4719
## 4719     4720
## 4720     4721
## 4721     4722
## 4722     4723
## 4723     4724
## 4724     4725
## 4725     4726
## 4726     4727
## 4727     4728
## 4728     4729
## 4729     4730
## 4730     4731
## 4731     4732
## 4732     4733
## 4733     4734
## 4734     4735
## 4735     4736
## 4736     4737
## 4737     4738
## 4738     4739
## 4739     4740
## 4740     4741
## 4741     4742
## 4742     4743
## 4743     4744
## 4744     4745
## 4745     4746
## 4746     4747
## 4747     4748
## 4748     4749
## 4749     4750
## 4750     4751
## 4751     4752
## 4752     4753
## 4753     4754
## 4754     4755
## 4755     4756
## 4756     4757
## 4757     4758
## 4758     4759
## 4759     4760
## 4760     4761
## 4761     4762
## 4762     4763
## 4763     4764
## 4764     4765
## 4765     4766
## 4766     4767
## 4767     4768
## 4768     4769
## 4769     4770
## 4770     4771
## 4771     4772
## 4772     4773
## 4773     4774
## 4774     4775
## 4775     4776
## 4776     4777
## 4777     4778
## 4778     4779
## 4779     4780
## 4780     4781
## 4781     4782
## 4782     4783
## 4783     4784
## 4784     4785
## 4785     4786
## 4786     4787
## 4787     4788
## 4788     4789
## 4789     4790
## 4790     4791
## 4791     4792
## 4792     4793
## 4793     4794
## 4794     4795
## 4795     4796
## 4796     4797
## 4797     4798
## 4798    14699
## 4799     4800
## 4800     4801
## 4801     4802
## 4802     4803
## 4803     4804
## 4804     4805
## 4805     4806
## 4806     4807
## 4807     4808
## 4808     4809
## 4809     4810
## 4810     4811
## 4811     4812
## 4812     4813
## 4813     4814
## 4814     4815
## 4815     4816
## 4816     4817
## 4817     4818
## 4818     4819
## 4819     4820
## 4820     4821
## 4821     4822
## 4822     4823
## 4823     4824
## 4824     4825
## 4825     4826
## 4826     4827
## 4827     4828
## 4828     4829
## 4829     4830
## 4830     4831
## 4831     4832
## 4832     4833
## 4833     4834
## 4834     4835
## 4835     4836
## 4836     4837
## 4837     4838
## 4838     4839
## 4839     4840
## 4840     4841
## 4841     4842
## 4842     4843
## 4843     4844
## 4844     4845
## 4845     4846
## 4846     4847
## 4847     4848
## 4848     4849
## 4849     4850
## 4850     4851
## 4851     4852
## 4852     4853
## 4853     4854
## 4854     4855
## 4855     4856
## 4856     4857
## 4857     4858
## 4858     4859
## 4859    14852
## 4860     4861
## 4861     4862
## 4862     4863
## 4863     4864
## 4864     4865
## 4865     4866
## 4866    14858
## 4867     4868
## 4868     4869
## 4869     4870
## 4870     4871
## 4871     4872
## 4872     4873
## 4873     4874
## 4874     4875
## 4875     4876
## 4876     4877
## 4877     4878
## 4878     4879
## 4879     4880
## 4880     4881
## 4881     4882
## 4882     4883
## 4883     4884
## 4884     4885
## 4885     4886
## 4886     4887
## 4887     4888
## 4888     4889
## 4889     4890
## 4890     4891
## 4891     4892
## 4892     4893
## 4893     4894
## 4894     4895
## 4895     4896
## 4896     4897
## 4897     4898
## 4898     4899
## 4899     4900
## 4900     4901
## 4901     4902
## 4902     4903
## 4903     4904
## 4904     4905
## 4905     4906
## 4906     4907
## 4907     4908
## 4908     4909
## 4909     4910
## 4910     4911
## 4911     4912
## 4912     4913
## 4913     4914
## 4914     4915
## 4915     4916
## 4916     4917
## 4917     4918
## 4918     4919
## 4919     4920
## 4920     4921
## 4921     4922
## 4922     4923
## 4923     4924
## 4924     4925
## 4925     4926
## 4926     4927
## 4927     4928
## 4928     4929
## 4929     4930
## 4930     4931
## 4931     4932
## 4932     4933
## 4933     4934
## 4934     4935
## 4935    14879
## 4936     4937
## 4937     4938
## 4938     4939
## 4939     4940
## 4940     4941
## 4941     4942
## 4942     4943
## 4943     4944
## 4944     4945
## 4945     4946
## 4946     4947
## 4947     4948
## 4948     4949
## 4949     4950
## 4950     4951
## 4951     4952
## 4952     4953
## 4953     4954
## 4954     4955
## 4955     4956
## 4956     4957
## 4957     4958
## 4958     4959
## 4959     4960
## 4960     4961
## 4961     4962
## 4962     4963
## 4963     4964
## 4964     4965
## 4965     4966
## 4966     4967
## 4967     4968
## 4968     4969
## 4969     4970
## 4970     4971
## 4971     4972
## 4972     4973
## 4973     4974
## 4974     4975
## 4975     4976
## 4976     4977
## 4977     4978
## 4978     4979
## 4979     4980
## 4980     4981
## 4981     4982
## 4982     4983
## 4983     4984
## 4984     4985
## 4985     4986
## 4986     4987
## 4987     4988
## 4988     4989
## 4989     4990
## 4990     4991
## 4991     4992
## 4992     4993
## 4993     4994
## 4994     4995
## 4995     4996
## 4996     4997
## 4997     4998
## 4998     4999
## 4999     5000
## 5000     5001
## 5001     5002
## 5002     5003
## 5003     5004
## 5004     5005
## 5005     5006
## 5006     5007
## 5007     5008
## 5008     5009
## 5009     5010
## 5010     5011
## 5011     5012
## 5012     5013
## 5013     5014
## 5014     5015
## 5015     5016
## 5016     5017
## 5017     5018
## 5018     5019
## 5019     5020
## 5020     5021
## 5021     5022
## 5022     5023
## 5023     5024
## 5024     5025
## 5025     5026
## 5026     5027
## 5027     5028
## 5028     5029
## 5029     5030
## 5030     5031
## 5031     5032
## 5032     5033
## 5033     5034
## 5034     5035
## 5035     5036
## 5036     5037
## 5037     5038
## 5038     5039
## 5039     5040
## 5040     5041
## 5041     5042
## 5042     5043
## 5043     5044
## 5044     5045
## 5045     5046
## 5046     5047
## 5047     5048
## 5048     5049
## 5049     5050
## 5050     5051
## 5051     5052
## 5052     5053
## 5053     5054
## 5054     5055
## 5055     5056
## 5056     5057
## 5057     5058
## 5058     5059
## 5059     5060
## 5060     5061
## 5061     5062
## 5062    13479
## 5063     5064
## 5064     5065
## 5065     5066
## 5066     5067
## 5067     5068
## 5068     5069
## 5069     5070
## 5070     5071
## 5071     5072
## 5072     5073
## 5073     5074
## 5074     5075
## 5075     5076
## 5076     5077
## 5077     5078
## 5078     5079
## 5079    13667
## 5080     5081
## 5081     5082
## 5082     5083
## 5083     5084
## 5084     5085
## 5085     5086
## 5086     5087
## 5087     5088
## 5088     5089
## 5089     5090
## 5090     5091
## 5091     5092
## 5092     5093
## 5093     5094
## 5094     5095
## 5095     5096
## 5096     5097
## 5097     5098
## 5098     5099
## 5099     5100
## 5100     5101
## 5101     5102
## 5102     5103
## 5103     5104
## 5104     5105
## 5105     5106
## 5106     5107
## 5107     5108
## 5108     5109
## 5109     5110
## 5110     5111
## 5111     5112
## 5112     5113
## 5113     5114
## 5114     5115
## 5115     5116
## 5116     5117
## 5117     5118
## 5118     5119
## 5119     5120
## 5120     5121
## 5121     5122
## 5122     5123
## 5123     5124
## 5124     5125
## 5125     5126
## 5126     5127
## 5127     5128
## 5128     5129
## 5129     5130
## 5130     5131
## 5131     5132
## 5132     5133
## 5133     5134
## 5134     5135
## 5135     5136
## 5136     5137
## 5137     5138
## 5138     5139
## 5139     5140
## 5140     5141
## 5141     5142
## 5142     5143
## 5143     5144
## 5144     5145
## 5145     5146
## 5146     5147
## 5147     5148
## 5148     5149
## 5149     5150
## 5150     5151
## 5151     5152
## 5152     5153
## 5153     5154
## 5154     5155
## 5155     5156
## 5156     5157
## 5157     5158
## 5158     5159
## 5159     5160
## 5160     5161
## 5161     5162
## 5162     5163
## 5163    13674
## 5164     5165
## 5165     5166
## 5166     5167
## 5167     5168
## 5168     5169
## 5169     5170
## 5170     5171
## 5171     5172
## 5172    13677
## 5173     5174
## 5174     5175
## 5175     5176
## 5176     5177
## 5177     5178
## 5178     5179
## 5179     5180
## 5180     5181
## 5181     5182
## 5182     5183
## 5183     5184
## 5184     5185
## 5185     5186
## 5186     5187
## 5187     5188
## 5188     5189
## 5189     5190
## 5190     5191
## 5191     5192
## 5192     5193
## 5193     5194
## 5194     5195
## 5195     5196
## 5196    13735
## 5197    13872
## 5198     5199
## 5199     5200
## 5200     5201
## 5201     5202
## 5202     5203
## 5203     5204
## 5204     5205
## 5205     5206
## 5206     5207
## 5207     5208
## 5208     5209
## 5209     5210
## 5210     5211
## 5211     5212
## 5212     5213
## 5213     5214
## 5214     5215
## 5215     5216
## 5216     5217
## 5217     5218
## 5218     5219
## 5219     5220
## 5220     5221
## 5221     5222
## 5222     5223
## 5223     5224
## 5224     5225
## 5225     5226
## 5226     5227
## 5227     5228
## 5228     5229
## 5229     5230
## 5230     5231
## 5231     5232
## 5232     5233
## 5233     5234
## 5234     5235
## 5235     5236
## 5236     5237
## 5237     5238
## 5238     5239
## 5239     5240
## 5240     5241
## 5241    13964
## 5242     5243
## 5243     5244
## 5244     5245
## 5245     5246
## 5246     5247
## 5247     5248
## 5248     5249
## 5249     5250
## 5250     5251
## 5251     5252
## 5252     5253
## 5253     5254
## 5254     5255
## 5255     5256
## 5256     5257
## 5257     5258
## 5258     5259
## 5259     5260
## 5260     5261
## 5261     5262
## 5262     5263
## 5263     5264
## 5264     5265
## 5265     5266
## 5266     5267
## 5267     5268
## 5268     5269
## 5269     5270
## 5270     5271
## 5271     5272
## 5272     5273
## 5273     5274
## 5274     5275
## 5275     5276
## 5276     5277
## 5277     5278
## 5278     5279
## 5279     5280
## 5280     5281
## 5281     5282
## 5282     5283
## 5283     5284
## 5284     5285
## 5285     5286
## 5286     5287
## 5287     5288
## 5288     5289
## 5289     5290
## 5290     5291
## 5291     5292
## 5292     5293
## 5293     5294
## 5294     5295
## 5295     5296
## 5296     5297
## 5297     5298
## 5298     5299
## 5299     5300
## 5300     5301
## 5301     5302
## 5302     5303
## 5303    14048
## 5304     5305
## 5305     5306
## 5306     5307
## 5307     5308
## 5308     5309
## 5309     5310
## 5310     5311
## 5311     5312
## 5312     5313
## 5313     5314
## 5314     5315
## 5315     5316
## 5316     5317
## 5317     5318
## 5318     5319
## 5319     5320
## 5320     5321
## 5321     5322
## 5322     5323
## 5323     5324
## 5324     5325
## 5325     5326
## 5326     5327
## 5327     5328
## 5328     5329
## 5329     5330
## 5330     5331
## 5331     5332
## 5332     5333
## 5333     5334
## 5334     5335
## 5335     5336
## 5336     5337
## 5337     5338
## 5338     5339
## 5339     5340
## 5340     5341
## 5341     5342
## 5342     5343
## 5343     5344
## 5344     5345
## 5345     5346
## 5346     5347
## 5347     5348
## 5348     5349
## 5349     5350
## 5350     5351
## 5351     5352
## 5352     5353
## 5353     5354
## 5354     5355
## 5355     5356
## 5356     5357
## 5357     5358
## 5358     5359
## 5359     5360
## 5360     5361
## 5361     5362
## 5362     5363
## 5363     5364
## 5364     5365
## 5365     5366
## 5366     5367
## 5367     5368
## 5368     5369
## 5369     5370
## 5370     5371
## 5371     5372
## 5372     5373
## 5373     5374
## 5374     5375
## 5375     5376
## 5376     5377
## 5377     5378
## 5378     5379
## 5379     5380
## 5380     5381
## 5381     5382
## 5382     5383
## 5383     5384
## 5384     5385
## 5385     5386
## 5386     5387
## 5387     5388
## 5388     5389
## 5389     5390
## 5390     5391
## 5391     5392
## 5392     5393
## 5393     5394
## 5394     5395
## 5395     5396
## 5396     5397
## 5397     5398
## 5398     5399
## 5399     5400
## 5400     5401
## 5401     5402
## 5402     5403
## 5403     5404
## 5404     5405
## 5405     5406
## 5406     5407
## 5407     5408
## 5408     5409
## 5409     5410
## 5410     5411
## 5411     5412
## 5412     5413
## 5413     5414
## 5414     5415
## 5415     5416
## 5416     5417
## 5417     5418
## 5418     5419
## 5419     5420
## 5420     5421
## 5421     5422
## 5422     5423
## 5423     5424
## 5424     5425
## 5425     5426
## 5426     5427
## 5427     5428
## 5428     5429
## 5429     5430
## 5430     5431
## 5431     5432
## 5432     5433
## 5433     5434
## 5434     5435
## 5435     5436
## 5436     5437
## 5437     5438
## 5438     5439
## 5439     5440
## 5440     5441
## 5441     5442
## 5442     5443
## 5443     5444
## 5444     5445
## 5445     5446
## 5446     5447
## 5447     5448
## 5448     5449
## 5449     5450
## 5450     5451
## 5451     5452
## 5452     5453
## 5453     5454
## 5454     5455
## 5455     5456
## 5456     5457
## 5457     5458
## 5458     5459
## 5459     5460
## 5460     5461
## 5461     5462
## 5462     5463
## 5463     5464
## 5464     5465
## 5465     5466
## 5466     5467
## 5467     5468
## 5468     5469
## 5469     5470
## 5470     5471
## 5471     5472
## 5472     5473
## 5473     5474
## 5474     5475
## 5475     5476
## 5476     5477
## 5477     5478
## 5478     5479
## 5479     5480
## 5480     5481
## 5481     5482
## 5482     5483
## 5483     5484
## 5484     5485
## 5485     5486
## 5486     5487
## 5487     5488
## 5488     5489
## 5489     5490
## 5490     5491
## 5491     5492
## 5492     5493
## 5493     5494
## 5494     5495
## 5495     5496
## 5496     5497
## 5497     5498
## 5498     5499
## 5499     5500
## 5500     5501
## 5501     5502
## 5502     5503
## 5503     5504
## 5504     5505
## 5505     5506
## 5506     5507
## 5507     5508
## 5508     5509
## 5509    14057
## 5510     5511
## 5511     5512
## 5512     5513
## 5513     5514
## 5514     5515
## 5515     5516
## 5516     5517
## 5517     5518
## 5518     5519
## 5519     5520
## 5520     5521
## 5521     5522
## 5522     5523
## 5523     5524
## 5524     5525
## 5525     5526
## 5526     5527
## 5527     5528
## 5528     5529
## 5529     5530
## 5530     5531
## 5531     5532
## 5532     5533
## 5533     5534
## 5534     5535
## 5535     5536
## 5536     5537
## 5537     5538
## 5538     5539
## 5539     5540
## 5540     5541
## 5541     5542
## 5542     5543
## 5543     5544
## 5544     5545
## 5545     5546
## 5546     5547
## 5547     5548
## 5548     5549
## 5549     5550
## 5550     5551
## 5551     5552
## 5552     5553
## 5553     5554
## 5554     5555
## 5555     5556
## 5556     5557
## 5557     5558
## 5558     5559
## 5559     5560
## 5560     5561
## 5561     5562
## 5562     5563
## 5563     5564
## 5564     5565
## 5565     5566
## 5566     5567
## 5567     5568
## 5568     5569
## 5569     5570
## 5570     5571
## 5571     5572
## 5572     5573
## 5573     5574
## 5574     5575
## 5575     5576
## 5576     5577
## 5577     5578
## 5578     5579
## 5579     5580
## 5580     5581
## 5581     5582
## 5582     5583
## 5583     5584
## 5584     5585
## 5585     5586
## 5586     5587
## 5587     5588
## 5588     5589
## 5589     5590
## 5590     5591
## 5591     5592
## 5592     5593
## 5593     5594
## 5594     5595
## 5595     5596
## 5596     5597
## 5597     5598
## 5598     5599
## 5599     5600
## 5600     5601
## 5601     5602
## 5602     5603
## 5603     5604
## 5604     5605
## 5605     5606
## 5606     5607
## 5607     5608
## 5608     5609
## 5609     5610
## 5610     5611
## 5611     5612
## 5612     5613
## 5613     5614
## 5614     5615
## 5615     5616
## 5616     5617
## 5617     5618
## 5618     5619
## 5619    14058
## 5620     5621
## 5621     5622
## 5622     5623
## 5623     5624
## 5624     5625
## 5625     5626
## 5626    14089
## 5627     5628
## 5628     5629
## 5629     5630
## 5630     5631
## 5631     5632
## 5632     5633
## 5633     5634
## 5634     5635
## 5635     5636
## 5636     5637
## 5637     5638
## 5638     5639
## 5639     5640
## 5640     5641
## 5641     5642
## 5642     5643
## 5643     5644
## 5644     5645
## 5645     5646
## 5646     5647
## 5647     5648
## 5648     5649
## 5649     5650
## 5650     5651
## 5651     5652
## 5652     5653
## 5653     5654
## 5654     5655
## 5655     5656
## 5656     5657
## 5657     5658
## 5658    12827
## 5659     5660
## 5660     5661
## 5661     5662
## 5662     5663
## 5663     5664
## 5664     5665
## 5665     5666
## 5666     5667
## 5667     5668
## 5668     5669
## 5669     5670
## 5670    12881
## 5671     5672
## 5672     5673
## 5673     5674
## 5674     5675
## 5675     5676
## 5676     5677
## 5677     5678
## 5678     5679
## 5679     5680
## 5680     5681
## 5681     5682
## 5682     5683
## 5683     5684
## 5684     5685
## 5685     5686
## 5686     5687
## 5687     5688
## 5688     5689
## 5689     5690
## 5690     5691
## 5691     5692
## 5692     5693
## 5693     5694
## 5694     5695
## 5695     5696
## 5696     5697
## 5697     5698
## 5698     5699
## 5699     5700
## 5700     5701
## 5701     5702
## 5702     5703
## 5703     5704
## 5704     5705
## 5705     5706
## 5706     5707
## 5707     5708
## 5708     5709
## 5709     5710
## 5710     5711
## 5711     5712
## 5712     5713
## 5713     5714
## 5714     5715
## 5715     5716
## 5716     5717
## 5717     5718
## 5718     5719
## 5719     5720
## 5720     5721
## 5721     5722
## 5722     5723
## 5723     5724
## 5724     5725
## 5725     5726
## 5726     5727
## 5727     5728
## 5728     5729
## 5729     5730
## 5730     5731
## 5731     5732
## 5732     5733
## 5733     5734
## 5734     5735
## 5735     5736
## 5736     5737
## 5737     5738
## 5738     5739
## 5739     5740
## 5740     5741
## 5741     5742
## 5742     5743
## 5743     5744
## 5744     5745
## 5745     5746
## 5746     5747
## 5747     5748
## 5748     5749
## 5749     5750
## 5750     5751
## 5751     5752
## 5752     5753
## 5753     5754
## 5754     5755
## 5755     5756
## 5756     5757
## 5757     5758
## 5758     5759
## 5759     5760
## 5760     5761
## 5761     5762
## 5762     5763
## 5763     5764
## 5764     5765
## 5765     5766
## 5766     5767
## 5767     5768
## 5768     5769
## 5769     5770
## 5770    12917
## 5771     5772
## 5772     5773
## 5773     5774
## 5774     5775
## 5775     5776
## 5776     5777
## 5777     5778
## 5778     5779
## 5779     5780
## 5780     5781
## 5781     5782
## 5782     5783
## 5783     5784
## 5784     5785
## 5785     5786
## 5786     5787
## 5787     5788
## 5788     5789
## 5789     5790
## 5790     5791
## 5791     5792
## 5792     5793
## 5793     5794
## 5794     5795
## 5795     5796
## 5796     5797
## 5797     5798
## 5798     5799
## 5799    12924
## 5800     5801
## 5801     5802
## 5802     5803
## 5803     5804
## 5804     5805
## 5805     5806
## 5806     5807
## 5807     5808
## 5808     5809
## 5809     5810
## 5810     5811
## 5811     5812
## 5812     5813
## 5813     5814
## 5814     5815
## 5815     5816
## 5816     5817
## 5817     5818
## 5818     5819
## 5819     5820
## 5820     5821
## 5821     5822
## 5822     5823
## 5823     5824
## 5824     5825
## 5825     5826
## 5826     5827
## 5827     5828
## 5828     5829
## 5829     5830
## 5830     5831
## 5831     5832
## 5832     5833
## 5833     5834
## 5834     5835
## 5835     5836
## 5836     5837
## 5837     5838
## 5838     5839
## 5839    12931
## 5840     5841
## 5841     5842
## 5842     5843
## 5843     5844
## 5844     5845
## 5845     5846
## 5846     5847
## 5847     5848
## 5848     5849
## 5849     5850
## 5850     5851
## 5851     5852
## 5852     5853
## 5853     5854
## 5854     5855
## 5855     5856
## 5856     5857
## 5857     5858
## 5858     5859
## 5859     5860
## 5860     5861
## 5861     5862
## 5862    13057
## 5863     5864
## 5864     5865
## 5865     5866
## 5866     5867
## 5867     5868
## 5868     5869
## 5869     5870
## 5870     5871
## 5871    13158
## 5872     5873
## 5873     5874
## 5874     5875
## 5875     5876
## 5876     5877
## 5877     5878
## 5878     5879
## 5879     5880
## 5880     5881
## 5881     5882
## 5882     5883
## 5883     5884
## 5884     5885
## 5885     5886
## 5886     5887
## 5887     5888
## 5888     5889
## 5889     5890
## 5890     5891
## 5891     5892
## 5892     5893
## 5893     5894
## 5894     5895
## 5895     5896
## 5896     5897
## 5897     5898
## 5898     5899
## 5899     5900
## 5900     5901
## 5901     5902
## 5902    13280
## 5903     5904
## 5904     5905
## 5905     5906
## 5906     5907
## 5907     5908
## 5908     5909
## 5909     5910
## 5910     5911
## 5911     5912
## 5912     5913
## 5913     5914
## 5914    12250
## 5915     5916
## 5916     5917
## 5917     5918
## 5918     5919
## 5919     5920
## 5920     5921
## 5921     5922
## 5922     5923
## 5923     5924
## 5924     5925
## 5925     5926
## 5926     5927
## 5927     5928
## 5928     5929
## 5929     5930
## 5930     5931
## 5931     5932
## 5932     5933
## 5933     5934
## 5934     5935
## 5935     5936
## 5936     5937
## 5937     5938
## 5938     5939
## 5939     5940
## 5940     5941
## 5941     5942
## 5942     5943
## 5943     5944
## 5944     5945
## 5945     5946
## 5946     5947
## 5947     5948
## 5948     5949
## 5949     5950
## 5950     5951
## 5951     5952
## 5952     5953
## 5953     5954
## 5954     5955
## 5955     5956
## 5956     5957
## 5957     5958
## 5958     5959
## 5959     5960
## 5960     5961
## 5961     5962
## 5962     5963
## 5963     5964
## 5964     5965
## 5965     5966
## 5966     5967
## 5967     5968
## 5968     5969
## 5969     5970
## 5970     5971
## 5971     5972
## 5972     5973
## 5973     5974
## 5974     5975
## 5975     5976
## 5976     5977
## 5977     5978
## 5978     5979
## 5979     5980
## 5980     5981
## 5981     5982
## 5982     5983
## 5983     5984
## 5984     5985
## 5985     5986
## 5986     5987
## 5987     5988
## 5988     5989
## 5989     5990
## 5990     5991
## 5991     5992
## 5992     5993
## 5993     5994
## 5994     5995
## 5995     5996
## 5996     5997
## 5997     5998
## 5998     5999
## 5999     6000
## 6000     6001
## 6001     6002
## 6002     6003
## 6003     6004
## 6004     6005
## 6005     6006
## 6006     6007
## 6007     6008
## 6008     6009
## 6009     6010
## 6010     6011
## 6011     6012
## 6012     6013
## 6013     6014
## 6014     6015
## 6015     6016
## 6016     6017
## 6017     6018
## 6018     6019
## 6019     6020
## 6020     6021
## 6021     6022
## 6022     6023
## 6023     6024
## 6024     6025
## 6025     6026
## 6026     6027
## 6027     6028
## 6028     6029
## 6029     6030
## 6030     6031
## 6031     6032
## 6032     6033
## 6033     6034
## 6034     6035
## 6035     6036
## 6036     6037
## 6037     6038
## 6038     6039
## 6039     6040
## 6040     6041
## 6041     6042
## 6042     6043
## 6043    12489
## 6044     6045
## 6045     6046
## 6046     6047
## 6047     6048
## 6048     6049
## 6049     6050
## 6050     6051
## 6051     6052
## 6052     6053
## 6053     6054
## 6054     6055
## 6055     6056
## 6056     6057
## 6057     6058
## 6058     6059
## 6059     6060
## 6060     6061
## 6061     6062
## 6062     6063
## 6063     6064
## 6064     6065
## 6065     6066
## 6066     6067
## 6067     6068
## 6068     6069
## 6069     6070
## 6070     6071
## 6071     6072
## 6072     6073
## 6073     6074
## 6074     6075
## 6075     6076
## 6076     6077
## 6077     6078
## 6078     6079
## 6079     6080
## 6080     6081
## 6081     6082
## 6082     6083
## 6083     6084
## 6084     6085
## 6085     6086
## 6086     6087
## 6087     6088
## 6088     6089
## 6089     6090
## 6090     6091
## 6091     6092
## 6092     6093
## 6093     6094
## 6094     6095
## 6095     6096
## 6096     6097
## 6097     6098
## 6098     6099
## 6099     6100
## 6100     6101
## 6101     6102
## 6102     6103
## 6103     6104
## 6104     6105
## 6105     6106
## 6106     6107
## 6107     6108
## 6108     6109
## 6109     6110
## 6110     6111
## 6111     6112
## 6112     6113
## 6113     6114
## 6114     6115
## 6115     6116
## 6116     6117
## 6117     6118
## 6118     6119
## 6119     6120
## 6120     6121
## 6121     6122
## 6122     6123
## 6123     6124
## 6124     6125
## 6125     6126
## 6126    12519
## 6127     6128
## 6128     6129
## 6129     6130
## 6130     6131
## 6131     6132
## 6132     6133
## 6133     6134
## 6134     6135
## 6135     6136
## 6136     6137
## 6137     6138
## 6138     6139
## 6139     6140
## 6140     6141
## 6141     6142
## 6142     6143
## 6143     6144
## 6144     6145
## 6145     6146
## 6146     6147
## 6147     6148
## 6148     6149
## 6149     6150
## 6150     6151
## 6151     6152
## 6152     6153
## 6153     6154
## 6154    12533
## 6155     6156
## 6156     6157
## 6157     6158
## 6158     6159
## 6159     6160
## 6160     6161
## 6161     6162
## 6162     6163
## 6163     6164
## 6164     6165
## 6165     6166
## 6166     6167
## 6167     6168
## 6168     6169
## 6169     6170
## 6170     6171
## 6171     6172
## 6172     6173
## 6173     6174
## 6174     6175
## 6175     6176
## 6176     6177
## 6177     6178
## 6178     6179
## 6179     6180
## 6180     6181
## 6181     6182
## 6182     6183
## 6183     6184
## 6184     6185
## 6185     6186
## 6186     6187
## 6187     6188
## 6188     6189
## 6189     6190
## 6190     6191
## 6191     6192
## 6192     6193
## 6193     6194
## 6194     6195
## 6195     6196
## 6196    12628
## 6197     6198
## 6198     6199
## 6199     6200
## 6200     6201
## 6201     6202
## 6202     6203
## 6203     6204
## 6204     6205
## 6205     6206
## 6206     6207
## 6207     6208
## 6208     6209
## 6209     6210
## 6210     6211
## 6211     6212
## 6212    12668
## 6213     6214
## 6214     6215
## 6215     6216
## 6216     6217
## 6217     6218
## 6218     6219
## 6219     6220
## 6220     6221
## 6221     6222
## 6222     6223
## 6223     6224
## 6224     6225
## 6225     6226
## 6226     6227
## 6227     6228
## 6228     6229
## 6229     6230
## 6230     6231
## 6231     6232
## 6232     6233
## 6233     6234
## 6234     6235
## 6235     6236
## 6236     6237
## 6237     6238
## 6238     6239
## 6239     6240
## 6240     6241
## 6241     6242
## 6242     6243
## 6243     6244
## 6244     6245
## 6245     6246
## 6246     6247
## 6247     6248
## 6248     6249
## 6249     6250
## 6250     6251
## 6251     6252
## 6252     6253
## 6253     6254
## 6254     6255
## 6255     6256
## 6256     6257
## 6257     6258
## 6258     6259
## 6259     6260
## 6260     6261
## 6261     6262
## 6262     6263
## 6263     6264
## 6264     6265
## 6265     6266
## 6266     6267
## 6267     6268
## 6268     6269
## 6269     6270
## 6270     6271
## 6271     6272
## 6272     6273
## 6273    12711
## 6274     6275
## 6275     6276
## 6276     6277
## 6277     6278
## 6278     6279
## 6279     6280
## 6280     6281
## 6281     6282
## 6282     6283
## 6283     6284
## 6284    12751
## 6285     6286
## 6286     6287
## 6287     6288
## 6288     6289
## 6289     6290
## 6290     6291
## 6291     6292
## 6292     6293
## 6293     6294
## 6294     6295
## 6295     6296
## 6296     6297
## 6297     6298
## 6298     6299
## 6299     6300
## 6300     6301
## 6301     6302
## 6302     6303
## 6303     6304
## 6304     6305
## 6305     6306
## 6306     6307
## 6307     6308
## 6308     6309
## 6309     6310
## 6310     6311
## 6311     6312
## 6312     6313
## 6313     6314
## 6314     6315
## 6315    12809
## 6316     6317
## 6317    11757
## 6318     6319
## 6319     6320
## 6320     6321
## 6321     6322
## 6322     6323
## 6323     6324
## 6324     6325
## 6325     6326
## 6326     6327
## 6327     6328
## 6328     6329
## 6329     6330
## 6330     6331
## 6331     6332
## 6332     6333
## 6333     6334
## 6334     6335
## 6335     6336
## 6336     6337
## 6337     6338
## 6338     6339
## 6339     6340
## 6340     6341
## 6341     6342
## 6342     6343
## 6343     6344
## 6344     6345
## 6345     6346
## 6346     6347
## 6347     6348
## 6348     6349
## 6349     6350
## 6350     6351
## 6351     6352
## 6352     6353
## 6353     6354
## 6354     6355
## 6355     6356
## 6356     6357
## 6357     6358
## 6358     6359
## 6359     6360
## 6360     6361
## 6361     6362
## 6362     6363
## 6363     6364
## 6364     6365
## 6365     6366
## 6366     6367
## 6367     6368
## 6368     6369
## 6369     6370
## 6370     6371
## 6371     6372
## 6372     6373
## 6373     6374
## 6374     6375
## 6375     6376
## 6376     6377
## 6377     6378
## 6378     6379
## 6379     6380
## 6380     6381
## 6381     6382
## 6382     6383
## 6383     6384
## 6384     6385
## 6385     6386
## 6386     6387
## 6387     6388
## 6388     6389
## 6389     6390
## 6390     6391
## 6391     6392
## 6392     6393
## 6393     6394
## 6394     6395
## 6395     6396
## 6396     6397
## 6397     6398
## 6398     6399
## 6399     6400
## 6400     6401
## 6401     6402
## 6402     6403
## 6403     6404
## 6404     6405
## 6405     6406
## 6406     6407
## 6407     6408
## 6408     6409
## 6409     6410
## 6410     6411
## 6411     6412
## 6412     6413
## 6413     6414
## 6414     6415
## 6415     6416
## 6416     6417
## 6417     6418
## 6418     6419
## 6419     6420
## 6420     6421
## 6421     6422
## 6422     6423
## 6423     6424
## 6424     6425
## 6425     6426
## 6426     6427
## 6427     6428
## 6428     6429
## 6429     6430
## 6430     6431
## 6431     6432
## 6432     6433
## 6433     6434
## 6434     6435
## 6435     6436
## 6436     6437
## 6437     6438
## 6438     6439
## 6439     6440
## 6440     6441
## 6441     6442
## 6442     6443
## 6443     6444
## 6444     6445
## 6445     6446
## 6446     6447
## 6447     6448
## 6448     6449
## 6449     6450
## 6450     6451
## 6451     6452
## 6452     6453
## 6453     6454
## 6454     6455
## 6455     6456
## 6456     6457
## 6457     6458
## 6458     6459
## 6459     6460
## 6460     6461
## 6461     6462
## 6462     6463
## 6463     6464
## 6464     6465
## 6465     6466
## 6466     6467
## 6467     6468
## 6468     6469
## 6469     6470
## 6470     6471
## 6471     6472
## 6472     6473
## 6473     6474
## 6474     6475
## 6475     6476
## 6476     6477
## 6477     6478
## 6478     6479
## 6479     6480
## 6480     6481
## 6481     6482
## 6482     6483
## 6483     6484
## 6484     6485
## 6485     6486
## 6486     6487
## 6487     6488
## 6488     6489
## 6489     6490
## 6490     6491
## 6491     6492
## 6492     6493
## 6493     6494
## 6494     6495
## 6495     6496
## 6496     6497
## 6497    11800
## 6498     6499
## 6499     6500
## 6500     6501
## 6501     6502
## 6502     6503
## 6503     6504
## 6504     6505
## 6505     6506
## 6506     6507
## 6507     6508
## 6508     6509
## 6509     6510
## 6510     6511
## 6511     6512
## 6512     6513
## 6513     6514
## 6514     6515
## 6515     6516
## 6516     6517
## 6517     6518
## 6518     6519
## 6519     6520
## 6520     6521
## 6521     6522
## 6522     6523
## 6523     6524
## 6524     6525
## 6525     6526
## 6526     6527
## 6527     6528
## 6528     6529
## 6529     6530
## 6530     6531
## 6531     6532
## 6532     6533
## 6533     6534
## 6534     6535
## 6535     6536
## 6536     6537
## 6537     6538
## 6538     6539
## 6539     6540
## 6540     6541
## 6541     6542
## 6542     6543
## 6543     6544
## 6544     6545
## 6545     6546
## 6546     6547
## 6547     6548
## 6548     6549
## 6549     6550
## 6550     6551
## 6551     6552
## 6552     6553
## 6553     6554
## 6554     6555
## 6555     6556
## 6556     6557
## 6557     6558
## 6558     6559
## 6559     6560
## 6560     6561
## 6561     6562
## 6562     6563
## 6563     6564
## 6564     6565
## 6565     6566
## 6566     6567
## 6567     6568
## 6568     6569
## 6569     6570
## 6570     6571
## 6571     6572
## 6572     6573
## 6573     6574
## 6574     6575
## 6575     6576
## 6576     6577
## 6577     6578
## 6578     6579
## 6579     6580
## 6580     6581
## 6581     6582
## 6582     6583
## 6583     6584
## 6584     6585
## 6585     6586
## 6586     6587
## 6587     6588
## 6588     6589
## 6589     6590
## 6590     6591
## 6591     6592
## 6592     6593
## 6593     6594
## 6594     6595
## 6595     6596
## 6596     6597
## 6597     6598
## 6598     6599
## 6599     6600
## 6600     6601
## 6601     6602
## 6602     6603
## 6603     6604
## 6604     6605
## 6605     6606
## 6606     6607
## 6607     6608
## 6608     6609
## 6609     6610
## 6610     6611
## 6611     6612
## 6612     6613
## 6613     6614
## 6614     6615
## 6615     6616
## 6616     6617
## 6617     6618
## 6618     6619
## 6619     6620
## 6620     6621
## 6621     6622
## 6622     6623
## 6623     6624
## 6624     6625
## 6625     6626
## 6626     6627
## 6627     6628
## 6628     6629
## 6629     6630
## 6630     6631
## 6631     6632
## 6632     6633
## 6633     6634
## 6634     6635
## 6635     6636
## 6636     6637
## 6637     6638
## 6638     6639
## 6639     6640
## 6640     6641
## 6641     6642
## 6642     6643
## 6643     6644
## 6644     6645
## 6645     6646
## 6646     6647
## 6647     6648
## 6648    11923
## 6649     6650
## 6650     6651
## 6651     6652
## 6652     6653
## 6653     6654
## 6654     6655
## 6655     6656
## 6656     6657
## 6657     6658
## 6658     6659
## 6659     6660
## 6660     6661
## 6661     6662
## 6662     6663
## 6663     6664
## 6664     6665
## 6665     6666
## 6666     6667
## 6667     6668
## 6668     6669
## 6669     6670
## 6670     6671
## 6671     6672
## 6672     6673
## 6673     6674
## 6674     6675
## 6675     6676
## 6676     6677
## 6677     6678
## 6678     6679
## 6679     6680
## 6680     6681
## 6681     6682
## 6682     6683
## 6683     6684
## 6684     6685
## 6685     6686
## 6686     6687
## 6687     6688
## 6688     6689
## 6689     6690
## 6690     6691
## 6691     6692
## 6692     6693
## 6693     6694
## 6694     6695
## 6695     6696
## 6696     6697
## 6697     6698
## 6698     6699
## 6699     6700
## 6700     6701
## 6701     6702
## 6702     6703
## 6703     6704
## 6704     6705
## 6705     6706
## 6706     6707
## 6707     6708
## 6708     6709
## 6709     6710
## 6710     6711
## 6711     6712
## 6712     6713
## 6713     6714
## 6714     6715
## 6715     6716
## 6716     6717
## 6717     6718
## 6718     6719
## 6719     6720
## 6720     6721
## 6721     6722
## 6722     6723
## 6723     6724
## 6724     6725
## 6725     6726
## 6726     6727
## 6727     6728
## 6728     6729
## 6729     6730
## 6730     6731
## 6731     6732
## 6732     6733
## 6733     6734
## 6734     6735
## 6735     6736
## 6736     6737
## 6737     6738
## 6738     6739
## 6739     6740
## 6740     6741
## 6741     6742
## 6742     6743
## 6743     6744
## 6744     6745
## 6745     6746
## 6746     6747
## 6747     6748
## 6748     6749
## 6749     6750
## 6750     6751
## 6751     6752
## 6752     6753
## 6753     6754
## 6754     6755
## 6755     6756
## 6756     6757
## 6757     6758
## 6758     6759
## 6759     6760
## 6760     6761
## 6761     6762
## 6762     6763
## 6763     6764
## 6764     6765
## 6765     6766
## 6766     6767
## 6767     6768
## 6768     6769
## 6769     6770
## 6770     6771
## 6771     6772
## 6772     6773
## 6773     6774
## 6774     6775
## 6775     6776
## 6776     6777
## 6777     6778
## 6778    11940
## 6779     6780
## 6780     6781
## 6781     6782
## 6782     6783
## 6783     6784
## 6784     6785
## 6785     6786
## 6786     6787
## 6787     6788
## 6788     6789
## 6789     6790
## 6790     6791
## 6791     6792
## 6792     6793
## 6793     6794
## 6794     6795
## 6795     6796
## 6796     6797
## 6797     6798
## 6798     6799
## 6799     6800
## 6800     6801
## 6801     6802
## 6802     6803
## 6803     6804
## 6804     6805
## 6805     6806
## 6806     6807
## 6807    11978
## 6808     6809
## 6809     6810
## 6810     6811
## 6811     6812
## 6812     6813
## 6813     6814
## 6814     6815
## 6815     6816
## 6816     6817
## 6817     6818
## 6818     6819
## 6819     6820
## 6820     6821
## 6821     6822
## 6822     6823
## 6823     6824
## 6824     6825
## 6825     6826
## 6826     6827
## 6827     6828
## 6828     6829
## 6829     6830
## 6830     6831
## 6831     6832
## 6832     6833
## 6833    12017
## 6834     6835
## 6835     6836
## 6836     6837
## 6837     6838
## 6838     6839
## 6839     6840
## 6840     6841
## 6841     6842
## 6842     6843
## 6843     6844
## 6844     6845
## 6845     6846
## 6846     6847
## 6847     6848
## 6848     6849
## 6849     6850
## 6850     6851
## 6851     6852
## 6852     6853
## 6853     6854
## 6854     6855
## 6855     6856
## 6856     6857
## 6857     6858
## 6858     6859
## 6859     6860
## 6860     6861
## 6861     6862
## 6862     6863
## 6863     6864
## 6864     6865
## 6865     6866
## 6866     6867
## 6867     6868
## 6868     6869
## 6869     6870
## 6870     6871
## 6871     6872
## 6872     6873
## 6873     6874
## 6874     6875
## 6875     6876
## 6876     6877
## 6877     6878
## 6878     6879
## 6879     6880
## 6880     6881
## 6881     6882
## 6882     6883
## 6883     6884
## 6884     6885
## 6885     6886
## 6886     6887
## 6887     6888
## 6888     6889
## 6889     6890
## 6890     6891
## 6891     6892
## 6892     6893
## 6893     6894
## 6894     6895
## 6895     6896
## 6896     6897
## 6897     6898
## 6898     6899
## 6899     6900
## 6900     6901
## 6901     6902
## 6902     6903
## 6903     6904
## 6904     6905
## 6905     6906
## 6906     6907
## 6907     6908
## 6908     6909
## 6909     6910
## 6910     6911
## 6911     6912
## 6912     6913
## 6913     6914
## 6914     6915
## 6915     6916
## 6916     6917
## 6917     6918
## 6918     6919
## 6919     6920
## 6920    12030
## 6921     6922
## 6922     6923
## 6923     6924
## 6924     6925
## 6925     6926
## 6926     6927
## 6927    12129
## 6928     6929
## 6929     6930
## 6930     6931
## 6931     6932
## 6932     6933
## 6933     6934
## 6934     6935
## 6935     6936
## 6936     6937
## 6937     6938
## 6938    12131
## 6939     6940
## 6940     6941
## 6941     6942
## 6942     6943
## 6943     6944
## 6944     6945
## 6945     6946
## 6946     6947
## 6947     6948
## 6948     6949
## 6949     6950
## 6950     6951
## 6951     6952
## 6952     6953
## 6953     6954
## 6954     6955
## 6955     6956
## 6956     6957
## 6957     6958
## 6958     6959
## 6959     6960
## 6960     6961
## 6961     6962
## 6962     6963
## 6963     6964
## 6964     6965
## 6965     6966
## 6966     6967
## 6967    12137
## 6968     6969
## 6969    12186
## 6970     6971
## 6971     6972
## 6972     6973
## 6973     6974
## 6974     6975
## 6975     6976
## 6976     6977
## 6977     6978
## 6978     6979
## 6979     6980
## 6980     6981
## 6981     6982
## 6982     6983
## 6983     6984
## 6984     6985
## 6985     6986
## 6986     6987
## 6987     6988
## 6988     6989
## 6989     6990
## 6990     6991
## 6991     6992
## 6992     6993
## 6993     6994
## 6994     6995
## 6995     6996
## 6996     6997
## 6997     6998
## 6998     6999
## 6999     7000
## 7000     7001
## 7001     7002
## 7002     7003
## 7003     7004
## 7004     7005
## 7005     7006
## 7006     7007
## 7007     7008
## 7008     7009
## 7009     7010
## 7010     7011
## 7011     7012
## 7012     7013
## 7013     7014
## 7014     7015
## 7015     7016
## 7016     7017
## 7017     7018
## 7018     7019
## 7019     7020
## 7020     7021
## 7021     7022
## 7022     7023
## 7023     7024
## 7024     7025
## 7025     7026
## 7026     7027
## 7027     7028
## 7028     7029
## 7029     7030
## 7030     7031
## 7031     7032
## 7032     7033
## 7033     7034
## 7034     7035
## 7035     7036
## 7036    12214
## 7037     7038
## 7038     7039
## 7039     7040
## 7040     7041
## 7041     7042
## 7042     7043
## 7043     7044
## 7044     7045
## 7045     7046
## 7046     7047
## 7047     7048
## 7048     7049
## 7049     7050
## 7050     7051
## 7051     7052
## 7052     7053
## 7053     7054
## 7054     7055
## 7055     7056
## 7056     7057
## 7057     7058
## 7058     7059
## 7059     7060
## 7060     7061
## 7061     7062
## 7062     7063
## 7063     7064
## 7064     7065
## 7065     7066
## 7066     7067
## 7067     7068
## 7068     7069
## 7069     7070
## 7070     7071
## 7071     7072
## 7072     7073
## 7073     7074
## 7074     7075
## 7075     7076
## 7076     7077
## 7077     7078
## 7078     7079
## 7079     7080
## 7080     7081
## 7081     7082
## 7082     7083
## 7083     7084
## 7084     7085
## 7085     7086
## 7086     7087
## 7087     7088
## 7088     7089
## 7089     7090
## 7090     7091
## 7091     7092
## 7092     7093
## 7093     7094
## 7094     7095
## 7095     7096
## 7096     7097
## 7097     7098
## 7098     7099
## 7099     7100
## 7100     7101
## 7101     7102
## 7102     7103
## 7103     7104
## 7104     7105
## 7105     7106
## 7106     7107
## 7107     7108
## 7108     7109
## 7109     7110
## 7110     7111
## 7111     7112
## 7112     7113
## 7113     7114
## 7114     7115
## 7115     7116
## 7116     7117
## 7117     7118
## 7118     7119
## 7119     7120
## 7120     7121
## 7121     7122
## 7122     7123
## 7123     7124
## 7124     7125
## 7125     7126
## 7126     7127
## 7127     7128
## 7128     7129
## 7129     7130
## 7130     7131
## 7131     7132
## 7132     7133
## 7133     7134
## 7134     7135
## 7135     7136
## 7136     7137
## 7137     7138
## 7138     7139
## 7139     7140
## 7140     7141
## 7141     7142
## 7142     7143
## 7143     7144
## 7144     7145
## 7145     7146
## 7146     7147
## 7147     7148
## 7148     7149
## 7149     7150
## 7150     7151
## 7151     7152
## 7152     7153
## 7153     7154
## 7154     7155
## 7155     7156
## 7156     7157
## 7157     7158
## 7158     7159
## 7159     7160
## 7160     7161
## 7161     7162
## 7162     7163
## 7163     7164
## 7164     7165
## 7165     7166
## 7166     7167
## 7167     7168
## 7168     7169
## 7169     7170
## 7170     7171
## 7171     7172
## 7172     7173
## 7173     7174
## 7174     7175
## 7175     7176
## 7176     7177
## 7177     7178
## 7178     7179
## 7179     7180
## 7180     7181
## 7181     7182
## 7182    12240
## 7183     7184
## 7184     7185
## 7185     7186
## 7186     7187
## 7187     7188
## 7188     7189
## 7189     7190
## 7190     7191
## 7191     7192
## 7192     7193
## 7193     7194
## 7194     7195
## 7195     7196
## 7196     7197
## 7197     7198
## 7198     7199
## 7199     7200
## 7200     7201
## 7201     7202
## 7202     7203
## 7203     7204
## 7204     7205
## 7205     7206
## 7206     7207
## 7207     7208
## 7208     7209
## 7209     7210
## 7210     7211
## 7211     7212
## 7212     7213
## 7213     7214
## 7214     7215
## 7215     7216
## 7216     7217
## 7217     7218
## 7218     7219
## 7219     7220
## 7220     7221
## 7221     7222
## 7222     7223
## 7223     7224
## 7224     7225
## 7225     7226
## 7226     7227
## 7227     7228
## 7228     7229
## 7229     7230
## 7230     7231
## 7231     7232
## 7232     7233
## 7233     7234
## 7234     7235
## 7235     7236
## 7236     7237
## 7237     7238
## 7238     7239
## 7239     7240
## 7240     7241
## 7241     7242
## 7242     7243
## 7243     7244
## 7244     7245
## 7245     7246
## 7246     7247
## 7247     7248
## 7248     7249
## 7249     7250
## 7250     7251
## 7251     7252
## 7252     7253
## 7253     7254
## 7254     7255
## 7255     7256
## 7256     7257
## 7257     7258
## 7258     7259
## 7259     7260
## 7260     7261
## 7261     7262
## 7262     7263
## 7263     7264
## 7264     7265
## 7265     7266
## 7266     7267
## 7267     7268
## 7268     7269
## 7269     7270
## 7270     7271
## 7271     7272
## 7272     7273
## 7273     7274
## 7274     7275
## 7275     7276
## 7276     7277
## 7277     7278
## 7278     7279
## 7279     7280
## 7280     7281
## 7281     7282
## 7282     7283
## 7283     7284
## 7284     7285
## 7285     7286
## 7286     7287
## 7287     7288
## 7288     7289
## 7289     7290
## 7290     7291
## 7291     7292
## 7292     7293
## 7293     7294
## 7294     7295
## 7295     7296
## 7296     7297
## 7297     7298
## 7298     7299
## 7299     7300
## 7300     7301
## 7301     7302
## 7302     7303
## 7303     7304
## 7304     7305
## 7305     7306
## 7306     7307
## 7307     7308
## 7308     7309
## 7309     7310
## 7310     7311
## 7311     7312
## 7312     7313
## 7313     7314
## 7314     7315
## 7315     7316
## 7316     7317
## 7317     7318
## 7318     7319
## 7319     7320
## 7320     7321
## 7321     7322
## 7322     7323
## 7323     7324
## 7324     7325
## 7325     7326
## 7326     7327
## 7327     7328
## 7328     7329
## 7329     7330
## 7330     7331
## 7331     7332
## 7332     7333
## 7333     7334
## 7334     7335
## 7335     7336
## 7336     7337
## 7337     7338
## 7338     7339
## 7339     7340
## 7340     7341
## 7341     7342
## 7342     7343
## 7343     7344
## 7344     7345
## 7345     7346
## 7346     7347
## 7347     7348
## 7348     7349
## 7349     7350
## 7350     7351
## 7351     7352
## 7352    11325
## 7353     7354
## 7354     7355
## 7355     7356
## 7356     7357
## 7357     7358
## 7358     7359
## 7359     7360
## 7360     7361
## 7361     7362
## 7362     7363
## 7363     7364
## 7364     7365
## 7365     7366
## 7366     7367
## 7367     7368
## 7368     7369
## 7369     7370
## 7370    11333
## 7371    11378
## 7372     7373
## 7373     7374
## 7374     7375
## 7375     7376
## 7376     7377
## 7377     7378
## 7378     7379
## 7379     7380
## 7380     7381
## 7381     7382
## 7382     7383
## 7383    11411
## 7384     7385
## 7385     7386
## 7386     7387
## 7387     7388
## 7388     7389
## 7389     7390
## 7390     7391
## 7391     7392
## 7392     7393
## 7393     7394
## 7394     7395
## 7395     7396
## 7396     7397
## 7397     7398
## 7398     7399
## 7399     7400
## 7400     7401
## 7401     7402
## 7402     7403
## 7403     7404
## 7404     7405
## 7405     7406
## 7406     7407
## 7407    11457
## 7408     7409
## 7409     7410
## 7410     7411
## 7411     7412
## 7412     7413
## 7413     7414
## 7414     7415
## 7415     7416
## 7416     7417
## 7417     7418
## 7418     7419
## 7419     7420
## 7420     7421
## 7421     7422
## 7422     7423
## 7423     7424
## 7424    11575
## 7425     7426
## 7426     7427
## 7427     7428
## 7428     7429
## 7429     7430
## 7430     7431
## 7431     7432
## 7432     7433
## 7433     7434
## 7434     7435
## 7435     7436
## 7436     7437
## 7437     7438
## 7438     7439
## 7439     7440
## 7440     7441
## 7441     7442
## 7442     7443
## 7443     7444
## 7444     7445
## 7445     7446
## 7446     7447
## 7447     7448
## 7448     7449
## 7449     7450
## 7450     7451
## 7451     7452
## 7452     7453
## 7453     7454
## 7454     7455
## 7455     7456
## 7456     7457
## 7457     7458
## 7458     7459
## 7459     7460
## 7460     7461
## 7461     7462
## 7462     7463
## 7463     7464
## 7464     7465
## 7465     7466
## 7466     7467
## 7467     7468
## 7468     7469
## 7469     7470
## 7470     7471
## 7471     7472
## 7472     7473
## 7473     7474
## 7474     7475
## 7475     7476
## 7476     7477
## 7477     7478
## 7478     7479
## 7479     7480
## 7480     7481
## 7481     7482
## 7482     7483
## 7483     7484
## 7484     7485
## 7485     7486
## 7486     7487
## 7487     7488
## 7488     7489
## 7489     7490
## 7490     7491
## 7491     7492
## 7492     7493
## 7493     7494
## 7494     7495
## 7495     7496
## 7496     7497
## 7497     7498
## 7498     7499
## 7499     7500
## 7500     7501
## 7501     7502
## 7502     7503
## 7503     7504
## 7504     7505
## 7505     7506
## 7506     7507
## 7507     7508
## 7508     7509
## 7509     7510
## 7510     7511
## 7511     7512
## 7512     7513
## 7513     7514
## 7514     7515
## 7515     7516
## 7516     7517
## 7517     7518
## 7518     7519
## 7519     7520
## 7520     7521
## 7521     7522
## 7522     7523
## 7523     7524
## 7524     7525
## 7525     7526
## 7526     7527
## 7527     7528
## 7528     7529
## 7529     7530
## 7530     7531
## 7531     7532
## 7532     7533
## 7533     7534
## 7534     7535
## 7535     7536
## 7536     7537
## 7537     7538
## 7538     7539
## 7539     7540
## 7540     7541
## 7541     7542
## 7542     7543
## 7543     7544
## 7544     7545
## 7545     7546
## 7546     7547
## 7547     7548
## 7548     7549
## 7549     7550
## 7550     7551
## 7551     7552
## 7552     7553
## 7553     7554
## 7554     7555
## 7555     7556
## 7556     7557
## 7557     7558
## 7558     7559
## 7559     7560
## 7560     7561
## 7561     7562
## 7562     7563
## 7563     7564
## 7564     7565
## 7565     7566
## 7566     7567
## 7567     7568
## 7568     7569
## 7569     7570
## 7570     7571
## 7571     7572
## 7572     7573
## 7573     7574
## 7574     7575
## 7575     7576
## 7576     7577
## 7577     7578
## 7578     7579
## 7579     7580
## 7580     7581
## 7581     7582
## 7582     7583
## 7583     7584
## 7584     7585
## 7585     7586
## 7586     7587
## 7587     7588
## 7588     7589
## 7589     7590
## 7590     7591
## 7591     7592
## 7592     7593
## 7593     7594
## 7594     7595
## 7595     7596
## 7596     7597
## 7597     7598
## 7598     7599
## 7599     7600
## 7600     7601
## 7601     7602
## 7602     7603
## 7603     7604
## 7604     7605
## 7605     7606
## 7606     7607
## 7607     7608
## 7608     7609
## 7609     7610
## 7610     7611
## 7611     7612
## 7612     7613
## 7613     7614
## 7614     7615
## 7615     7616
## 7616    10831
## 7617     7618
## 7618     7619
## 7619     7620
## 7620     7621
## 7621     7622
## 7622     7623
## 7623     7624
## 7624     7625
## 7625     7626
## 7626     7627
## 7627     7628
## 7628     7629
## 7629     7630
## 7630     7631
## 7631     7632
## 7632     7633
## 7633     7634
## 7634     7635
## 7635     7636
## 7636     7637
## 7637     7638
## 7638     7639
## 7639     7640
## 7640     7641
## 7641     7642
## 7642     7643
## 7643     7644
## 7644     7645
## 7645     7646
## 7646     7647
## 7647     7648
## 7648     7649
## 7649    10981
## 7650     7651
## 7651     7652
## 7652     7653
## 7653     7654
## 7654     7655
## 7655     7656
## 7656     7657
## 7657     7658
## 7658     7659
## 7659     7660
## 7660     7661
## 7661     7662
## 7662     7663
## 7663     7664
## 7664     7665
## 7665     7666
## 7666     7667
## 7667     7668
## 7668     7669
## 7669     7670
## 7670     7671
## 7671     7672
## 7672     7673
## 7673     7674
## 7674     7675
## 7675     7676
## 7676     7677
## 7677     7678
## 7678     7679
## 7679     7680
## 7680     7681
## 7681     7682
## 7682     7683
## 7683     7684
## 7684     7685
## 7685     7686
## 7686     7687
## 7687     7688
## 7688     7689
## 7689     7690
## 7690     7691
## 7691     7692
## 7692     7693
## 7693     7694
## 7694     7695
## 7695     7696
## 7696     7697
## 7697     7698
## 7698     7699
## 7699     7700
## 7700     7701
## 7701     7702
## 7702     7703
## 7703     7704
## 7704     7705
## 7705     7706
## 7706     7707
## 7707     7708
## 7708     7709
## 7709     7710
## 7710     7711
## 7711     7712
## 7712     7713
## 7713     7714
## 7714     7715
## 7715     7716
## 7716     7717
## 7717     7718
## 7718     7719
## 7719     7720
## 7720     7721
## 7721    10999
## 7722     7723
## 7723     7724
## 7724     7725
## 7725     7726
## 7726     7727
## 7727     7728
## 7728     7729
## 7729     7730
## 7730     7731
## 7731     7732
## 7732     7733
## 7733     7734
## 7734     7735
## 7735     7736
## 7736     7737
## 7737     7738
## 7738     7739
## 7739     7740
## 7740     7741
## 7741     7742
## 7742     7743
## 7743     7744
## 7744     7745
## 7745     7746
## 7746     7747
## 7747     7748
## 7748     7749
## 7749     7750
## 7750     7751
## 7751     7752
## 7752     7753
## 7753     7754
## 7754     7755
## 7755     7756
## 7756     7757
## 7757     7758
## 7758     7759
## 7759     7760
## 7760     7761
## 7761     7762
## 7762     7763
## 7763     7764
## 7764     7765
## 7765     7766
## 7766     7767
## 7767     7768
## 7768     7769
## 7769     7770
## 7770     7771
## 7771     7772
## 7772     7773
## 7773     7774
## 7774     7775
## 7775     7776
## 7776     7777
## 7777     7778
## 7778     7779
## 7779     7780
## 7780     7781
## 7781     7782
## 7782     7783
## 7783     7784
## 7784     7785
## 7785     7786
## 7786     7787
## 7787     7788
## 7788     7789
## 7789     7790
## 7790     7791
## 7791     7792
## 7792     7793
## 7793     7794
## 7794     7795
## 7795     7796
## 7796     7797
## 7797     7798
## 7798     7799
## 7799     7800
## 7800     7801
## 7801     7802
## 7802     7803
## 7803     7804
## 7804     7805
## 7805     7806
## 7806     7807
## 7807     7808
## 7808     7809
## 7809     7810
## 7810     7811
## 7811     7812
## 7812     7813
## 7813     7814
## 7814     7815
## 7815     7816
## 7816     7817
## 7817     7818
## 7818     7819
## 7819     7820
## 7820     7821
## 7821     7822
## 7822     7823
## 7823     7824
## 7824     7825
## 7825     7826
## 7826     7827
## 7827     7828
## 7828     7829
## 7829     7830
## 7830     7831
## 7831     7832
## 7832     7833
## 7833     7834
## 7834     7835
## 7835     7836
## 7836     7837
## 7837     7838
## 7838     7839
## 7839     7840
## 7840     7841
## 7841     7842
## 7842     7843
## 7843     7844
## 7844     7845
## 7845     7846
## 7846     7847
## 7847     7848
## 7848     7849
## 7849     7850
## 7850     7851
## 7851     7852
## 7852     7853
## 7853     7854
## 7854     7855
## 7855     7856
## 7856     7857
## 7857     7858
## 7858     7859
## 7859     7860
## 7860     7861
## 7861     7862
## 7862     7863
## 7863     7864
## 7864     7865
## 7865     7866
## 7866     7867
## 7867     7868
## 7868     7869
## 7869     7870
## 7870     7871
## 7871     7872
## 7872     7873
## 7873     7874
## 7874     7875
## 7875     7876
## 7876     7877
## 7877     7878
## 7878     7879
## 7879     7880
## 7880     7881
## 7881     7882
## 7882     7883
## 7883     7884
## 7884     7885
## 7885     7886
## 7886     7887
## 7887     7888
## 7888     7889
## 7889     7890
## 7890     7891
## 7891     7892
## 7892     7893
## 7893     7894
## 7894     7895
## 7895     7896
## 7896     7897
## 7897     7898
## 7898     7899
## 7899     7900
## 7900     7901
## 7901     7902
## 7902     7903
## 7903     7904
## 7904     7905
## 7905     7906
## 7906     7907
## 7907     7908
## 7908     7909
## 7909    11078
## 7910     7911
## 7911     7912
## 7912     7913
## 7913     7914
## 7914     7915
## 7915     7916
## 7916     7917
## 7917     7918
## 7918     7919
## 7919     7920
## 7920     7921
## 7921     7922
## 7922     7923
## 7923     7924
## 7924     7925
## 7925     7926
## 7926     7927
## 7927     7928
## 7928     7929
## 7929     7930
## 7930     7931
## 7931     7932
## 7932     7933
## 7933     7934
## 7934     7935
## 7935     7936
## 7936     7937
## 7937     7938
## 7938     7939
## 7939     7940
## 7940     7941
## 7941     7942
## 7942     7943
## 7943     7944
## 7944     7945
## 7945     7946
## 7946     7947
## 7947    11110
## 7948     7949
## 7949     7950
## 7950     7951
## 7951     7952
## 7952     7953
## 7953     7954
## 7954     7955
## 7955     7956
## 7956     7957
## 7957     7958
## 7958     7959
## 7959     7960
## 7960     7961
## 7961     7962
## 7962     7963
## 7963     7964
## 7964     7965
## 7965     7966
## 7966     7967
## 7967     7968
## 7968     7969
## 7969     7970
## 7970     7971
## 7971     7972
## 7972     7973
## 7973     7974
## 7974     7975
## 7975     7976
## 7976     7977
## 7977     7978
## 7978     7979
## 7979     7980
## 7980     7981
## 7981     7982
## 7982     7983
## 7983     7984
## 7984     7985
## 7985     7986
## 7986     7987
## 7987     7988
## 7988     7989
## 7989     7990
## 7990     7991
## 7991     7992
## 7992     7993
## 7993     7994
## 7994     7995
## 7995     7996
## 7996     7997
## 7997     7998
## 7998     7999
## 7999     8000
## 8000     8001
## 8001     8002
## 8002     8003
## 8003     8004
## 8004     8005
## 8005     8006
## 8006     8007
## 8007     8008
## 8008     8009
## 8009     8010
## 8010     8011
## 8011     8012
## 8012     8013
## 8013     8014
## 8014     8015
## 8015     8016
## 8016     8017
## 8017     8018
## 8018     8019
## 8019     8020
## 8020     8021
## 8021     8022
## 8022     8023
## 8023     8024
## 8024     8025
## 8025     8026
## 8026     8027
## 8027     8028
## 8028     8029
## 8029     8030
## 8030     8031
## 8031     8032
## 8032     8033
## 8033     8034
## 8034     8035
## 8035     8036
## 8036     8037
## 8037     8038
## 8038     8039
## 8039     8040
## 8040     8041
## 8041     8042
## 8042     8043
## 8043     8044
## 8044     8045
## 8045    11144
## 8046     8047
## 8047     8048
## 8048     8049
## 8049     8050
## 8050     8051
## 8051     8052
## 8052     8053
## 8053     8054
## 8054     8055
## 8055     8056
## 8056     8057
## 8057     8058
## 8058     8059
## 8059     8060
## 8060     8061
## 8061     8062
## 8062     8063
## 8063     8064
## 8064     8065
## 8065     8066
## 8066     8067
## 8067     8068
## 8068     8069
## 8069     8070
## 8070     8071
## 8071     8072
## 8072     8073
## 8073     8074
## 8074     8075
## 8075     8076
## 8076     8077
## 8077     8078
## 8078     8079
## 8079     8080
## 8080     8081
## 8081     8082
## 8082     8083
## 8083     8084
## 8084     8085
## 8085     8086
## 8086     8087
## 8087    10467
## 8088     8089
## 8089     8090
## 8090     8091
## 8091     8092
## 8092     8093
## 8093     8094
## 8094     8095
## 8095     8096
## 8096     8097
## 8097     8098
## 8098     8099
## 8099     8100
## 8100     8101
## 8101     8102
## 8102     8103
## 8103     8104
## 8104     8105
## 8105     8106
## 8106     8107
## 8107     8108
## 8108     8109
## 8109     8110
## 8110     8111
## 8111     8112
## 8112     8113
## 8113     8114
## 8114     8115
## 8115     8116
## 8116     8117
## 8117     8118
## 8118     8119
## 8119     8120
## 8120     8121
## 8121     8122
## 8122     8123
## 8123     8124
## 8124     8125
## 8125     8126
## 8126     8127
## 8127     8128
## 8128     8129
## 8129     8130
## 8130     8131
## 8131     8132
## 8132     8133
## 8133     8134
## 8134     8135
## 8135     8136
## 8136     8137
## 8137     8138
## 8138     8139
## 8139     8140
## 8140     8141
## 8141     8142
## 8142     8143
## 8143     8144
## 8144     8145
## 8145     8146
## 8146     8147
## 8147     8148
## 8148     8149
## 8149     8150
## 8150     8151
## 8151     8152
## 8152     8153
## 8153     8154
## 8154     8155
## 8155     8156
## 8156     8157
## 8157     8158
## 8158    10496
## 8159     8160
## 8160     8161
## 8161     8162
## 8162     8163
## 8163     8164
## 8164     8165
## 8165     8166
## 8166     8167
## 8167     8168
## 8168    10561
## 8169     8170
## 8170     8171
## 8171     8172
## 8172     8173
## 8173     8174
## 8174     8175
## 8175     8176
## 8176     8177
## 8177     8178
## 8178     8179
## 8179     8180
## 8180     8181
## 8181     8182
## 8182     8183
## 8183     8184
## 8184     8185
## 8185     8186
## 8186     8187
## 8187     8188
## 8188     8189
## 8189     8190
## 8190     8191
## 8191     8192
## 8192     8193
## 8193     8194
## 8194     8195
## 8195     8196
## 8196     8197
## 8197     8198
## 8198     8199
## 8199     8200
## 8200     8201
## 8201     8202
## 8202     8203
## 8203     8204
## 8204     8205
## 8205    10692
## 8206     8207
## 8207     8208
## 8208     8209
## 8209     8210
## 8210     8211
## 8211     8212
## 8212     8213
## 8213     8214
## 8214     8215
## 8215     8216
## 8216     8217
## 8217     8218
## 8218     8219
## 8219     8220
## 8220     8221
## 8221     8222
## 8222     8223
## 8223     8224
## 8224    10760
## 8225     8226
## 8226     8227
## 8227     8228
## 8228     8229
## 8229     8230
## 8230     8231
## 8231     8232
## 8232     8233
## 8233     8234
## 8234     8235
## 8235     8236
## 8236     8237
## 8237     8238
## 8238     8239
## 8239     8240
## 8240     8241
## 8241     8242
## 8242     8243
## 8243     8244
## 8244     8245
## 8245     8246
## 8246     8247
## 8247     8248
## 8248     8249
## 8249     8250
## 8250     8251
## 8251     8252
## 8252     8253
## 8253     8254
## 8254     8255
## 8255     8256
## 8256     8257
## 8257     8258
## 8258     8259
## 8259     8260
## 8260     8261
## 8261     8262
## 8262     8263
## 8263     8264
## 8264     8265
## 8265     8266
## 8266     8267
## 8267     8268
## 8268     8269
## 8269     8270
## 8270     8271
## 8271     8272
## 8272     8273
## 8273     8274
## 8274     8275
## 8275     8276
## 8276     8277
## 8277     8278
## 8278     8279
## 8279     8280
## 8280     8281
## 8281     8282
## 8282     8283
## 8283     8284
## 8284     8285
## 8285     8286
## 8286     8287
## 8287     8288
## 8288     8289
## 8289     8290
## 8290     8291
## 8291     8292
## 8292     8293
## 8293     8294
## 8294     8295
## 8295     8296
## 8296     8297
## 8297     8298
## 8298     8299
## 8299     8300
## 8300     8301
## 8301     8302
## 8302     8303
## 8303     8304
## 8304     8305
## 8305     8306
## 8306     8307
## 8307     8308
## 8308     8309
## 8309     8310
## 8310     8311
## 8311     8312
## 8312     8313
## 8313     8314
## 8314    10794
## 8315     8316
## 8316     8317
## 8317     8318
## 8318     8319
## 8319     8320
## 8320     8321
## 8321     8322
## 8322     8323
## 8323     8324
## 8324     8325
## 8325     8326
## 8326     8327
## 8327     8328
## 8328     8329
## 8329     8330
## 8330     8331
## 8331     8332
## 8332     8333
## 8333     8334
## 8334     8335
## 8335    10047
## 8336     8337
## 8337     8338
## 8338     8339
## 8339     8340
## 8340     8341
## 8341     8342
## 8342     8343
## 8343     8344
## 8344     8345
## 8345     8346
## 8346     8347
## 8347     8348
## 8348     8349
## 8349     8350
## 8350     8351
## 8351     8352
## 8352     8353
## 8353     8354
## 8354     8355
## 8355     8356
## 8356     8357
## 8357     8358
## 8358     8359
## 8359     8360
## 8360     8361
## 8361     8362
## 8362     8363
## 8363     8364
## 8364     8365
## 8365     8366
## 8366     8367
## 8367     8368
## 8368     8369
## 8369     8370
## 8370     8371
## 8371     8372
## 8372     8373
## 8373     8374
## 8374     8375
## 8375     8376
## 8376     8377
## 8377    10274
## 8378     8379
## 8379     8380
## 8380     8381
## 8381     8382
## 8382     8383
## 8383     8384
## 8384     8385
## 8385     8386
## 8386     8387
## 8387     8388
## 8388     8389
## 8389     8390
## 8390     8391
## 8391     8392
## 8392     8393
## 8393     8394
## 8394     8395
## 8395     8396
## 8396     8397
## 8397     8398
## 8398     8399
## 8399     8400
## 8400     8401
## 8401     8402
## 8402     8403
## 8403     8404
## 8404     8405
## 8405     8406
## 8406     8407
## 8407     8408
## 8408     8409
## 8409     8410
## 8410     8411
## 8411     8412
## 8412     8413
## 8413     8414
## 8414     8415
## 8415     8416
## 8416     8417
## 8417     8418
## 8418     8419
## 8419     8420
## 8420     8421
## 8421     8422
## 8422     8423
## 8423     8424
## 8424     8425
## 8425     8426
## 8426     8427
## 8427     8428
## 8428     8429
## 8429     8430
## 8430     8431
## 8431     8432
## 8432     8433
## 8433     8434
## 8434     8435
## 8435     8436
## 8436     8437
## 8437     8438
## 8438     8439
## 8439     8440
## 8440    10364
## 8441     8442
## 8442     8443
## 8443     8444
## 8444     8445
## 8445     8446
## 8446     8447
## 8447     8448
## 8448     8449
## 8449     8450
## 8450     8451
## 8451     8452
## 8452     8453
## 8453     8454
## 8454     8455
## 8455     8456
## 8456     8457
## 8457     8458
## 8458     8459
## 8459     8460
## 8460     8461
## 8461     8462
## 8462     8463
## 8463     8464
## 8464     8465
## 8465     8466
## 8466     8467
## 8467     8468
## 8468     8469
## 8469     8470
## 8470     8471
## 8471     8472
## 8472     8473
## 8473     8474
## 8474     8475
## 8475     8476
## 8476     8477
## 8477     8478
## 8478     8479
## 8479     8480
## 8480     8481
## 8481     8482
## 8482     8483
## 8483     8484
## 8484     8485
## 8485     8486
## 8486     8487
## 8487     8488
## 8488     8489
## 8489     8490
## 8490     8491
## 8491     8492
## 8492     8493
## 8493     8494
## 8494     8495
## 8495     8496
## 8496     8497
## 8497     8498
## 8498     8499
## 8499     8500
## 8500     8501
## 8501     8502
## 8502     8503
## 8503     8504
## 8504     8505
## 8505     8506
## 8506     8507
## 8507     8508
## 8508     8509
## 8509     8510
## 8510     8511
## 8511     8512
## 8512     8513
## 8513     8514
## 8514     8515
## 8515     8516
## 8516     8517
## 8517     8518
## 8518     8519
## 8519     8520
## 8520     8521
## 8521     8522
## 8522     8523
## 8523     8524
## 8524     8525
## 8525     8526
## 8526     8527
## 8527     8528
## 8528     8529
## 8529     8530
## 8530     8531
## 8531     8532
## 8532     8533
## 8533     8534
## 8534     8535
## 8535     8536
## 8536     8537
## 8537     8538
## 8538     8539
## 8539     8540
## 8540     8541
## 8541     8542
## 8542     8543
## 8543     8544
## 8544     8545
## 8545     8546
## 8546     8547
## 8547     8548
## 8548     8549
## 8549     8550
## 8550     8551
## 8551     8552
## 8552     8553
## 8553     8554
## 8554     9669
## 8555     8556
## 8556     8557
## 8557     8558
## 8558     8559
## 8559     8560
## 8560     8561
## 8561     8562
## 8562     8563
## 8563     8564
## 8564     8565
## 8565     8566
## 8566     8567
## 8567     8568
## 8568     8569
## 8569     8570
## 8570     8571
## 8571     8572
## 8572     8573
## 8573     8574
## 8574     8575
## 8575     8576
## 8576     8577
## 8577     8578
## 8578     8579
## 8579     8580
## 8580     8581
## 8581     8582
## 8582     8583
## 8583     8584
## 8584     8585
## 8585     8586
## 8586     8587
## 8587     8588
## 8588     8589
## 8589     8590
## 8590     8591
## 8591     8592
## 8592     8593
## 8593     8594
## 8594     8595
## 8595     8596
## 8596     8597
## 8597     8598
## 8598     8599
## 8599     8600
## 8600     8601
## 8601     8602
## 8602     8603
## 8603     8604
## 8604     8605
## 8605     8606
## 8606     8607
## 8607     8608
## 8608     8609
## 8609     8610
## 8610     8611
## 8611     8612
## 8612     8613
## 8613     8614
## 8614     8615
## 8615     8616
## 8616     8617
## 8617     8618
## 8618     8619
## 8619     8620
## 8620     8621
## 8621     9694
## 8622     8623
## 8623     8624
## 8624     8625
## 8625     8626
## 8626     8627
## 8627     8628
## 8628     8629
## 8629     8630
## 8630     8631
## 8631     8632
## 8632     8633
## 8633     8634
## 8634     8635
## 8635     8636
## 8636     8637
## 8637     8638
## 8638     8639
## 8639     8640
## 8640     8641
## 8641     8642
## 8642     8643
## 8643     8644
## 8644     8645
## 8645     8646
## 8646     8647
## 8647     8648
## 8648     8649
## 8649     8650
## 8650     8651
## 8651     8652
## 8652     8653
## 8653     8654
## 8654     8655
## 8655     8656
## 8656     8657
## 8657     8658
## 8658     8659
## 8659     8660
## 8660     8661
## 8661     8662
## 8662     8663
## 8663     8664
## 8664     8665
## 8665     8666
## 8666     8667
## 8667     8668
## 8668     8669
## 8669     8670
## 8670     8671
## 8671     8672
## 8672     8673
## 8673     8674
## 8674     8675
## 8675     8676
## 8676     8677
## 8677     8678
## 8678     8679
## 8679     8680
## 8680     8681
## 8681     8682
## 8682     8683
## 8683     8684
## 8684     8685
## 8685     8686
## 8686     8687
## 8687     8688
## 8688     8689
## 8689     8690
## 8690     8691
## 8691     8692
## 8692     8693
## 8693     8694
## 8694     8695
## 8695     8696
## 8696     8697
## 8697     8698
## 8698     8699
## 8699     8700
## 8700     8701
## 8701     8702
## 8702     8703
## 8703     8704
## 8704     8705
## 8705     8706
## 8706     8707
## 8707     8708
## 8708     9744
## 8709     8710
## 8710     8711
## 8711     8712
## 8712     8713
## 8713     8714
## 8714     8715
## 8715     8716
## 8716     8717
## 8717     8718
## 8718     8719
## 8719     8720
## 8720     8721
## 8721     8722
## 8722     8723
## 8723     8724
## 8724     8725
## 8725     8726
## 8726     8727
## 8727     8728
## 8728     8729
## 8729     8730
## 8730     8731
## 8731     8732
## 8732     8733
## 8733     8734
## 8734     8735
## 8735     8736
## 8736     8737
## 8737     8738
## 8738     8739
## 8739     8740
## 8740     8741
## 8741     8742
## 8742     8743
## 8743     8744
## 8744     8745
## 8745     8746
## 8746     8747
## 8747     8748
## 8748     8749
## 8749     8750
## 8750     8751
## 8751     8752
## 8752     8753
## 8753     8754
## 8754     8755
## 8755     8756
## 8756     8757
## 8757     8758
## 8758     8759
## 8759     8760
## 8760     8761
## 8761     9751
## 8762     8763
## 8763     8764
## 8764     8765
## 8765     8766
## 8766     8767
## 8767     8768
## 8768     8769
## 8769     8770
## 8770     8771
## 8771     8772
## 8772     8773
## 8773     8774
## 8774     8775
## 8775     8776
## 8776     8777
## 8777     8778
## 8778     8779
## 8779     8780
## 8780     8781
## 8781     8782
## 8782     8783
## 8783     8784
## 8784     8785
## 8785     8786
## 8786     8787
## 8787     8788
## 8788     8789
## 8789     8790
## 8790     8791
## 8791     8792
## 8792     8793
## 8793     8794
## 8794     8795
## 8795     8796
## 8796     8797
## 8797     8798
## 8798     8799
## 8799     8800
## 8800     8801
## 8801     8802
## 8802     8803
## 8803     8804
## 8804     8805
## 8805     8806
## 8806     8807
## 8807     8808
## 8808     8809
## 8809     8810
## 8810     8811
## 8811     8812
## 8812     8813
## 8813     8814
## 8814     8815
## 8815     8816
## 8816     8817
## 8817     8818
## 8818     8819
## 8819     8820
## 8820     8821
## 8821     8822
## 8822     8823
## 8823     8824
## 8824     8825
## 8825     8826
## 8826     8827
## 8827     8828
## 8828     8829
## 8829     8830
## 8830     8831
## 8831     8832
## 8832     8833
## 8833     8834
## 8834     8835
## 8835     8836
## 8836     8837
## 8837     8838
## 8838     8839
## 8839     8840
## 8840     8841
## 8841     8842
## 8842     8843
## 8843     8844
## 8844     8845
## 8845     8846
## 8846     8847
## 8847     8848
## 8848     8849
## 8849     8850
## 8850     8851
## 8851     8852
## 8852     8853
## 8853     8854
## 8854     8855
## 8855     8856
## 8856     8857
## 8857     8858
## 8858     8859
## 8859     8860
## 8860     8861
## 8861     8862
## 8862     8863
## 8863     8864
## 8864     8865
## 8865     8866
## 8866     8867
## 8867     8868
## 8868     8869
## 8869     8870
## 8870     8871
## 8871     8872
## 8872     8873
## 8873     8874
## 8874     8875
## 8875     8876
## 8876     8877
## 8877     8878
## 8878     8879
## 8879     8880
## 8880     8881
## 8881     8882
## 8882     8883
## 8883     8884
## 8884     8885
## 8885     8886
## 8886     8887
## 8887     8888
## 8888     8889
## 8889     8890
## 8890     8891
## 8891     8892
## 8892     8893
## 8893     8894
## 8894     8895
## 8895     8896
## 8896     8897
## 8897     8898
## 8898     8899
## 8899     8900
## 8900     9771
## 8901     8902
## 8902     8903
## 8903     8904
## 8904     8905
## 8905     8906
## 8906     8907
## 8907     8908
## 8908     8909
## 8909     8910
## 8910     8911
## 8911     8912
## 8912     8913
## 8913     8914
## 8914     8915
## 8915     8916
## 8916     8917
## 8917     8918
## 8918     8919
## 8919     8920
## 8920     8921
## 8921     8922
## 8922     8923
## 8923     8924
## 8924     8925
## 8925     8926
## 8926     8927
## 8927     8928
## 8928     8929
## 8929     8930
## 8930     9817
## 8931     8932
## 8932     8933
## 8933     8934
## 8934     8935
## 8935     8936
## 8936     8937
## 8937     8938
## 8938     8939
## 8939     8940
## 8940     8941
## 8941     8942
## 8942     8943
## 8943     8944
## 8944     8945
## 8945     8946
## 8946     8947
## 8947     8948
## 8948     8949
## 8949     8950
## 8950     8951
## 8951     8952
## 8952     8953
## 8953     8954
## 8954     8955
## 8955     8956
## 8956     8957
## 8957     8958
## 8958     8959
## 8959     8960
## 8960     8961
## 8961     8962
## 8962     8963
## 8963     8964
## 8964     8965
## 8965     8966
## 8966     8967
## 8967     8968
## 8968     8969
## 8969     8970
## 8970     8971
## 8971     8972
## 8972     8973
## 8973     8974
## 8974     8975
## 8975     8976
## 8976     8977
## 8977     8978
## 8978     8979
## 8979     8980
## 8980     8981
## 8981     8982
## 8982     8983
## 8983     8984
## 8984     8985
## 8985     8986
## 8986     8987
## 8987     8988
## 8988     8989
## 8989     8990
## 8990     8991
## 8991     8992
## 8992     8993
## 8993     8994
## 8994     8995
## 8995     8996
## 8996     8997
## 8997     8998
## 8998     8999
## 8999     9000
## 9000     9001
## 9001     9002
## 9002     9003
## 9003     9004
## 9004     9005
## 9005     9006
## 9006     9007
## 9007     9008
## 9008     9009
## 9009     9010
## 9010     9011
## 9011     9012
## 9012     9013
## 9013     9014
## 9014     9015
## 9015     9016
## 9016     9017
## 9017     9018
## 9018     9019
## 9019     9020
## 9020     9021
## 9021     9022
## 9022     9023
## 9023     9024
## 9024     9025
## 9025     9026
## 9026     9027
## 9027     9028
## 9028     9029
## 9029     9030
## 9030     9031
## 9031     9032
## 9032     9033
## 9033     9034
## 9034     9035
## 9035     9036
## 9036     9037
## 9037     9038
## 9038     9039
## 9039     9040
## 9040     9041
## 9041     9042
## 9042     9043
## 9043     9044
## 9044     9045
## 9045     9046
## 9046     9047
## 9047     9048
## 9048     9049
## 9049     9050
## 9050     9051
## 9051     9052
## 9052     9053
## 9053     9054
## 9054     9055
## 9055     9056
## 9056     9057
## 9057     9058
## 9058     9059
## 9059     9060
## 9060     9061
## 9061     9062
## 9062     9063
## 9063     9064
## 9064     9065
## 9065     9066
## 9066     9067
## 9067     9068
## 9068     9069
## 9069     9070
## 9070     9071
## 9071     9072
## 9072     9073
## 9073     9074
## 9074     9075
## 9075     9076
## 9076     9077
## 9077     9078
## 9078     9079
## 9079     9080
## 9080     9081
## 9081     9082
## 9082     9822
## 9083     9084
## 9084     9085
## 9085     9086
## 9086     9087
## 9087     9088
## 9088     9089
## 9089     9090
## 9090     9091
##                                                                                                                              Name
## 1                                                                                                                      Wii Sports
## 2                                                                                                               Super Mario Bros.
## 3                                                                                                                  Mario Kart Wii
## 4                                                                                                               Wii Sports Resort
## 5                                                                                                        Pokemon Red/Pokemon Blue
## 6                                                                                                                          Tetris
## 7                                                                                                           New Super Mario Bros.
## 8                                                                                                                        Wii Play
## 9                                                                                                       New Super Mario Bros. Wii
## 10                                                                                                                      Duck Hunt
## 11                                                                                                                     Nintendogs
## 12                                                                                                                  Mario Kart DS
## 13                                                                                                    Pokemon Gold/Pokemon Silver
## 14                                                                                                                        Wii Fit
## 15                                                                                                                   Wii Fit Plus
## 16                                                                                                             Kinect Adventures!
## 17                                                                                                             Grand Theft Auto V
## 18                                                                                                  Grand Theft Auto: San Andreas
## 19                                                                                                              Super Mario World
## 20                                                                                   Brain Age: Train Your Brain in Minutes a Day
## 21                                                                                                  Pokemon Diamond/Pokemon Pearl
## 22                                                                                                               Super Mario Land
## 23                                                                                                            Super Mario Bros. 3
## 24                                                                                                             Grand Theft Auto V
## 25                                                                                                    Grand Theft Auto: Vice City
## 26                                                                                                  Pokemon Ruby/Pokemon Sapphire
## 27                                                                                                    Pokemon Black/Pokemon White
## 28                                                                                    Brain Age 2: More Training in Minutes a Day
## 29                                                                                                         Gran Turismo 3: A-Spec
## 30                                                                                                 Call of Duty: Modern Warfare 3
## 31                                                                                        Pokémon Yellow: Special Pikachu Edition
## 32                                                                                                        Call of Duty: Black Ops
## 33                                                                                                            Pokemon X/Pokemon Y
## 34                                                                                                      Call of Duty: Black Ops 3
## 35                                                                                                     Call of Duty: Black Ops II
## 36                                                                                                     Call of Duty: Black Ops II
## 37                                                                                                 Call of Duty: Modern Warfare 2
## 38                                                                                                 Call of Duty: Modern Warfare 3
## 39                                                                                                           Grand Theft Auto III
## 40                                                                                                        Super Smash Bros. Brawl
## 41                                                                                                        Call of Duty: Black Ops
## 42                                                                                                    Animal Crossing: Wild World
## 43                                                                                                                   Mario Kart 7
## 44                                                                                                                         Halo 3
## 45                                                                                                             Grand Theft Auto V
## 46                                                                                           Pokemon HeartGold/Pokemon SoulSilver
## 47                                                                                                                 Super Mario 64
## 48                                                                                                                 Gran Turismo 4
## 49                                                                                                             Super Mario Galaxy
## 50                                                                                      Pokemon Omega Ruby/Pokemon Alpha Sapphire
## 51                                                                                             Super Mario Land 2: 6 Golden Coins
## 52                                                                                                            Grand Theft Auto IV
## 53                                                                                                                   Gran Turismo
## 54                                                                                                            Super Mario 3D Land
## 55                                                                                                                 Gran Turismo 5
## 56                                                                                                 Call of Duty: Modern Warfare 2
## 57                                                                                                            Grand Theft Auto IV
## 58                                                                                                          Super Mario All-Stars
## 59                                                                                              Pokemon FireRed/Pokemon LeafGreen
## 60                                                                                                                 Super Mario 64
## 61                                                                                                                   Just Dance 3
## 62                                                                                                           Call of Duty: Ghosts
## 63                                                                                                                    Halo: Reach
## 64                                                                                                                  Mario Kart 64
## 65                                                                                                        New Super Mario Bros. 2
## 66                                                                                                                         Halo 4
## 67                                                                                                              Final Fantasy VII
## 68                                                                                                           Call of Duty: Ghosts
## 69                                                                                                                   Just Dance 2
## 70                                                                                                                 Gran Turismo 2
## 71                                                                                                 Call of Duty 4: Modern Warfare
## 72                                                                                                            Donkey Kong Country
## 73                                                                                                                      Minecraft
## 74                                                                                                      Animal Crossing: New Leaf
## 75                                                                                                                 Mario Party DS
## 76                                                                                                    The Elder Scrolls V: Skyrim
## 77                                                                                                               Super Mario Kart
## 78                                                                                                                        FIFA 16
## 79                                                                                                                      Wii Party
## 80                                                                                                                         Halo 2
## 81                                                                                                                  Mario Party 8
## 82                                                                                                Pokemon Black 2/Pokemon White 2
## 83                                                                                                                 FIFA Soccer 13
## 84                                                                                                                     The Sims 3
## 85                                                                                                                  GoldenEye 007
## 86                                                                                             Mario & Sonic at the Olympic Games
## 87                                                                                                                Final Fantasy X
## 88                                                                                                             Final Fantasy VIII
## 89                                                                                                       Pokémon Platinum Version
## 90                                                                                                                        Pac-Man
## 91                                                                                         Grand Theft Auto: Liberty City Stories
## 92                                                                                                           Super Mario Galaxy 2
## 93                                                                                                   Star Wars Battlefront (2015)
## 94                                                                                                 Call of Duty: Advanced Warfare
## 95                                                                                           The Legend of Zelda: Ocarina of Time
## 96                                                                                         Crash Bandicoot 2: Cortex Strikes Back
## 97                                                                                                            Super Mario Bros. 2
## 98                                                                                            Super Smash Bros. for Wii U and 3DS
## 99                                                                                                     Call of Duty: World at War
## 100                                                                                                                 Battlefield 3
## 101                                                                                        The Legend of Zelda: Twilight Princess
## 102                                                                                                     Call of Duty: Black Ops 3
## 103                                                                                                                    Just Dance
## 104                                                                                                                 Battlefield 3
## 105                                                                                                    Need for Speed Underground
## 106                                                                                                                      Tekken 3
## 107                                                                                                     Crash Bandicoot 3: Warped
## 108                                                                                                       Super Smash Bros. Melee
## 109                                                                                                                  Mario Kart 8
## 110                                                                                                                     Fallout 4
## 111                                                                                                     Mario Kart: Double Dash!!
## 112                                                                                                                  Just Dance 4
## 113                                                                                                                       FIFA 14
## 114                                                                                                  Need for Speed Underground 2
## 115                                                                                                     Medal of Honor: Frontline
## 116                                                                                                Uncharted 3: Drake's Deception
## 117                                                                                                               Crash Bandicoot
## 118                                                                                                                 Zumba Fitness
## 119                                                                                                                Gears of War 2
## 120                                                                                                    Uncharted 2: Among Thieves
## 121                                                                                                Call of Duty 4: Modern Warfare
## 122                                                                                                                       FIFA 12
## 123                                                                                                             Big Brain Academy
## 124                                                                                                           Red Dead Redemption
## 125                                                                                                                       FIFA 15
## 126                                                                                                   Donkey Kong Country Returns
## 127                                                                                                   The Elder Scrolls V: Skyrim
## 128                                                                                                           The Legend of Zelda
## 129                                                                                                          Assassin's Creed III
## 130                                                                                                          Halo: Combat Evolved
## 131                                                                                                       Pokémon Emerald Version
## 132                                                                                                                Kingdom Hearts
## 133                                                                                                       Pokémon Crystal Version
## 134                                                                                                                  Halo 3: ODST
## 135                                                                                                           Red Dead Redemption
## 136                                                                                                          Super Mario Sunshine
## 137                                                                                          Street Fighter II: The World Warrior
## 138                                                                                                             World of Warcraft
## 139                                                                                                                        Driver
## 140                                                                                                                 Kinect Sports
## 141                                                                                                                Gears of War 3
## 142                                                                                                                  Gears of War
## 143                                                                                           Metal Gear Solid 2: Sons of Liberty
## 144                                                                                                          Sonic the Hedgehog 2
## 145                                                                                      Metal Gear Solid 4: Guns of the Patriots
## 146                                                                                                              Metal Gear Solid
## 147                                                                                                                The Last of Us
## 148                                                                                                             Final Fantasy XII
## 149                                                                                                               LittleBigPlanet
## 150                                                                                Dragon Quest IX: Sentinels of the Starry Skies
## 151                                                                                             LEGO Star Wars: The Complete Saga
## 152                                                                                                               Resident Evil 2
## 153                                                                                                                      Tekken 2
## 154                                                                                                                  Cooking Mama
## 155                                                                                                                       Destiny
## 156                                                                                                                        Tetris
## 157                                                                                                           Assassin's Creed II
## 158                                                                                                             Super Smash Bros.
## 159                                                                                                              Assassin's Creed
## 160                                                                                                           Batman: Arkham City
## 161                                                                                                            Forza Motorsport 3
## 162                                                                                                  Monster Hunter Freedom Unite
## 163                                                                                                           Super Mario Advance
## 164                                                                                                     Mario Kart: Super Circuit
## 165                                                                                                             Super Mario World
## 166                                                                                                               Pokemon Stadium
## 167                                                                                                    Call of Duty: World at War
## 168                                                                                          Crash Bandicoot: The Wrath of Cortex
## 169                                                                                                                     Minecraft
## 170                                                                                                            Final Fantasy XIII
## 171                                                                                                                     Dr. Mario
## 172                                                                                                               Pokemon Pinball
## 173                                                                                                          Assassin's Creed III
## 174                                                                                                              Final Fantasy IX
## 175                                                                                                             Final Fantasy X-2
## 176                                                                                                                Donkey Kong 64
## 177                                                                                                           Assassin's Creed II
## 178                                                                                      Professor Layton and the Curious Village
## 179                                                                                                                Tomb Raider II
## 180                                                                                                               Madden NFL 2004
## 181                                                                                 Dragon Quest VIII: Journey of the Cursed King
## 182                                                                                                                    Diablo III
## 183                                                                                                           Super Mario Bros. 3
## 184                                                                                                       New Super Mario Bros. U
## 185                                                                                                Super Mario Land 3: Wario Land
## 186                                                                                                                FIFA Soccer 13
## 187                                                                                        The Legend of Zelda: Phantom Hourglass
## 188                                                                                     Donkey Kong Country 2: Diddy's Kong Quest
## 189                                                                                                                Tomodachi Life
## 190                                                                                            Mario & Sonic at the Olympic Games
## 191                                                                                                    Medal of Honor: Rising Sun
## 192                                                                                                            Kirby's Dream Land
## 193                                                                                                                     Fable III
## 194                                                                                                Call of Duty: Advanced Warfare
## 195                                                                                                    Microsoft Flight Simulator
## 196                                                                                                                Guitar Hero II
## 197                                                                                                               Resident Evil 5
## 198                                                                                                            Grand Theft Auto V
## 199                                                                                           Grand Theft Auto: Vice City Stories
## 200                                                                                                                FIFA Soccer 11
## 201                                                                                                             Super Mario Bros.
## 202                                                                                                                 Resident Evil
## 203                                                                                                        Tony Hawk's Pro Skater
## 204                                                                                           Super Smash Bros. for Wii U and 3DS
## 205                                                                                                                  Warzone 2100
## 206                                                                                                              Spyro the Dragon
## 207                                                                                                      Link's Crossbow Training
## 208                                                                                              Guitar Hero III: Legends of Rock
## 209                                                                                                                     Fallout 3
## 210                                                              Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness
## 211                                                                                                    Uncharted: Drake's Fortune
## 212                                                                                                                 Madden NFL 06
## 213                                                                                             LEGO Star Wars: The Complete Saga
## 214                                                                                                             Diddy Kong Racing
## 215                                                                                                      Monster Hunter Freedom 3
## 216                                                                                                                     Dr. Mario
## 217                                                                                                                God of War III
## 218                                                                                                StarCraft II: Wings of Liberty
## 219                                                                                                              Assassin's Creed
## 220                                                                                                                       FIFA 15
## 221                                                                                                             Crash Team Racing
## 222                                                                                                                       FIFA 17
## 223                                                                                                           Batman: Arkham City
## 224                                                                                                                      Driver 2
## 225                                                                                                       The Simpsons: Hit & Run
## 226                                                                                                      Tony Hawk's Pro Skater 2
## 227                                                                                                    Animal Crossing: City Folk
## 228                                                                                         The Lord of the Rings: The Two Towers
## 229                                                                                                            Forza Motorsport 4
## 230                                                                                                                   Tomb Raider
## 231                                                                                              Guitar Hero III: Legends of Rock
## 232                                                                                       The Legend of Zelda: A Link to the Past
## 233                                                                                           The Legend of Zelda: The Wind Waker
## 234                                                                                     Mario & Sonic at the Olympic Winter Games
## 235                                                                                                    Luigi's Mansion: Dark Moon
## 236                                                                                                                      Splatoon
## 237                                                                                                                The Last of Us
## 238                                                                                              Guitar Hero III: Legends of Rock
## 239                                                                                                               Madden NFL 2005
## 240                                                                                                                      Pitfall!
## 241                                                                                                                 Madden NFL 07
## 242                                                                                                         Spider-Man: The Movie
## 243                                                                                            Dragon Quest VII: Warriors of Eden
## 244                                                                                        Uncharted: The Nathan Drake Collection
## 245                                                                                                Call of Duty: Advanced Warfare
## 246                                                                                                                    God of War
## 247                                                                                                                 Nintendo Land
## 248                                                                                               Michael Jackson: The Experience
## 249                                                                                                      Tony Hawk's Pro Skater 3
## 250                                                                                     Winning Eleven: Pro Evolution Soccer 2007
## 251                                                                                                The Elder Scrolls IV: Oblivion
## 252                                                                                               Zelda II: The Adventure of Link
## 253                                                                                                   Need for Speed: Most Wanted
## 254                                                                                                       Resistance: Fall of Man
## 255                                                                                                            Sonic the Hedgehog
## 256                                                                                                             Kingdom Hearts II
## 257                                                                                                                       FIFA 14
## 258                                                                                                Call of Duty: Advanced Warfare
## 259                                                                                                                     Asteroids
## 260                                                                                                                      Fable II
## 261                                                                                                             Halo 5: Guardians
## 262                                                                                                          Super Mario 3D World
## 263                                                                                                         Batman: Arkham Asylum
## 264                                                                                                 Assassin's Creed: Revelations
## 265                                                                                                                  Namco Museum
## 266                                                                                               Metal Gear Solid 3: Snake Eater
## 267                                                                                                                        Daxter
## 268                                                                                                Warcraft II: Tides of Darkness
## 269                                                                                          The Legend of Zelda: Ocarina of Time
## 270                                                                                                                FIFA Soccer 06
## 271                                                                                                                   EyeToy Play
## 272                                                                                                    Uncharted 4: A Thief's End
## 273                                                                                                       Gran Turismo 5 Prologue
## 274                                                                                                 Assassin's Creed: Revelations
## 275                                                                                                             Street Fighter IV
## 276                                                                                                                       FIFA 12
## 277                                                                                                  Teenage Mutant Ninja Turtles
## 278                                                                                                                    Excitebike
## 279                                                                                                                       Frogger
## 280                                                                                                               Madden NFL 2003
## 281                                                                                                                    Watch Dogs
## 282                                                                                                                     Half-Life
## 283                                                                                           Super Mario World 2: Yoshi's Island
## 284                                                                                                                FIFA Soccer 07
## 285                                                                                            The Legend of Zelda: Skyward Sword
## 286                                                                                                       Street Fighter II Turbo
## 287                                                                                                                Carnival Games
## 288                                                                                                                     Fallout 4
## 289                                                                                        World of Warcraft: The Burning Crusade
## 290                                                                                                            Fallout: New Vegas
## 291                                                                                                                 God of War II
## 292                                                                                                            Forza Motorsport 2
## 293                                                                                                 World Soccer Winning Eleven 9
## 294                                                                                                            Namco Museum Vol.3
## 295                                                                                                         Tekken Tag Tournament
## 296                                                                                                                     Far Cry 4
## 297                                                                                                                   Star Fox 64
## 298                                                                                                                     Minecraft
## 299                                                                                                                          Golf
## 300                                                                                                                     Fallout 3
## 301                                                                                       Professor Layton and the Diabolical Box
## 302                                                                                                                 Left 4 Dead 2
## 303                                                                                                Namco Museum: 50th Anniversary
## 304                                                                                                              EA Sports Active
## 305                                                                                                       Assassin's Creed: Unity
## 306                                                                                                              Donkey Kong Land
## 307                                                                                                       Tony Hawk's Underground
## 308                                                                                               Assassin's Creed IV: Black Flag
## 309                                                                                                     Monster Hunter 4 Ultimate
## 310                                                                                                                    MotorStorm
## 311                                                                                                   The Elder Scrolls V: Skyrim
## 312                                                                                                                      Tekken 5
## 313                                                                                                            Dragon Warrior III
## 314                                                                                                              Sports Champions
## 315                                                                                                                      NBA 2K16
## 316                                                                                   World Soccer Winning Eleven 8 International
## 317                                                                                 Flash Focus: Vision Training in Minutes a Day
## 318                                                                                                            Namco Museum Vol.1
## 319                                                                                         The Legend of Zelda: Link's Awakening
## 320                                                                                          Mario & Luigi: Bowser's Inside Story
## 321                                                                                                 Big Brain Academy: Wii Degree
## 322                                                                                                             Nintendogs + cats
## 323                                                                                                         Batman: Arkham Knight
## 324                                                                                Mario & Sonic at the London 2012 Olympic Games
## 325                                                                                   LEGO Indiana Jones: The Original Adventures
## 326                                                                                                  Resident Evil Director's Cut
## 327                                                                                                 Ratchet & Clank: Size Matters
## 328                                                                                                               Just Dance 2014
## 329                                                                                                           The Sims: Unleashed
## 330                                                                                                             Super Paper Mario
## 331                                                                                         Harry Potter and the Sorcerer's Stone
## 332                                                                                                      The Witcher 3: Wild Hunt
## 333                                                                                                      Resident Evil 3: Nemesis
## 334                                                                                                     Spyro: Year of the Dragon
## 335                                                                                                              FIFA Soccer 2005
## 336                                                                                                     Pokémon Trading Card Game
## 337                                                                                                                 Battlefield 4
## 338                                                                                                                        MySims
## 339                                                                                                             Friend Collection
## 340                                                                                                      Tony Hawk's Pro Skater 4
## 341                                                                                                  Midnight Club 3: DUB Edition
## 342                                                                                                                 Banjo-Kazooie
## 343                                                                                                        SOCOM: U.S. Navy SEALs
## 344                                                                                                       Guitar Hero: World Tour
## 345                                                                                                                Gran Turismo 6
## 346                                                                                          Jak and Daxter: The Precursor Legacy
## 347                                                                                                                  Pokemon Snap
## 348                                                                                                                FIFA Soccer 10
## 349                                                                                                     Pro Evolution Soccer 2008
## 350                                                                                                          Call of Duty: Ghosts
## 351                                                                                                               Resident Evil 4
## 352                                                                                                     Tom Clancy's The Division
## 353                                                                                                        Star Wars: Battlefront
## 354                                                                                                        Doom II: Hell on Earth
## 355                                                                                                       The Simpsons: Road Rage
## 356                                                                                           Cooking Mama 2: Dinner With Friends
## 357                                                                                                               Luigi's Mansion
## 358                                                                                                     Star Wars: Battlefront II
## 359                                                                                                                WWF SmackDown!
## 360                                                                                                    Croc: Legend of the Gobbos
## 361                                                                                        Grand Theft Auto: Liberty City Stories
## 362                                                                                                                   The Getaway
## 363                                                                                     Tomb Raider III: Adventures of Lara Croft
## 364                                                                                              James Bond 007: Agent Under Fire
## 365                                                                                                LEGO Star Wars: The Video Game
## 366                                                                                                                 Battlefield 4
## 367                                                                                                                FIFA Soccer 11
## 368                                                                                                   Rugrats in Paris: The Movie
## 369                                                                                                        Spyro 2: Ripto's Rage!
## 370                                                                                                                   Left 4 Dead
## 371                                                                                     Mario & Sonic at the Olympic Winter Games
## 372                                                                                                               Resident Evil 5
## 373                                                                           Donkey Kong Country 3: Dixie Kong's Double Trouble!
## 374                                                                                                 Assassin's Creed: Brotherhood
## 375                                                                                                                       Kung Fu
## 376                                                                                                         Batman: Arkham Asylum
## 377                                                                                                               Clubhouse Games
## 378                                                                                                              FIFA Soccer 2004
## 379                                                                                                  Star Wars Battlefront (2015)
## 380                                                                                                    Battlefield: Bad Company 2
## 381                                                                                                          Guitar Hero: On Tour
## 382                                                                                                       Assassin's Creed: Unity
## 383                                                                                                                     Far Cry 3
## 384                                                                                                              Monster Hunter 4
## 385                                                                                                                   Borderlands
## 386                                                                                                                      Tekken 4
## 387                                                                                                                 Battlefield 4
## 388                                                                                                             LittleBigPlanet 2
## 389                                                                                                            Grand Theft Auto 2
## 390                                                                                                             Final Fantasy III
## 391                                                                                                                  Spider-Man 2
## 392                                                                                                                      F-1 Race
## 393                                                                                                              FIFA Soccer 2003
## 394                                                                                                                    Crash Bash
## 395                                                                                                    LEGO Batman: The Videogame
## 396                                                                                          Metal Gear Solid V: The Phantom Pain
## 397                                                                                            The Legend of Zelda: Spirit Tracks
## 398                                                                                                                  WWF War Zone
## 399                                                                                            The Legend of Zelda: Majora's Mask
## 400                                                                                       Professor Layton and the Unwound Future
## 401                                                                                                    Rugrats: Search For Reptar
## 402                                                                                               Assassin's Creed IV: Black Flag
## 403                                                                             English Training: Have Fun Improving Your Skills!
## 404                                                                                                     James Bond 007: Nightfire
## 405                                                                                                               Ratchet & Clank
## 406                                                                                                                 Mario Party 9
## 407                                                                                    Star Wars Episode III: Revenge of the Sith
## 408                                                                                                                     Max Payne
## 409                                                                                 The Lord of the Rings: The Return of the King
## 410                                                                                                    Assassin's Creed Syndicate
## 411                                                                                                                       Destiny
## 412                                                                                                     True Crime: Streets of LA
## 413                                                                                                                     Wii Music
## 414                                                                                                            Gran Turismo (PSP)
## 415                                                                                                              Monster Hunter X
## 416                                                                                                                        Tekken
## 417                                                                                                                       FIFA 16
## 418                                                                                                                    L.A. Noire
## 419                                                                                                                 Madden NFL 16
## 420                                                                                                     Yokai Watch 2 Ganso/Honke
## 421                                                                                                      007: Tomorrow Never Dies
## 422                                                                                                                      Baseball
## 423                                                                                                               Killer Instinct
## 424                                                                                              WWF SmackDown! 2: Know Your Role
## 425                                                                                                Crisis Core: Final Fantasy VII
## 426                                                                                                 God of War: Chains of Olympus
## 427                                                                                          Dragon Quest VI: Maboroshi no Daichi
## 428                                                                                                                 Dance Central
## 429                                                                                                              Enter the Matrix
## 430                                                                                                             Super Mario Maker
## 431                                                                                                            Fallout: New Vegas
## 432                                                                                                    LEGO Batman: The Videogame
## 433                                                                                                                 Rhythm Heaven
## 434                                                                                                Ace Combat 04: Shattered Skies
## 435                                                                                             Club Penguin: Elite Penguin Force
## 436                                                                                                               Animal Crossing
## 437                                                                                                    LEGO Batman: The Videogame
## 438                                                                                                                    Sonic Rush
## 439                                                                                                               Resident Evil 6
## 440                                                                                             Halo: The Master Chief Collection
## 441                                                                                                                FIFA Soccer 08
## 442                                                                                                                    Spider-Man
## 443                                                                                               Need for Speed III: Hot Pursuit
## 444                                                                                                     Star Wars Episode I Racer
## 445                                                                                                     Personal Trainer: Cooking
## 446                                                                                                The Elder Scrolls IV: Oblivion
## 447                                                                                                             Dragon Warrior IV
## 448                                                                                                                    Heavy Rain
## 449                                                                                                                 Mass Effect 2
## 450                                                                                                                       FIFA 15
## 451                                                                                                        Dragon Ball Z: Budokai
## 452                                                                                                               Madden NFL 2002
## 453                                                                                                        World Class Track Meet
## 454                                                                                                                 Borderlands 2
## 455                                                                                    The Legend of Zelda: A Link Between Worlds
## 456                                                                                                                   Donkey Kong
## 457                                                                                                            The Sims: Vacation
## 458                                                                                                                 Mass Effect 3
## 459                                                                                                                 Kung Fu Panda
## 460                                                                                                                     Far Cry 3
## 461                                                                                                                   Epic Mickey
## 462                                                                                                                  Saints Row 2
## 463                                                                                                                        Rayman
## 464                                                                                                                    Killzone 2
## 465                                                                                                    Tom Clancy's Splinter Cell
## 466                                                                                                      Mike Tyson's Punch-Out!!
## 467                                                                                                WWE SmackDown! Shut Your Mouth
## 468                                                                                                Gears of War: Ultimate Edition
## 469                                                                                                                      NBA 2K13
## 470                                                                                            Dragon Ball Z: Budokai Tenkaichi 3
## 471                                                                                                    wwe Smackdown vs. Raw 2006
## 472                                                                                                Middle-Earth: Shadow of Mordor
## 473                                                                                                                      Star Fox
## 474                                                                                                         The Sims: Livin Large
## 475                                                                                   World Soccer Winning Eleven 6 International
## 476                                                                                                                 Devil May Cry
## 477                                                                                          Animal Crossing: Happy Home Designer
## 478                                                                                                    Battlefield: Bad Company 2
## 479                                                                                                                    The Sims 4
## 480                                                                                                   Star Wars: The Old Republic
## 481                                                                                                                  Sonic Heroes
## 482                                                                                                        Kirby Super Star Ultra
## 483                                                                                                     Hitman 2: Silent Assassin
## 484                                                                                                             Street Fighter IV
## 485                                                                                                                  Wave Race 64
## 486                                                                                                     SOCOM II: U.S. Navy SEALs
## 487                                                                                                   WWE SmackDown! vs. RAW 2006
## 488                                                                                                                      inFAMOUS
## 489                                                                                                            Pac-Man Collection
## 490                                                                                                                   Mass Effect
## 491                                                                                                       WarioWare: Smooth Moves
## 492                                                                                                        Cooking Mama: Cook Off
## 493                                                                                           Super Mario World 2: Yoshi's Island
## 494                                                                                                                       FIFA 14
## 495                                                                                                                     Titanfall
## 496                                                                                                    Sonic Mega Collection Plus
## 497                                                                                                        Sega Superstars Tennis
## 498                                                                                   World Soccer Winning Eleven 7 International
## 499                                                                                                   Need for Speed: Most Wanted
## 500                                                                                                              Hot Shots Golf 3
## 501                                                                                                     Call of Duty: Finest Hour
## 502                                                                                                               Zumba Fitness 2
## 503                                                                                                                 Syphon Filter
## 504                                                                                                                Imagine: Babyz
## 505                                                                                                             Colin McRae Rally
## 506                                                                                                          Call of Duty: Ghosts
## 507                                                                                                                 Madden NFL 13
## 508                                                                                              The Elder Scrolls III: Morrowind
## 509                                                                                                                 Mortal Kombat
## 510                                                                                                                        F-Zero
## 511                                                                                                                 Yoshi's Story
## 512                                                                                                  Command & Conquer: Red Alert
## 513                                                                                                 Skylanders: Spyro's Adventure
## 514                                                                                                                       FIFA 16
## 515                                                                                                 Assassin's Creed: Brotherhood
## 516                                                                                                                      BioShock
## 517                                                                                                                 Madden NFL 10
## 518                                                                                                                Medal of Honor
## 519                                                                                                        WWE SmackDown! vs. Raw
## 520                                                                                                                 Metroid Prime
## 521                                                                                                                  Finding Nemo
## 522                                                                                                                          Myst
## 523                                                                                                   Need for Speed: Hot Pursuit
## 524                                                                                                     Imagine: Fashion Designer
## 525                                                                                            WWE SmackDown! Here Comes the Pain
## 526                                                                                                Star Wars: The Force Unleashed
## 527                                                                                                             Yoshi's Island DS
## 528                                                                                                                Hot Shots Golf
## 529                                                                                                                    Killzone 3
## 530                                                                                                                  A Bug's Life
## 531                                                                                                  WWF SmackDown! Just Bring It
## 532                                                                                            Dragon Quest V: Tenkuu no Hanayome
## 533                                                                                                         Mortal Kombat Trilogy
## 534                                                                                                                 Battlefield 3
## 535                                                                                                                    NBA Street
## 536                                                                                         Professor Layton and the Last Specter
## 537                                                                                                            Monster Hunter Tri
## 538                                                                                                                        Jak II
## 539                                                                                                          inFAMOUS: Second Son
## 540                                                                                               Ratchet & Clank: Going Commando
## 541                                                                                                                      Tekken 6
## 542                                                                                                                      The Sims
## 543                                                                                                    Sonic and the Secret Rings
## 544                                                                                                         Saints Row: The Third
## 545                                                                                                               Missile Command
## 546                                                                                                                   Mario Paint
## 547                                                                                               Assassin's Creed IV: Black Flag
## 548                                                                                                             Pokémon Stadium 2
## 549                                                                                                                       Metroid
## 550                                                                                                                    L.A. Noire
## 551                                                                                                                Call of Duty 3
## 552                                                                                       The Legend of Zelda: A Link to the Past
## 553                                                                                                            Onimusha: Warlords
## 554                                                                                                               Mortal Kombat X
## 555                                                                                                                   Mario Party
## 556                                                                                                                 Madden NFL 12
## 557                                                                                       LEGO Star Wars II: The Original Trilogy
## 558                                                                                                                 Madden NFL 11
## 559                                                                                      Mario vs. Donkey Kong: Mini-Land Mayhem!
## 560                                                                                                                       Skate 3
## 561                                                                                                           Burnout 3: Takedown
## 562                                                                                                        Yokai Watch 2 Shinuchi
## 563                                                                                                         Need for Speed: Shift
## 564                                                                                                          Final Fantasy XIII-2
## 565                                                                                                                 Mortal Kombat
## 566                                                                                                   Call Of Duty 2: Big Red One
## 567                                                                                                       Guitar Hero: World Tour
## 568                                                                                                                Medal of Honor
## 569                                                                                                                         Fable
## 570                                                                                                                Hannah Montana
## 571                                                                                                    Tom Clancy's Splinter Cell
## 572                                                                                                             Skylanders Giants
## 573                                                                                                         Medal of Honor Heroes
## 574                                                                                            Super Mario Bros.: The Lost Levels
## 575                                                                                              Star Wars: Shadows of the Empire
## 576                                                                                             LEGO Star Wars: The Complete Saga
## 577                                                                                                  Midnight Club: Street Racing
## 578                                                                                                   Pac-Man: Adventures in Time
## 579                                                                                                                     Halo Wars
## 580                                                                                                         God of War Collection
## 581                                                                                                                  ESPN NFL 2K5
## 582                                                                                                        Mario Strikers Charged
## 583                                                                                                                Medal of Honor
## 584                                                                                                                FIFA Soccer 10
## 585                                                                                                                      NBA 2K12
## 586                                                                                                                   Style Savvy
## 587                                                                                       Harry Potter and the Chamber of Secrets
## 588                                                                                        Super Mario All-Stars: Limited Edition
## 589                                                                                                               Streets of Rage
## 590                                                                                                                FIFA Soccer 09
## 591                                                                                  Ratchet & Clank Future: Tools of Destruction
## 592                                                                                                                 NBA Live 2005
## 593                                                                                                               LittleBigPlanet
## 594                                                                                                         Killzone: Shadow Fall
## 595                                                                                     Ghostbusters: The Video Game (DS Version)
## 596                                                                                                      Monster Hunter Freedom 2
## 597                                                                                                    WWE SmackDown vs. RAW 2007
## 598                                                                                              Ratchet & Clank: Up Your Arsenal
## 599                                                                                                                   Art Academy
## 600                                                                                                           Dragon Age: Origins
## 601                                                                                                                 Madden NFL 08
## 602                                                                                                      Sonic Adventure 2 Battle
## 603                                                                                                             Dragon Warrior II
## 604                                                                                                                 Madden NFL 13
## 605                                                                                                             Pokémon Colosseum
## 606                                                                                                                   Deca Sports
## 607                                                                                                                 Madden NFL 09
## 608                                                                                                                Space Invaders
## 609                                                                                                                    Crazy Taxi
## 610                                                                                                                  Perfect Dark
## 611                                                                                                                    Game Party
## 612                                                                                                                Dragon Warrior
## 613                                                                                                            Tomb Raider (2013)
## 614                                                                                                     Marvel: Ultimate Alliance
## 615                                                                                                PES 2009: Pro Evolution Soccer
## 616                                                                                                                 Mario Party 2
## 617                                                                                                         Saints Row: The Third
## 618                                                 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 619                                                                                                  LEGO Harry Potter: Years 1-4
## 620                                                                                                Mortal Kombat: Deadly Alliance
## 621                                                                                                                  Resistance 2
## 622                                                                                                                          Pure
## 623                                                                                              Tomb Raider: The Last Revelation
## 624                                                                                                                      NBA 2K13
## 625                                                                                                                     Rock Band
## 626                                                                                                                      NBA 2K14
## 627                                                                                                                 Mario Party 4
## 628                                                                                                                  uDraw Studio
## 629                                                                                                    Midnight Club: Los Angeles
## 630                                                                                                               Final Fantasy V
## 631                                                                                                         Final Fantasy Tactics
## 632                                                                                                               Twisted Metal 2
## 633                                                                                              Halo: Combat Evolved Anniversary
## 634                                                                                           Need for Speed Carbon: Own the City
## 635                                                                                                         The Sims: Bustin' Out
## 636                                                                                                     Riven: The Sequel to Myst
## 637                                                                                             Tom Clancy's Rainbow Six: Vegas 2
## 638                                                                                                               Sonic Adventure
## 639                                                                                                                    Ice Hockey
## 640                                                                                                     pro evolution soccer 2011
## 641                                                                                                      Dragon Ball Z: Budokai 2
## 642                                                                                                              ATV Offroad Fury
## 643                                                                                                                   Dino Crisis
## 644                                                                                                                     Minecraft
## 645                                                                                                     Need for Speed: ProStreet
## 646                                                                                                                 Madden NFL 16
## 647                                                                                                                   Tetris Plus
## 648                                                                                                                 Pro Wrestling
## 649                                                                                                                Theme Hospital
## 650                                                                                      Frogger's Adventures: Temple of the Frog
## 651                                                                                                         Need for Speed (2015)
## 652                                                                                                                 Zumba Fitness
## 653                                                                                   LEGO Indiana Jones: The Original Adventures
## 654                                                                                                                      Monopoly
## 655                                                                                                        Batman: Arkham Origins
## 656                                                                                                                   Dead Island
## 657                                                                                                                   Guitar Hero
## 658                                                                                             LEGO Star Wars: The Complete Saga
## 659                                                                                                 Kinect: Disneyland Adventures
## 660                                                                                                               WCW/nWo Revenge
## 661                                                                                                                    Bloodborne
## 662                                                                                                                      NBA 2K15
## 663                                                                                                                 Madden NFL 11
## 664                                                                                           Yu-Gi-Oh! The Duelists of the Roses
## 665                                                                                                                 Madden NFL 08
## 666                                                                                                                   Half-Life 2
## 667                                                                                                               The Incredibles
## 668                                                                                                     Tony Hawk's Underground 2
## 669                                                                                                                 Madden NFL 10
## 670                                                                                                     Kinect Sports: Season Two
## 671                                                                                                          Kirby's Dream Land 2
## 672                                                                                                  LEGO Harry Potter: Years 1-4
## 673                                                                                                           Donkey Kong Land II
## 674                                                                                                       Dragon Warrior Monsters
## 675                                                                                                    Midnight Club: Los Angeles
## 676                                                                                                         Skylanders SWAP Force
## 677                                                                                                     WWE SmackDown vs Raw 2008
## 678                                                                                                              My Fitness Coach
## 679                                                                                              Resident Evil - Code: Veronica X
## 680                                                                                                                    The Sims 3
## 681                                                                                         The Legend of Zelda: Majora's Mask 3D
## 682                                                                                                                      NBA 2K16
## 683                                                                                                               Just Dance Kids
## 684                                                                                                                  Mario Tennis
## 685                                                                                                              Grand Theft Auto
## 686                                                                                         James Bond 007: Everything or Nothing
## 687                                                                                                            WarioWare Touched!
## 688                                                                                                   Need For Speed: High Stakes
## 689                                                                                                                Chrono Trigger
## 690                                                                                                               Cool Boarders 3
## 691                                                                                                      LEGO Marvel Super Heroes
## 692                                                                                                                  Guild Wars 2
## 693                                                                                              Pokemon Ranger: Shadows of Almia
## 694                                                                                                                   Dead Island
## 695                                                                                                                Tomb Raider II
## 696                                                                                                         God of War: Ascension
## 697                                                                                                  Need for Speed Underground 2
## 698                                                                                                     Pro Evolution Soccer 2010
## 699                                                                                                               Just Dance 2015
## 700                                                                                                           Yokai Watch Busters
## 701                                                                                                                   Mario Bros.
## 702                                                                                                                FIFA Soccer 09
## 703                                                                                                Star Wars: The Force Unleashed
## 704                                                                                                                 Borderlands 2
## 705                                                                                                 TOCA Touring Car Championship
## 706                                                                                                     Paper Mario: Sticker Star
## 707                                                                                           Sonic's Ultimate Genesis Collection
## 708                                                                                               Super Monkey Ball: Banana Blitz
## 709                                                                                                Kirby: Nightmare in Dream Land
## 710                                                                                                                  Wario Land 4
## 711                                                                                              Guitar Hero III: Legends of Rock
## 712                                                                                                                Call of Duty 3
## 713                                                                                                               Resident Evil 4
## 714                                                                                                                     Minecraft
## 715                                                                                                 Onimusha 2: Samurai's Destiny
## 716                                                                                                               Cool Boarders 2
## 717                                                                                           Paper Mario: The Thousand-Year Door
## 718                                                                                                                 Madden NFL 12
## 719                                                                                                            Monster Hunter Tri
## 720                                                                                                       Dissidia: Final Fantasy
## 721                                                                                                                 Sonic Advance
## 722                                                                                                          Spyro: Season of Ice
## 723                                                                              Teenage Mutant Ninja Turtles II: The Arcade Game
## 724                                                                                   LEGO Indiana Jones: The Original Adventures
## 725                                                                                                     Dance Dance Revolution X2
## 726                                                                                                             New Super Luigi U
## 727                                                                                           Prince of Persia: The Sands of Time
## 728                                                                                                                 Scribblenauts
## 729                                                                                      The Legend of Zelda: Link's Awakening DX
## 730                                                                                                   Need for Speed: Hot Pursuit
## 731                                                                                                                    BioShock 2
## 732                                                                                               Assassin's Creed IV: Black Flag
## 733                                                                            Devil May Cry 3: Dante's Awakening Special Edition
## 734                                                                                                                   Rock Band 2
## 735                                                                                                                       Frogger
## 736                                                                                                                Guitar Hero II
## 737                                                                                                                  Wario Land 3
## 738                                                                                                     Pro Yakyuu Family Stadium
## 739                                                                                                               Sonic Unleashed
## 740                                                                                          High School Musical: Makin' the Cut!
## 741                                                                                                     Pro Evolution Soccer 2012
## 742                                                                                                                    Saints Row
## 743                                                                                        Star Wars: Knights of the Old Republic
## 744                                                                                                          Kirby's Pinball Land
## 745                                                                                                           Donkey Kong Country
## 746                                                                                                            Hitman: Absolution
## 747                                                                                                     Yu-Gi-Oh: Duel Monsters 4
## 748                                                                                                            ATV Offroad Fury 2
## 749                                                                                                            Forza Motorsport 5
## 750                                                                                                                 Madden NFL 25
## 751                                                                                                                Pokemon Ranger
## 752                                                                                                 Mario & Luigi: Superstar Saga
## 753                                                                                                            Final Fantasy XIII
## 754                                                                                                     Star Wars: Rogue Squadron
## 755                                                                                                                        Tennis
## 756                                                                                                         The Sims: House Party
## 757                                                                                           Your Shape featuring Jenny McCarthy
## 758                                                                                                               Syphon Filter 2
## 759                                                                                               Tom Clancy's Rainbow Six: Siege
## 760                                                                                                                    Volleyball
## 761                                                                                                                       FIFA 15
## 762                                                                                                Call of Duty: Roads to Victory
## 763                                                                                    Super Mario RPG: Legend of the Seven Stars
## 764                                                                                                                       Mahjong
## 765                                                                                                                   R.C. Pro-Am
## 766                                                                                                                  SimCity 2000
## 767                                                                                                                  Demon Attack
## 768                                                                                                Dance Dance Revolution Extreme
## 769                                                                                                                     Tetris DS
## 770                                                                                                 Final Fantasy Tactics Advance
## 771                                                                                                               Far Cry: Primal
## 772                                                                                                   Toy Story 3: The Video Game
## 773                                                                                                             Final Fantasy III
## 774                                                                                                             Kirby's Epic Yarn
## 775                                                                                                         Project Gotham Racing
## 776                                                                                                                          Golf
## 777                                                                                                                      NBA 2K12
## 778                                                                                                                   Borderlands
## 779                                                                                                        Tony Hawk's Pro Skater
## 780                                                                                                PES 2009: Pro Evolution Soccer
## 781                                                                                                 Need for Speed: Hot Pursuit 2
## 782                                                                                                              Mario Sports Mix
## 783                                                                                                                     Rock Band
## 784                                                                                                            Dynasty Warriors 4
## 785                                                                                                                 Mortal Kombat
## 786                                                                                                                  Parasite Eve
## 787                                                                                              Scooby-Doo! Night of 100 Frights
## 788                                                                                       Project Gotham Racing (JP weekly sales)
## 789                                                                                             Need for Speed: Most Wanted 5-1-0
## 790                                                                                                                      Portal 2
## 791                                                                                            Devil May Cry 3: Dante's Awakening
## 792                                                                                                                Derby Stallion
## 793                                                                                                                   Dead Rising
## 794                                                                                                                  Finding Nemo
## 795                                                                                                                      NBA 2K11
## 796                                                                                                             Wipeout: The Game
## 797                                                                                                              The Sims 2: Pets
## 798                                                                                                         Battlefield: Hardline
## 799                                                                                                Metal Gear Solid: Peace Walker
## 800                                                                                                  World of Warcraft: Cataclysm
## 801                                                                                                                 Tetris Worlds
## 802                                                                                                    Need For Speed: Undercover
## 803                                                                                         Dance Dance Revolution: Hottest Party
## 804                                                                                                                 Mario Party 5
## 805                                                                                     Ghostbusters: The Video Game (DS Version)
## 806                                                                                                                Sim Theme Park
## 807                                                                                                       Warcraft: Orcs & Humans
## 808                                                                                                                       Skate 3
## 809                                                                                                   Spec Ops: Airborne Commando
## 810                                                                                                Kingdom Hearts: Birth by Sleep
## 811                                                                                                           UFC 2009 Undisputed
## 812                                                                                                                    Dark Souls
## 813                                                                                            Yu-Gi-Oh! The Eternal Duelist Soul
## 814                                                                                                     Need for Speed: ProStreet
## 815                                                                                                                    The Sims 3
## 816                                                                                        Tom Clancy's Splinter Cell: Conviction
## 817                                                                                 Pokemon Mystery Dungeon: Red/Blue Rescue Team
## 818                                                                                                               The Incredibles
## 819                                                                                                        R4: Ridge Racer Type 4
## 820                                                                                                                SoulCalibur II
## 821                                                                                                     Mario & Luigi: Dream Team
## 822                                                                                                     Need for Speed: ProStreet
## 823                                                                                                                Carnival Games
## 824                                                                                                                      NBA 2K14
## 825                                                                                     Pokémon Mystery Dungeon: Blue Rescue Team
## 826                                                                                                         Sonic Mega Collection
## 827                                                                                                                    Diablo III
## 828                                                                                                                       NBA Jam
## 829                                                                                                PGR4 - Project Gotham Racing 4
## 830                                                                                                     Kingdom Hearts 358/2 Days
## 831                                                                                                               Dance Central 2
## 832                                                                                               Rayman Raving Rabbids: TV Party
## 833                                                                                      SOCOM: U.S. Navy SEALs: Combined Assault
## 834                                                                     Peter Jackson's King Kong: The Official Game of the Movie
## 835                                                                                                           Donkey Kong Country
## 836                                                                                                       Need for Speed: The Run
## 837                                                                                                                 Madden NFL 15
## 838                                                                                                 1080°: TenEighty Snowboarding
## 839                                                                                                                  Just Dance 3
## 840                                                                                                                 NBA Live 2004
## 841                                                                                                                    Dead Space
## 842                                                                                                                Call of Duty 2
## 843                                                                                                                 Madden NFL 15
## 844                                                                                                                 Forza Horizon
## 845                                                                                                                   TouchMaster
## 846                                                                                                     Tom Clancy's The Division
## 847                                                                                                      LEGO Marvel Super Heroes
## 848                                                                                                        Fire Emblem: Awakening
## 849                                                                                                                     DriveClub
## 850                                                                                                       Super Street Fighter II
## 851                                                                                                 Mortal Kombat vs. DC Universe
## 852                                                                                                     Tenchu: Stealth Assassins
## 853                                                                                                                        Tennis
## 854                                                                                       Harry Potter and the Chamber of Secrets
## 855                                                                                       Harry Potter and the Chamber of Secrets
## 856                                                                                                                       SimCity
## 857                                                                                                                 Battlefield 4
## 858                                                                                                               Resident Evil 6
## 859                                                                                                       Dragon Age: Inquisition
## 860                                                                                                      Sonic Classic Collection
## 861                                                                                                    Spyro: Enter the Dragonfly
## 862                                                                                                    Call of Duty: World at War
## 863                                                                                                               Devil May Cry 2
## 864                                                                                                              Burnout Paradise
## 865                                                                                                   E.T.: The Extra Terrestrial
## 866                                                                                                             BioShock Infinite
## 867                                                                                                      Hot Shots Golf: Open Tee
## 868                                                                                                                     Rad Racer
## 869                                                                                                                        Soccer
## 870                                                                                                            Kirby Squeak Squad
## 871                                                                                               Tom Clancy's Rainbow Six: Vegas
## 872                                                                                                                       Destiny
## 873                                                                                                              Crash Nitro Kart
## 874                                                                                                 Grand Theft Auto: San Andreas
## 875                                                                                                        Star Wars: Dark Forces
## 876                                                                                                             NBA Street Vol. 2
## 877                                                                                                              Def Jam Vendetta
## 878                                                                                                                FIFA Soccer 09
## 879                                                                                                 Who wants to be a millionaire
## 880                                                                                                Scooby Doo and the Cyber Chase
## 881                                                                                                                      Alleyway
## 882                                                                                                      Dragon Ball Z: Budokai 3
## 883                                                                                                                    Jet Moto 2
## 884                                                                                                      Tom Clancy's Ghost Recon
## 885                                                                                                                 X-Men Legends
## 886                                                                                                        Batman: Arkham Origins
## 887                                                                                                       Guitar Hero: World Tour
## 888                                                                                                              Mortal Kombat II
## 889                                                                                                              Virtua Fighter 2
## 890                                                                                                                     Tetris DX
## 891                                                                                                 Mortal Kombat vs. DC Universe
## 892                                                                                                                    Watch Dogs
## 893                                                                                                          Mario Super Sluggers
## 894                                                                                                            Tomb Raider (2013)
## 895                                                                                           The Legend of Zelda: Oracle of Ages
## 896                                                                                                         Need for Speed: Shift
## 897                                                                                                                      Monopoly
## 898                                                                                                                   Red Faction
## 899                                                                                                        The Sims: Makin' Magic
## 900                                                                                                                  MX Unleashed
## 901                                                                                                            PaRappa The Rapper
## 902                                                                                                              Toy Story Mania!
## 903                                                                                                                 Mario Party 3
## 904                                                                                                Star Wars: The Force Unleashed
## 905                                                                                                                  Game Party 2
## 906                                                                                                       Destiny: The Taken King
## 907                                                                                            LEGO Star Wars III: The Clone Wars
## 908                                                                                     Star Wars Rogue Leader: Rogue Squadron II
## 909                                                                                                                   Max Payne 3
## 910                                                                                                         Need for Speed Rivals
## 911                                                                                                                 Madden NFL 09
## 912                                                                                                                   Yokai Watch
## 913                                                                                       Ratchet & Clank Future: A Crack in Time
## 914                                                                                                  Yu-Gi-Oh! Forbidden Memories
## 915                                                                                                      Mortal Kombat: Deception
## 916                                                                                                              Hot Shots Golf 2
## 917                                                                           Medal of Honor: European Assault (All Region sales)
## 918                                                                                                                     WCW Nitro
## 919                                                                                                 High School Musical: Sing It!
## 920                                                                                                           Star Fox Adventures
## 921                                                                                                                     FIFA 2000
## 922                                                                                                            Dynasty Warriors 3
## 923                                                                                                   Donkey Kong Country Returns
## 924                                                                                        The Legend of Zelda: Oracle of Seasons
## 925                                                                                                                 Madden NFL 06
## 926                                                                                                                       Shrek 2
## 927                                                                                                         The Legend of Dragoon
## 928                                                                                                        Turok 2: Seeds of Evil
## 929                                                                                                                      SingStar
## 930                                                                                                             LittleBigPlanet 3
## 931                                                                                                                 NBA Live 2002
## 932                                                                                                              Phineas and Ferb
## 933                                                                                                                  Chrono Cross
## 934                                                                                                          GoldenEye 007 (2010)
## 935                                                                                                      Mario Party: Island Tour
## 936                                                                                                                         Jak 3
## 937                                                                                                       Rayman Raving Rabbids 2
## 938                                                                                             Kingdom Hearts: Chain of Memories
## 939                                                                                                                       Pinball
## 940                                                                                                                    inFAMOUS 2
## 941                                                                                               Gran Turismo Concept 2001 Tokyo
## 942                                                                                                                 Demon's Souls
## 943                                                                                                              NCAA Football 06
## 944                                                                                                             Hey You, Pikachu!
## 945                                                                                  2 Games in 1: Sonic Advance & ChuChu Rocket!
## 946                                                                                          World of Warcraft: Mists of Pandaria
## 947                                                                                                                      Jet Moto
## 948                                                                                                                  Just Cause 3
## 949                                                                                                                Secret of Mana
## 950                                                                                                                The Orange Box
## 951                                                                                                                    Air Combat
## 952                                                                                                          Kirby: Triple Deluxe
## 953                                                                                                              Sonic & Knuckles
## 954                                                                                                                  Namco Museum
## 955                                                                                                            The Sims: Hot Date
## 956                                                                                                   Metroid Prime 3: Corruption
## 957                                                                                         Dragon Quest VI: Realms of Revelation
## 958                                                                                                               The Evil Within
## 959                                                                                               DDRMAX2: Dance Dance Revolution
## 960                                                                                                                    Crazy Taxi
## 961                                                                                                              Virtua Fighter 4
## 962                                                                                                        Sly 2: Band of Thieves
## 963                                                                                                       Guitar Hero: World Tour
## 964                                                                                                               Sonic Advance 2
## 965                                                                                                                 Madden NFL 07
## 966                                                                                                                      NBA 2K11
## 967                                                                                                              NFL GameDay 2000
## 968                                                                                                     Call of Duty: Black Ops 3
## 969                                                                                                        Disney's The Lion King
## 970                                                                                                             Beyond: Two Souls
## 971                                                                                                              Kinect Star Wars
## 972                                                                                                              Midnight Club II
## 973                                                                                                  Dragon Quest Monsters: Joker
## 974                                                                                            SpongeBob SquarePants: SuperSponge
## 975                                                                                                     The Getaway: Black Monday
## 976                                                                                      Professor Layton and the Mask of Miracle
## 977                                                                                                                  Just Cause 2
## 978                                                                                                                Dragon's Dogma
## 979                                                                                           The Legend of Zelda: The Wind Waker
## 980                                                                                                          50 Cent: Bulletproof
## 981                                                                                                 High School Musical: Sing It!
## 982                                                                                                                   Wii Party U
## 983                                                                                                                 Madden NFL 25
## 984                                                                                                              Final Fantasy II
## 985                                                                                                  Kirby 64: The Crystal Shards
## 986                                                                                                               Dead or Alive 3
## 987                                                                                                           UFC 2009 Undisputed
## 988                                                                                                   Metroid II: Return of Samus
## 989                                                                                                                  WWF Attitude
## 990                                                                                               The SpongeBob SquarePants Movie
## 991                                                                                                                    Golden Sun
## 992                                                                                                          Sonic the Hedgehog 3
## 993                                                                                                                    Kid Icarus
## 994                                                                                                         Def Jam: Fight for NY
## 995                                                                                                      Tom Clancy's Ghost Recon
## 996                                                                                                            State of Emergency
## 997                                                                                                             BioShock Infinite
## 998                                                                                                            Hitman: Absolution
## 999                                           2 Games in 1 Double Pack: The Incredibles / Finding Nemo: The Continuing Adventures
## 1000                                                                                                    Call of Duty: Black Ops 3
## 1001                                                                                                   The Urbz: Sims in the City
## 1002                                                                                                               FIFA Soccer 08
## 1003                                                                                                       Star Wars: Starfighter
## 1004                                                                                                              Madden NFL 2000
## 1005                                                                                                               Kingdom Hearts
## 1006                                                                                                       Star Wars: Battlefront
## 1007                                                                                                         Pro Evolution Soccer
## 1008                                                                                                                    Crackdown
## 1009                                                                                                                        Yoshi
## 1010                                                                                                             Disney's Aladdin
## 1011                                                                                                            Kirby's Adventure
## 1012                                                                                                  Cooking Mama 3: Shop & Chop
## 1013                                                                                                     Dance Dance Revolution X
## 1014                                                                                2 Games in 1: Disney Princess & The Lion King
## 1015                                                                                      Star Wars Episode I: The Phantom Menace
## 1016                                                                                      Xenosaga Episode I: Der Wille zur Macht
## 1017                                                                                                                     Portal 2
## 1018                                                                                                       The Beatles: Rock Band
## 1019                                                                                                           Forza Motorsport 6
## 1020                                                                                                                 Sonic Colors
## 1021                                                                                                                  Cruis'n USA
## 1022                                                                                                                Madden NFL 99
## 1023                                                                                                                   Diablo III
## 1024                                                                                                      Uncharted: Golden Abyss
## 1025                                                                                                                      Destiny
## 1026                                                                                                                   SSX Tricky
## 1027                                                                                                                    Overwatch
## 1028                                                                                                            Twisted Metal III
## 1029                                                                                        Harry Potter and the Sorcerer's Stone
## 1030                                                                                                              Disney Infinity
## 1031                                                                                          Crash Bandicoot: The Huge Adventure
## 1032                                                                                                                   Dishonored
## 1033                                                Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 1034                                                                                                              The Order: 1886
## 1035                                                                                                     The Elder Scrolls Online
## 1036                                                                                      Call of Duty: World at War Final Fronts
## 1037                                                                                                             Imagine: Teacher
## 1038                                                                                               Call of Duty: Modern Warfare 3
## 1039                                                                                                              Madden NFL 2005
## 1040                                                                                             Star Ocean: Till The End of Time
## 1041                                                                                        The Sims 3: Late Night Expansion Pack
## 1042                                                                                                                 Game Party 3
## 1043                                                                                   Toy Story 2: Buzz Lightyear to the Rescue!
## 1044                                                                                                              Deal or No Deal
## 1045                                                                                                 Ace Combat 5: The Unsung War
## 1046                                                                                                   Need for Speed Underground
## 1047                   Kanshuu Nippon Joushikiryoku Kentei Kyoukai: Imasara Hito ni wa Kikenai Otona no Joushikiryoku Training DS
## 1048                                                                                                                Tetris Worlds
## 1049                                                                                                Cabela's Big Game Hunter 2010
## 1050                                                                                                                     The Crew
## 1051                                                                                                               FIFA Soccer 10
## 1052                                                                                                                       We Ski
## 1053                                                                                                       Personal Trainer: Math
## 1054                                                                                                  Kirby's Return to Dreamland
## 1055                                                                                                              Super Puyo Puyo
## 1056                                                                                                   Ben 10: Protector of Earth
## 1057                                                                                                             NCAA Football 07
## 1058                                                                                                     SOCOM 3: U.S. Navy SEALs
## 1059                                                                                                                     NBA 2K15
## 1060                                                                                                                 Saints Row 2
## 1061                                                                                                                Saints Row IV
## 1062                                                                                                           Jampack Winter '99
## 1063                                                                                                          Dragon Age: Origins
## 1064                                                                                                                      FIFA 16
## 1065                                                                                                      WCW vs. nWo: World Tour
## 1066                                                                                                              WCW/NWO Thunder
## 1067                                                                                        Harry Potter and the Sorcerer's Stone
## 1068                                                                                                   Need For Speed: Undercover
## 1069                                                                                            Dragon Ball Z: The Legacy of Goku
## 1070                                                                                                   Sid Meier's Civilization V
## 1071                                                                                                              Resident Evil 4
## 1072                                                                                         Call of Duty Black Ops: Declassified
## 1073                                                                                     Star Wars Battlefront: Renegade Squadron
## 1074                                                                  World Championship Poker: Featuring Howard Lederer - All In
## 1075                                                                                                               NFL GameDay 98
## 1076                                                                                               LEGO Batman 2: DC Super Heroes
## 1077                                                                                                               Yoshi's Cookie
## 1078                                                                                                                  Time Crisis
## 1079                                                                                                          The Sims: Superstar
## 1080                                                                                   Star Wars The Clone Wars: Lightsaber Duels
## 1081                                                                                                                       MySims
## 1082                                                                                                               Metroid Fusion
## 1083                                                                                          Shaun White Snowboarding: Road Trip
## 1084                                                                                                                        SSX 3
## 1085                                                                                                             Big Beach Sports
## 1086                                                                                                              Madden NFL 2001
## 1087                                                                                                          Fight Night Round 3
## 1088                                                                                                                        Knack
## 1089                                                                                                    Star Wars: Battlefront II
## 1090                                                                                                           Disney's DuckTales
## 1091                                                                                                     Tony Hawk's Pro Skater 3
## 1092                                                                                                               Monsters, Inc.
## 1093                                                                                             StarCraft II: Heart of the Swarm
## 1094                                                                                                 PGR: Project Gotham Racing 2
## 1095                                                                                                                   Spy Hunter
## 1096                                                                                                           NCAA Football 2004
## 1097                                                                              SpongeBob SquarePants: Battle for Bikini Bottom
## 1098                                                                                                                  Dying Light
## 1099                                                                                                               Heavenly Sword
## 1100                                                                                 Street Fighter II': Special Champion Edition
## 1101                                                                                                                          SSX
## 1102                                                                                                                  Max Payne 3
## 1103                                                                                                                  NBA Ballers
## 1104                                                                                                        Need for Speed Carbon
## 1105                                                                                                                NBA Live 2003
## 1106                                                                                             Dragon Ball Z: Budokai Tenkaichi
## 1107                                                                                                                  Ms. Pac-Man
## 1108                                                                                                                Mario Party 6
## 1109                                                                                                                Super Scope 6
## 1110                                                                                                                  Go Vacation
## 1111                                                                                           Dragon Quest V: Tenkuu no Hanayome
## 1112                                                                                                                  Army of Two
## 1113                                                                                      Dragon Quest IV: Chapters of the Chosen
## 1114                                                                                                   Kirby & the Amazing Mirror
## 1115                                                                                LEGO Pirates of the Caribbean: The Video Game
## 1116                                                                                                                      Dig Dug
## 1117                                                                                                     Tom Clancy's Rainbow Six
## 1118                                                                                                            Ghosts 'n Goblins
## 1119                                                                                                    Tiger Woods PGA Tour 2003
## 1120                                                                                               NBA Live 06 (All region sales)
## 1121                                                                                             Prince of Persia: Warrior Within
## 1122                                                                                                                  Kinectimals
## 1123                                                                                                                   Until Dawn
## 1124                                                                                                                 ESPN NFL 2K5
## 1125                                                                                                                  Viva Pinata
## 1126                                                                                                                       Pikmin
## 1127                                                                                                      Call of Duty: Black Ops
## 1128                                                                                                            Sonic Generations
## 1129                                                                                                    Tiger Woods PGA Tour 2004
## 1130                                                                                                                   Ape Escape
## 1131                                                                                                                     NBA 2K15
## 1132                                                                                                           NCAA Football 2005
## 1133                                                                                                                 Just Cause 2
## 1134                                                                                                                    Rock Band
## 1135                                                                        Tony Hawk's American Wasteland (Old all region sales)
## 1136                                                                                                                         Rage
## 1137                                                                                                           Mario Hoops 3 on 3
## 1138                                                                                                               Kirby Air Ride
## 1139                                                                                                                   Sled Storm
## 1140                                                                                                    Pokemon Battle Revolution
## 1141                                                                                                                 NFL Street 2
## 1142                                                                                                       Gears of War: Judgment
## 1143                                                                                                                     Baseball
## 1144                                                                                                      Yu-Gi-Oh! Duel Monsters
## 1145                                                                                                         Super Mario Strikers
## 1146                                                                                                         Buzz! The Music Quiz
## 1147                                                                                            SpongeBob's Atlantis SquarePantis
## 1148                                                                                                                    Far Cry 4
## 1149                                                                                      Dance Dance Revolution: Hottest Party 2
## 1150                                                                                                 Moshi Monsters: Moshling Zoo
## 1151                                                                                                                  Dollar Dash
## 1152                                                                                                                    Far Cry 2
## 1153                                                                                                         F-1 World Grand Prix
## 1154                                                                                                                   River Raid
## 1155                                                                                                                  Silent Hill
## 1156                                                                                   Dragon Quest V: Hand of the Heavenly Bride
## 1157                                                                                                                 No Man's Sky
## 1158                                                                                                                 Sonic Heroes
## 1159                                                                                                                 ESPN NBA 2K5
## 1160                                                                                                                       Diablo
## 1161                                                                                       The Legend of Zelda: Twilight Princess
## 1162                                                                                                                    Soul Edge
## 1163                                                                                                              Devil May Cry 4
## 1164                                                                                                                  Mario Bros.
## 1165                                                                                                    Pro Evolution Soccer 2008
## 1166                                                                                                               SoulCalibur IV
## 1167                                                                                                 LEGO Harry Potter: Years 1-4
## 1168                                                                                                                  NASCAR 2000
## 1169                                                                                                   Wolfenstein: The New Order
## 1170                                                                                                    Carnival Games: Mini Golf
## 1171                                                                                                 Guitar Hero: On Tour Decades
## 1172                                                                                                               MySims Kingdom
## 1173                                                                                                            Jampack Summer 2K
## 1174                                                                                                  Need for Speed: Most Wanted
## 1175                                                                                                                Guitar Hero 5
## 1176                                                                                           High School Musical 3: Senior Year
## 1177                                                                                       Kingdom Hearts 3D: Dream Drop Distance
## 1178                                                                                                    Hannah Montana: Music Jam
## 1179                                                                                    Pokemon Mystery Dungeon: Explorers of Sky
## 1180                                                                                                     Spyro 2: Season of Flame
## 1181                                                                                                    Pro Evolution Soccer 2010
## 1182                                                                                                           NCAA Football 2002
## 1183                                                                                                       Conflict: Desert Storm
## 1184                                                                                                                Mario Party 7
## 1185                                                                                                    Pro Evolution Soccer 2013
## 1186                                                                                                               Smuggler's Run
## 1187                                                                                                          Fight Night Round 3
## 1188                                                                                                         Donkey Kong Classics
## 1189                                                                                                                Twisted Metal
## 1190                                                                                                               Dark Souls III
## 1191                                                                                                                  Final Fight
## 1192                                                                                                      Dragon Quest Monsters 2
## 1193                                                                                             Pokemon Pinball: Ruby & Sapphire
## 1194                                                                                                     LEGO Marvel Super Heroes
## 1195                                                                                                                     Mafia II
## 1196                                                                                                                   Dishonored
## 1197                                                                                                                     Stuntman
## 1198                                                                                                   Tom Clancy's Rainbow Six 3
## 1199                                                                                               Active Life: Outdoor Challenge
## 1200                                                                                                                   BioShock 2
## 1201                                                                                                 007: The World is not Enough
## 1202                                                                                                 Spider-Man 2: Enter: Electro
## 1203                                                                                                                   Watch Dogs
## 1204                                                                                            Star Wars: The Force Unleashed II
## 1205                                                                                         Ni no Kuni: Wrath of the White Witch
## 1206                                                                                              Command & Conquer: Tiberian Sun
## 1207                                                                                                        LEGO Battles: Ninjago
## 1208                                                                                                               Mario Party 10
## 1209                                                                                                                Dead Rising 3
## 1210                                                                                       Resident Evil: The Umbrella Chronicles
## 1211                                                                                                            Fire Emblem Fates
## 1212                                                                                                                   Dark Cloud
## 1213                                                                                              Warcraft III: The Frozen Throne
## 1214                                                                                 Tom Clancy's Ghost Recon Advanced Warfighter
## 1215                                                                                                  Disney Fairies: Tinker Bell
## 1216                                                                                                            MVP Baseball 2005
## 1217                                                                                                             Die Hard Trilogy
## 1218                                                                                                   Call of Duty: Black Ops II
## 1219                                                                                                          Fight Night Round 4
## 1220                                                                                                               MySims Kingdom
## 1221                                                                                                            The Simpsons Game
## 1222                                                                                                              Mortal Kombat 3
## 1223                                                                                                               NFL GameDay 99
## 1224                                                                                 Call of Duty: Modern Warfare: Reflex Edition
## 1225                                                                                                                      FIFA 17
## 1226                                                                                                   Mario Golf: Toadstool Tour
## 1227                                                                                                 Tiger Woods 99 PGA Tour Golf
## 1228                                                                                         Donkey Kong Country: Tropical Freeze
## 1229                                                                                                                 Dead Space 2
## 1230                                                                                                               Sonic Rivals 2
## 1231                                                                                                               Knockout Kings
## 1232                                                                                                   The Simpsons Skateboarding
## 1233                                                                                                                    NASCAR 98
## 1234                                                                                                                      F1 Race
## 1235                                                                                                                      Xevious
## 1236                                                                                                                    NASCAR 99
## 1237                                                                                                                NBA Live 2000
## 1238                                                                                                                     Mafia II
## 1239                                                                                                               Call of Duty 3
## 1240                                                                                                          Super Monkey Ball 2
## 1241                                                                                                              Pac-Man World 2
## 1242                                                                                                                Madden NFL 15
## 1243                                                                                                Sonic & Sega All-Stars Racing
## 1244                                                                                           LEGO Star Wars III: The Clone Wars
## 1245                                                                                                        Football Manager 2012
## 1246                                                                                                             Puzzle & Dragons
## 1247                                                                                                                   Mega Man 2
## 1248                                                                                                           Simpsons Wrestling
## 1249                                                                                                                  NBA Live 98
## 1250                                                                                                            The Simpsons Game
## 1251                                                                                                                     Monopoly
## 1252                                                                                                               SoulCalibur II
## 1253                                                                                                                 Resistance 3
## 1254                                                                                                      Tokyo Xtreme Racer Zero
## 1255                                                                                            Final Fantasy XIV: A Realm Reborn
## 1256                                                                                                                    NFL Blitz
## 1257                                                                                                               Red Faction II
## 1258                                                                                                          Super Scribblenauts
## 1259                                                                                                              Madden NFL 2001
## 1260                                                                                                                 WWF No Mercy
## 1261                                                                                                                  Ice Climber
## 1262                                                                                                                     Sonic CD
## 1263                                                                        Ninja Hattori Kun: Ninja wa Shuugyou Degogiru no Maki
## 1264                                                                                                                Dead Rising 2
## 1265                                                                                                                  Rock Band 2
## 1266                                                                                                                Pac-Man World
## 1267                                                                                                     Disney Sing It: Pop Hits
## 1268                                                                                            Final Fantasy: Crystal Chronicles
## 1269                                                                                                    Medal of Honor: Frontline
## 1270                                                                                                                Madden NFL 09
## 1271                                                                                 Drawn To Life: SpongeBob SquarePants Edition
## 1272                                                                                                                  Banjo-Tooie
## 1273                                                                                                           Buzz! The BIG Quiz
## 1274                                                                                                       007: Quantum of Solace
## 1275                                                                                                                   The Sims 3
## 1276                                                                                         New Play Control! Mario Power Tennis
## 1277                                                                                                      Bratz: Forever Diamondz
## 1278                                                                                         Dirge of Cerberus: Final Fantasy VII
## 1279                                                                                                           Nintendo World Cup
## 1280                                                                                                        WWF WrestleMania 2000
## 1281                                                                                                                Wario Land II
## 1282                                                                                                                Mass Effect 2
## 1283                                                                                                    Major League Baseball 2K5
## 1284                                                                                                             Fight Night 2004
## 1285                                                                                 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1286                                                                                                         Imagine: Master Chef
## 1287                                                                                             Assassin's Creed III: Liberation
## 1288                                                                                                               SoulCalibur IV
## 1289                                                                                                                   Mario Golf
## 1290                                                                                                              Disney Princess
## 1291                                                                                                          Fight Night Round 3
## 1292                                                                                               Metal Gear Rising: Revengeance
## 1293                                                                                                               Chrono Trigger
## 1294                                                                                            Star Wars: The Force Unleashed II
## 1295                                                                                           The House of the Dead 2 & 3 Return
## 1296                                                                                              Disney Princess: Magical Jewels
## 1297                                                                                                      LittleBigPlanet PS Vita
## 1298                                                                                                                    Xenogears
## 1299                                                                                              The SpongeBob SquarePants Movie
## 1300                                                                                     Tom Clancy's Ghost Recon: Future Soldier
## 1301                                                                                                     Battlefield: Bad Company
## 1302                                                                                                      Midway Arcade Treasures
## 1303                                                                                                                       Wall-E
## 1304                                                                                                               Triple Play 99
## 1305                                                                                                                    Homefront
## 1306                                                                                                            Super Monkey Ball
## 1307                                                                                                                  Donkey Kong
## 1308                                                                                                              Mortal Kombat 4
## 1309                                                                                                     Mario Superstar Baseball
## 1310                                                                                                                Mass Effect 3
## 1311                                                                                               LEGO Batman 2: DC Super Heroes
## 1312                                                                                                   Medal of Honor: Warfighter
## 1313                                                                                                             WCW vs the World
## 1314                                                                                  SNK vs. Capcom: The Match of the Millennium
## 1315                                                                                                         LEGO City Undercover
## 1316                                                                                                      Onimusha 3: Demon Siege
## 1317                                                                                                                   Diablo III
## 1318                                                                                                        Batman: Arkham Knight
## 1319                                                                                                                     BioShock
## 1320                                                                                                            Red Dead Revolver
## 1321                                                                                                                    Anno 2070
## 1322                                                                                                      Resident Evil: Outbreak
## 1323                                                                                                                 Smarty Pants
## 1324                                                                                                                   Tamagotchi
## 1325                                                                                                           4 Nin uchi Mahjong
## 1326                                                                                                                Dragon Ball Z
## 1327                                                                                                Game de Hakken!! Tamagotchi 2
## 1328                                                                                                              Namco Museum 64
## 1329                                                                                                     Hasbro Family Game Night
## 1330                                                                                               Dragon Quest Monsters: Joker 2
## 1331                                                                       Tony Hawk's American Wasteland (Weekly american sales)
## 1332                                                                                                                My Word Coach
## 1333                                                                                                            Hello Kitty Party
## 1334                                                                                                                 SingStar Pop
## 1335                                                                                                                 Sonic Rivals
## 1336                                                                                                               SimCity (2013)
## 1337                                                                                                             Kirby Super Star
## 1338                                                                                                                    Far Cry 4
## 1339                                                                                                    WWE SmackDown vs Raw 2008
## 1340                                                                                                              Kinect Joy Ride
## 1341                                                                                                        Rayman Raving Rabbids
## 1342                                                                                                        Need for Speed Rivals
## 1343                                                                                                    Tiger Woods PGA Tour 2005
## 1344                                                                                                                 Dead Space 2
## 1345                                                                                                           NCAA Football 2003
## 1346                                                                                                  Frogger 2: Swampy's Revenge
## 1347                                                                                                              Disney Infinity
## 1348                                                                                LEGO Indiana Jones 2: The Adventure Continues
## 1349                                                                                          Sonic's Ultimate Genesis Collection
## 1350                                                                                             Tiger Woods PGA Tour 09 All-Play
## 1351                                                                                                           Disney's DuckTales
## 1352                                                                                        Classic NES Series: Super Mario Bros.
## 1353                                                                                                             Triple Play 2000
## 1354                                                                                           Dragon Quest VII: Warriors of Eden
## 1355                                                                                                     Cabela's Big Game Hunter
## 1356                                                                                                          UFC Undisputed 2010
## 1357                                                                                          NBA Live 06 (Weekly american sales)
## 1358                                                                                          The Legend of Zelda: The Minish Cap
## 1359                                                                                                                   NFL Street
## 1360                                                                                                            Sonic Generations
## 1361                                                                                                                Super Metroid
## 1362                                                                                                Pro Yakyuu Family Stadium '87
## 1363                                                                                                                   Dead Space
## 1364                                                                                                       Resident Evil (Remake)
## 1365                                                                                                             Inazuma Eleven 2
## 1366                                                                                                           Tomb Raider (2013)
## 1367                                                                                      LEGO Star Wars II: The Original Trilogy
## 1368                                                                                                  Toy Story 3: The Video Game
## 1369                                                                                                          Fight Night Round 4
## 1370                                                                                               LEGO Star Wars: The Video Game
## 1371                                                                                                     Injustice: Gods Among Us
## 1372                                                                                                                Madden NFL 15
## 1373                                                                                                       Disney's The Lion King
## 1374                                                                                                                  Ridge Racer
## 1375                                                                                                             Metroid: Other M
## 1376                                                                                                          Knockout Kings 2000
## 1377                                                                                                      Gran Turismo 4 Prologue
## 1378                                                                                                         Twisted Metal: Black
## 1379                                                                                               NASCAR 2005: Chase for the Cup
## 1380                                                                                                      Call of Duty: Black Ops
## 1381                                                                                                        Spider-Man: The Movie
## 1382                                                                                                   Need For Speed: Undercover
## 1383                                                                                                                      2Xtreme
## 1384                                                                                                                    Far Cry 2
## 1385                                                                                                              Sonic Advance 3
## 1386                                                                                                            Final Fantasy III
## 1387                                                                                                                Battlefield 4
## 1388                                                                                                          Colin McRae Rally 3
## 1389                                                                                                              Madden NFL 2002
## 1390                                                                                                                  Doom (2016)
## 1391                                                                                            Final Fantasy XII: Revenant Wings
## 1392                                                                                                     Bakugan: Battle Brawlers
## 1393                                                                                                    Deus Ex: Human Revolution
## 1394                                                                                                                      NBA Jam
## 1395                                                                      Teenage Mutant Ninja Turtles III: The Manhattan Project
## 1396                                                                                                           Dynasty Warriors 5
## 1397                                                                                         Hannah Montana: Spotlight World Tour
## 1398                                                                                                                      WWE '13
## 1399                                                                                                    Deus Ex: Human Revolution
## 1400                                                                                                    True Crime: Streets of LA
## 1401                                                                                                                   The Sims 2
## 1402                                                                                                                  Paper Mario
## 1403                                                                                                Bravely Default: Flying Fairy
## 1404                                                                                                                    Titanfall
## 1405                                                                                                     Duke Nukem: Time to Kill
## 1406                                                                                                            Persona 4: Golden
## 1407                                                                                                                Dead Rising 2
## 1408                                                                                                   Hasbro Family Game Night 2
## 1409                                                                                           Disney Princess: Enchanted Journey
## 1410                                                                                                               Gardening Mama
## 1411                                                                                                   Dave Mirra Freestyle BMX 2
## 1412                                                                                                      Need for Speed: The Run
## 1413                                                                                  LEGO Indiana Jones: The Original Adventures
## 1414                                                                                                      Assassin's Creed: Rogue
## 1415                                                                                                                Ridge Racer 7
## 1416                                                                  A Collection of Activision Classic Games for the Atari 2600
## 1417                                                                                                              Forza Horizon 2
## 1418                                                                                                     MotorStorm: Pacific Rift
## 1419                                                                                                                 Sonic Colors
## 1420                                                                     Star Wars Knights of the Old Republic II: The Sith Lords
## 1421                                                                                                 LEGO Harry Potter: Years 1-4
## 1422                                                                                                      Pocket Monsters Stadium
## 1423                                                                                                                     NBA 2K15
## 1424                                                                                                   Tom Clancy's Ghost Recon 2
## 1425                                                                                                 Crash Bandicoot 2: N-Tranced
## 1426                                                                                                             Burnout Paradise
## 1427                                                                                                                SingStar Abba
## 1428                                                                                                                      Gradius
## 1429                                                                                      Dragon Quest III: Soshite Densetsu e...
## 1430                                                                                                                    Centipede
## 1431                                                                                                           Yoshi's New Island
## 1432                                                                                                            Ryse: Son of Rome
## 1433                                                                                                               Dead to Rights
## 1434                                                                                                 LEGO Harry Potter: Years 5-7
## 1435                                                                                      Marvel vs. Capcom 3: Fate of Two Worlds
## 1436                                                                                               Dance Dance Revolution (Japan)
## 1437                                                                                                                      F1 2010
## 1438                                                                                                                Madden NFL 98
## 1439                                                                                                               FIFA Soccer 09
## 1440                                                                                                              Namco Museum DS
## 1441                                                                                                               FIFA Soccer 08
## 1442                                                                                             Grand Theft Auto: Chinatown Wars
## 1443                                                                                                                    Alan Wake
## 1444                                                                                                     Battlefield: Bad Company
## 1445                                                                                                              Mortal Kombat X
## 1446                                                                                                             Samurai Warriors
## 1447                                                                                                      The Simpsons: Hit & Run
## 1448                                                                                                              Devil May Cry 4
## 1449                                                                                            Tom Clancy's Rainbow Six: Vegas 2
## 1450                                                                                                       Monster Hunter Freedom
## 1451                                                                                                                     Crysis 2
## 1452                                                                                                                SaGa Frontier
## 1453                                                                                                               SingStar Party
## 1454                                                                                                               FIFA Soccer 08
## 1455                                                                                  The ICO & Shadow of the Colossus Collection
## 1456                                                                                                                   Test Drive
## 1457                                                                                              Mario & Luigi: Partners in Time
## 1458                                                                                               Lost Planet: Extreme Condition
## 1459                                                                                                              Mortal Kombat 3
## 1460                                                                                                                       Doom 3
## 1461                                                                                                      Donkey Kong Jungle Beat
## 1462                                                                                                        Need for Speed Carbon
## 1463                                                                                           Max Payne 2: The Fall of Max Payne
## 1464                                                                                               Command & Conquer: Red Alert 2
## 1465                                                                                                            MVP Baseball 2004
## 1466                                                                                                    WWE SmackDown vs Raw 2008
## 1467                                                                     Ratchet & Clank: Up Your Arsenal (Weekly american sales)
## 1468                                                                                                  Your Shape: Fitness Evolved
## 1469                                                                                                                         Rage
## 1470                                                                                                        Skylanders SWAP Force
## 1471                                                                                                                     NBA 2K14
## 1472                                                                                                        Spider-Man: The Movie
## 1473                                                                                                                 WWF War Zone
## 1474                                                                                                       Tony Hawk's Pro Skater
## 1475                                                                                                        The Sims: Bustin' Out
## 1476                                                                                                             Triple Play 2001
## 1477                                                                                                      Metroid Prime 2: Echoes
## 1478                                                                                                          UFC Undisputed 2010
## 1479                                                                                            Final Fantasy X / X-2 HD Remaster
## 1480                                                                                                                     Corvette
## 1481                                                                                                  Petz Wild Animals: Dolphinz
## 1482                                                                                               Pokemon Ranger: Guardian Signs
## 1483                                                                                               Middle-Earth: Shadow of Mordor
## 1484                                                                                            Need for Speed Underground Rivals
## 1485                                                                                                   LEGO Batman: The Videogame
## 1486                                                                                                                Dark Souls II
## 1487                                                                                    World of Warcraft: Wrath of the Lich King
## 1488                                                                                                            Kingdom Hearts II
## 1489                                                                                                     The LEGO Movie Videogame
## 1490                                                                                                         TOCA 2: Touring Cars
## 1491                                                                                                                     Gyromite
## 1492                                                                                                                      NFL 2K3
## 1493                                                                                                               Fighting Force
## 1494                                                                               Mega Man Battle Network 4: Red Sun / Blue Moon
## 1495                                                                                                     MAG: Massive Action Game
## 1496                                                                                                                Madden NFL 97
## 1497                                                                                                                       Cars 2
## 1498                                                                                                            Skylanders Giants
## 1499                                                                                                   LEGO Batman: The Videogame
## 1500                                                                                                TNN Motor Sports Hardcore 4x4
## 1501                                                                                                           IHRA Drag Racing 2
## 1502                                                                                                       The Beatles: Rock Band
## 1503                                                                                                                     Tekken 6
## 1504                                                                                                                  [Prototype]
## 1505                                                                                                              Deal or No Deal
## 1506                                                                                                                   Madagascar
## 1507                                                                                                          Rugrats Studio Tour
## 1508                                                                                                                 LEGO Battles
## 1509                                                                                                     Pitfall II: Lost Caverns
## 1510                                                                                                             Turok: Evolution
## 1511                                                                                    High School Musical 3: Senior Year DANCE!
## 1512                                                                                                   Gold's Gym: Cardio Workout
## 1513                                                                                                          Burnout 3: Takedown
## 1514                                                                                            PDC World Championship Darts 2008
## 1515                                                                                                   Yu-Gi-Oh! The Sacred Cards
## 1516                                                                                                                     Crysis 2
## 1517                                                                                                                  NBA Live 07
## 1518                                                                                                                Saints Row IV
## 1519                                                                                                                SingStar '80s
## 1520                                                                                                                EA Playground
## 1521                                                                                                                 Test Drive 5
## 1522                                                                                                             Romancing SaGa 3
## 1523                                                                                                           EA Sports Active 2
## 1524                                                                                                                Digimon World
## 1525                                                                                                      Rise of the Tomb Raider
## 1526                                                                                                        Need for Speed Carbon
## 1527                                                                                                         Yoshi's Woolly World
## 1528                                                                               Mega Man Battle Network 3 Blue / White Version
## 1529                                                                                                                  FIFA Street
## 1530                                                                                                           Resident Evil Zero
## 1531                                                                                                  Need for Speed: Most Wanted
## 1532                                                                                              Tom Clancy's Rainbow Six: Siege
## 1533                                                                       Pirates of the Caribbean: The Curse of the Black Pearl
## 1534                                                                                                                 Transformers
## 1535                                                                                                       Guitar Hero: Aerosmith
## 1536                                                                                              Mystery Case Files: MillionHeir
## 1537                                                                                                          Valkyria Chronicles
## 1538                                                                          Midnight Club 3: DUB Edition (America weekly sales)
## 1539                                                                                                         Champions of Norrath
## 1540                                                                                                                   Watch Dogs
## 1541                                                                                                    Imagine: Wedding Designer
## 1542                                                                                            Metal Gear Solid V: Ground Zeroes
## 1543                                                                                                                      Yakuman
## 1544                                                                                                   Assassin's Creed Syndicate
## 1545                                                                                                                  Army Men 3D
## 1546                                                                                                                      WWE '13
## 1547                                                                                                              Twisted Metal 4
## 1548                                                                                                                      Manhunt
## 1549                                                                                                         Kid Icarus: Uprising
## 1550                                                                                                                Silent Hill 2
## 1551                                                                                                      Tomb Raider: Underworld
## 1552                                                                                           Castlevania: Symphony of the Night
## 1553                                                                                                        The Sims 2: Nightlife
## 1554                                                                                                   LEGO Batman: The Videogame
## 1555                                                                                                                    Road Rash
## 1556                                                                                   Pokemon Mystery Dungeon: Gates to Infinity
## 1557                                                                                                                     Atlantis
## 1558                                                                                                                      NBA 2K9
## 1559                                                                                                                      WWE '12
## 1560                                                                                                      Tony Hawk's Underground
## 1561                                                                                                                Hogan's Alley
## 1562                                                                                                     The Elder Scrolls Online
## 1563                                                                                     Jillian Michaels' Fitness Ultimatum 2009
## 1564                                                                                                      .hack//Infection Part 1
## 1565                                                                                         Rockstar Games presents Table Tennis
## 1566                                                                                           Sonic Adventure DX: Director's Cut
## 1567                                                                                                        Jet Li: Rise to Honor
## 1568                                                                                                       Battle Arena Toshinden
## 1569                                                                                                                Yokai Watch 3
## 1570                                                                                                                Kung Fu Panda
## 1571                                                                                           Tamagotchi Connection: Corner Shop
## 1572                                                                                                        Football Manager 2011
## 1573                                                                                                                   Devil Dice
## 1574                                                                                                             Final Fantasy IV
## 1575                                                                                                              Hyrule Warriors
## 1576                                                                                                        Need for Speed Carbon
## 1577                                                                                                   Championship Manager 03/04
## 1578                                                                                                           Brian Lara Cricket
## 1579                                                                                                                  Ratatouille
## 1580                                                                                                             Wheel of Fortune
## 1581                                                                                                   LEGO The Lord of the Rings
## 1582                                                                                        Winter Sports: The Ultimate Challenge
## 1583                                                                                         SOCOM: U.S. Navy SEALs Confrontation
## 1584                                                                                                                NBA Live 2001
## 1585                                                                                               Star Wars: The Force Unleashed
## 1586                                                                                            WRC: FIA World Rally Championship
## 1587                                                                                              Tom Clancy's Rainbow Six: Vegas
## 1588                                                                                                Dragon Ball: Daimaou Fukkatsu
## 1589                                                                                Gegege no Kitarou 2: Youkai Gundan no Chousen
## 1590                                                                                                                 Reel Fishing
## 1591                                                                                                     Injustice: Gods Among Us
## 1592                                                                                                 Pokemon XD: Gale of Darkness
## 1593                                                                                                                        Black
## 1594                                                                                                       RollerCoaster Tycoon 2
## 1595                                                                                Lara Croft Tomb Raider: The Angel of Darkness
## 1596                                                                                 Tom Clancy's Splinter Cell: Pandora Tomorrow
## 1597                                                                                                                 Road Rash 3D
## 1598                                                                                                          Ratchet: Deadlocked
## 1599                                                                                                 Baldur's Gate: Dark Alliance
## 1600                                                                                         Transformers: Autobots / Decepticons
## 1601                                                                                                              Tales of Xillia
## 1602                                                                                                         Diddy Kong Racing DS
## 1603                                                                                                                  [Prototype]
## 1604                                                                                                 Assassin's Creed: Bloodlines
## 1605                                                                                                      Oddworld: Abe's Oddysee
## 1606                                                                                                     The Witcher 3: Wild Hunt
## 1607                                                                                                                Ridge Racer V
## 1608                                                                                                   WWE SmackDown vs. Raw 2009
## 1609                                                                                                  Tetris 2 (All region sales)
## 1610                                                                                   Star Wars Episode III: Revenge of the Sith
## 1611                                                                                                   Ben 10: Protector of Earth
## 1612                                                                                                     Frogger: The Great Quest
## 1613                                                                                             2010 FIFA World Cup South Africa
## 1614                                                                                                                 Ninja Gaiden
## 1615                                                                                         Crash Bandicoot: The Wrath of Cortex
## 1616                                                                                                                       Driv3r
## 1617                       Disney's Tarzan / Disney's Aladdin in Nasira's Revenge / Disney's The Emperor's New Groove Action Game
## 1618                                                                                                       Farming Simulator 2015
## 1619                                                                                                       Guitar Hero: Aerosmith
## 1620                                                                                                     Medal of Honor: Airborne
## 1621                                                                                                        Kirby Tilt 'n' Tumble
## 1622                                                                              SpongeBob SquarePants: Battle for Bikini Bottom
## 1623                                                                                                                  Vigilante 8
## 1624                                                                                                                  Castlevania
## 1625                                                                                                        Donkey Kong Country 2
## 1626                                                                                                                    Bayonetta
## 1627                                                                                             WarioWare, Inc.: Mega MicroGame$
## 1628                                                                                                    Star Wars: Battlefront II
## 1629                                                                                                                Madden NFL 17
## 1630                                                                                                                    Boom Blox
## 1631                                                                                                                    Fallout 4
## 1632                                                                                                         The Sims 2: Castaway
## 1633                                                                                               LEGO Batman 2: DC Super Heroes
## 1634                                                                                     Naruto Shippuden: Ultimate Ninja Storm 2
## 1635                                                                                                           Mario Power Tennis
## 1636                                                                                                             Intelligent Qube
## 1637                                                                                                       Game & Watch Gallery 2
## 1638                                                                                                       Game & Watch Gallery 3
## 1639                                                                                                                      Pac-Man
## 1640                                                                                               Parfait: Chocolat Second Style
## 1641                                                                                                                      F1 2011
## 1642                                                                                                                         Cars
## 1643                                                                                                                  NBA Live 99
## 1644                                                                                                   Chocobo no Fushigi Dungeon
## 1645                                                                                                     Golden Sun: The Lost Age
## 1646                                                                                                                 SimCity 2000
## 1647                                                                                                                    Max Payne
## 1648                                                                                                                   WCW Mayhem
## 1649                                                                                                                      NBA 2K2
## 1650                                                                                                 Aquaman: Battle for Atlantis
## 1651                                                                                          Super Street Fighter IV: 3D Edition
## 1652                                                                                                                         Cars
## 1653                                                                                                                Fuzion Frenzy
## 1654                                                                                                    Call of Duty: Finest Hour
## 1655                                                                                                               FIFA Soccer 11
## 1656                                                                                        Sly Cooper and the Thievius Raccoonus
## 1657                                                                                LEGO Indiana Jones 2: The Adventure Continues
## 1658                                                                                      The Magical Quest starring Mickey Mouse
## 1659                                                                                    Dragon Quest IV: Michibikareshi Monotachi
## 1660                                                                                      Star Wars Episode 1: Jedi Power Battles
## 1661                                                                                                                Dino Crisis 2
## 1662                                                                                                   Need for Speed Underground
## 1663                                                                                 Shrek / Shrek 2 2-in-1 Gameboy Advance Video
## 1664                                                                                                                 Test Drive 4
## 1665                                                                                                               FIFA Soccer 07
## 1666                                                                            World Soccer Winning Eleven 9 (JP & Others sales)
## 1667                                                                            The Lord of the Rings: The Fellowship of the Ring
## 1668                                                                                           LEGO Star Wars III: The Clone Wars
## 1669                                                                                                           ATV Offroad Fury 3
## 1670                                                                                                                     Pikmin 2
## 1671                                                                                                              Just Dance 2016
## 1672                                                                                                               Disney Sing It
## 1673                                                                                                        Battlefield: Hardline
## 1674                                                                                                                     WWE 2K16
## 1675                                                                                              Dragon Ball Z: La Legende Saien
## 1676                                                                                                                      TwinBee
## 1677                                                                                             Ganbare Goemon! Karakuri Douchuu
## 1678                                                                                                                       NFL 2K
## 1679                                                                                                                 SolarStriker
## 1680                                                                                                             Enter the Matrix
## 1681                                                                                                                     NHL 2002
## 1682                                                                                  Mario vs. Donkey Kong 2: March of the Minis
## 1683                                                                                            PokéPark Wii: Pikachu's Adventure
## 1684                                                                                                   One Piece: Pirate Warriors
## 1685                                                                                                                     WWE 2K14
## 1686                                                                                               Metal Gear Solid: Portable Ops
## 1687                                                                                                               Nuclear Strike
## 1688                                                                                               Captain Toad: Treasure Tracker
## 1689                                                                                                    WWE SmackDown vs Raw 2008
## 1690                                                                                                      The Simpsons: Road Rage
## 1691                                                                                                    Pro Evolution Soccer 2008
## 1692                                                                        SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1693                                                                               Mario & Sonic at the London 2012 Olympic Games
## 1694                                                                                                 Scarface: The World is Yours
## 1695                                                                                                 Kobe Bryant in NBA Courtside
## 1696                                                                                        Disney's Chip 'n Dale: Rescue Rangers
## 1697                                                                                        The Dukes of Hazzard: Racing for Home
## 1698                                                                                              Homeworld Remastered Collection
## 1699                                                                                                                      FIFA 14
## 1700                                                                                                        Spider-Man: The Movie
## 1701                                                                                          Final Fantasy I & II: Dawn of Souls
## 1702                                                                                                                     NBA 2K17
## 1703                                                                                                Pokemon Super Mystery Dungeon
## 1704                                                                                                                 Just Dance 4
## 1705                                                                                                 Metal Gear Solid VR Missions
## 1706                                                                                                                Pole Position
## 1707                                                                                        Resident Evil: Operation Raccoon City
## 1708                                                                                  LEGO Indiana Jones: The Original Adventures
## 1709                                                                                                Pro Yakyuu Family Stadium '88
## 1710                                                                                                                      Shenmue
## 1711                                                                                                                 Mario Tennis
## 1712                                                                                                     Tony Hawk's Pro Skater 2
## 1713                                                                                                                      WWE '12
## 1714                                                                                                   WWE SmackDown vs. Raw 2010
## 1715                                                                                                           Plants vs. Zombies
## 1716                                                                                                           Sonic the Hedgehog
## 1717                                                                                                       Super Ghouls 'n Ghosts
## 1718                                                                                                                        Spore
## 1719                                                                                                                Soviet Strike
## 1720                                                                                             Your Shape: Fitness Evolved 2012
## 1721                                                                                                                  Army of Two
## 1722                                                                                                                          Gun
## 1723                                                                                                       Ty the Tasmanian Tiger
## 1724                                                                                                        Wario Land: Shake It!
## 1725                                                                                                         Sonic Rush Adventure
## 1726                                                                                                   Medal of Honor: Warfighter
## 1727                                                                                                                   Mega Man 3
## 1728                                                                                                       Ratchet & Clank (2016)
## 1729                                                                                                          Mission: Impossible
## 1730                                                                                                             Romancing SaGa 2
## 1731                                                                                                     Cabela's Dangerous Hunts
## 1732                                                                                                              Cool Boarders 4
## 1733                                                                                                                   Rage Racer
## 1734                                                                                                   Medal of Honor: Rising Sun
## 1735                                                                                                        Football Manager 2013
## 1736                                                                                                          Destruction Derby 2
## 1737                                                                                                                Mirror's Edge
## 1738                                                                                                      Destiny: The Taken King
## 1739                                                                                                        Mario vs. Donkey Kong
## 1740                                                                                                       007: Quantum of Solace
## 1741                                                                                              EA Sports Active: More Workouts
## 1742                                                                                                           Fallout: New Vegas
## 1743                                                                                                  Need for Speed: Most Wanted
## 1744                                                                                  Final Fantasy Tactics: The War of the Lions
## 1745                                                                                           Midnight Club 3: DUB Edition Remix
## 1746                                                                                       Tom Clancy's Ghost Recon: Jungle Storm
## 1747                                                                                                                     SingStar
## 1748                                                                                                                Bushido Blade
## 1749                                                                                           LEGO Star Wars III: The Clone Wars
## 1750                                                                                                          NASCAR Thunder 2002
## 1751                                                                                                             Jet Force Gemini
## 1752                                                                                                                   Mega Man X
## 1753                                                                       Yu-Gi-Oh! The Sacred Cards (American and Others sales)
## 1754                                                                                                      Sega Rally Championship
## 1755                                                                                                         Test Drive: Off Road
## 1756                                                                                                      Medal of Honor Heroes 2
## 1757                                                                                                        Sniper: Ghost Warrior
## 1758                                                                                                                    Rocksmith
## 1759                                                                                               LEGO Star Wars: The Video Game
## 1760                                                                                                               FIFA Soccer 10
## 1761                                                                                           Plants vs. Zombies: Garden Warfare
## 1762                                                                                                Worldwide Soccer Manager 2009
## 1763                                                                                                    Omerta: City of Gangsters
## 1764                                                                                                        Gauntlet: Dark Legacy
## 1765                                                                                                           Ninja Gaiden Sigma
## 1766                                                                                                     Bad Boys: Miami Takedown
## 1767                                                                                                                      Kaboom!
## 1768                                                                                        Red Dead Redemption: Undead Nightmare
## 1769                                                                                                   Sonic and the Black Knight
## 1770                                                                                               Call of Duty 4: Modern Warfare
## 1771                                                                                                                          Qix
## 1772                                                                                                           Derby Stallion III
## 1773                                                                                                                     Doraemon
## 1774                                                                                        High School Musical 2: Work This Out!
## 1775                                                                                                   Ratchet & Clank: All 4 One
## 1776                                                                                                                 Donkey Konga
## 1777                                                                                                         Fight Night Champion
## 1778                                                                                                          Dragon Quest I & II
## 1779                                                                                                    Tak and the Power of Juju
## 1780                                                                                                                    Asteroids
## 1781                                                                                                      Puyo Puyo Sun Ketteiban
## 1782                                                                                                         Pokemon Rumble Blast
## 1783                                                                                                                  Action Bass
## 1784                                                                                                      Tenchu: Wrath of Heaven
## 1785                                                                                                       Shadow of the Colossus
## 1786                                                                                                         Brave Fencer Musashi
## 1787                                                                                                Hot Shots Golf: Out of Bounds
## 1788                                                                                             Dance Dance Revolution Extreme 2
## 1789                                                                                                                Mirror's Edge
## 1790                                                                                                              Rabbids Go Home
## 1791                                                                                                                   South Park
## 1792                                                                                                                     Commando
## 1793                                                                                                                   Pilotwings
## 1794                                                                                               Resident Evil - Code: Veronica
## 1795                                                                                                            Super R.C. Pro-Am
## 1796                                                                                The Lord of the Rings: The Return of the King
## 1797                                                                                               LEGO Star Wars: The Video Game
## 1798                                                                         Royal Palace of White Sword and The City of Gentiles
## 1799                                                                                                                Guitar Hero 5
## 1800                                                                                      Mobile Suit Gundam: Federation vs. Zeon
## 1801                                                                                                 Need for Speed Underground 2
## 1802                                                                                                                  MechAssault
## 1803                                                                                                             ModNation Racers
## 1804                                                                                           LEGO Star Wars III: The Clone Wars
## 1805                                                                                                            Derby Stallion 99
## 1806                                                                                                                         Cars
## 1807                                                                                                                 Fantasy Life
## 1808                                                                                      Tom Clancy's Rainbow Six 3: Black Arrow
## 1809                                                                                                                     WWE 2K15
## 1810                                                                                                                  Donkey Kong
## 1811                                                                                                           Jampack Winter '98
## 1812                                                                                                                     WWE 2K14
## 1813                                                                                                             Alien: Isolation
## 1814                                                                                                                     Yakuza 3
## 1815                                                                   Pokémon Mystery Dungeon: Red Rescue Team (US weekly sales)
## 1816                                                                                                       The Beatles: Rock Band
## 1817                                                                                                                Dragon Age II
## 1818                                                                                                                  Moon Patrol
## 1819                                                                                                    Supercar Street Challenge
## 1820                                                                                                                Pilotwings 64
## 1821                                                                                                                  Crackdown 2
## 1822                                                                                            Final Fantasy XIV: A Realm Reborn
## 1823                                                                                                 Castlevania: Lords of Shadow
## 1824                                                                                                                    Rocksmith
## 1825                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 1826                                                                                        SOCOM: U.S. Navy SEALs Fireteam Bravo
## 1827                                                                                                  Call Of Duty 2: Big Red One
## 1828                                                                                                               Yoshi's Cookie
## 1829                                                                                                                Guitar Hero 5
## 1830                                                                                                Worldwide Soccer Manager 2008
## 1831                                                                                                                 Spider-Man 2
## 1832                                                                                                               Counter-Strike
## 1833                                                                                                               Mad Max (2015)
## 1834                                                               Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1835                                                                                                                         GRID
## 1836                                                                                            Guitar Hero Encore: Rocks The 80s
## 1837                                                                                                             Sunset Overdrive
## 1838                                                                                                                    Rock Band
## 1839                                                                                     Tom Clancy's Splinter Cell: Chaos Theory
## 1840                                                                                                              Donkey Kong Jr.
## 1841                                                                                                                  Arc the Lad
## 1842                                                                                                   NBA Jam Tournament Edition
## 1843                                                                                                    Need for Speed: ProStreet
## 1844                                                                                                                     Pikmin 3
## 1845                                                                                                               Legend of Mana
## 1846                                                                                                       Lumines: Puzzle Fusion
## 1847                                                                                                  Toy Story 3: The Video Game
## 1848                                                                                                                Guitar Hero 5
## 1849                                                                                                                    Megamania
## 1850                                                                                                     Medal of Honor: Airborne
## 1851                                                                                        The Legend of Zelda: Tri Force Heroes
## 1852                                                                                                                  Jungle Hunt
## 1853                                                                                                               Triple Play 98
## 1854                                                                                                   LEGO The Lord of the Rings
## 1855                                                                                                                  Petz Dogz 2
## 1856                                                                                                   WWE SmackDown vs. Raw 2011
## 1857                                                                                Yu-Gi-Oh! Duel Monsters II: Dark Duel Stories
## 1858                                                                                                                  Lode Runner
## 1859                                                                                                     The Final Fantasy Legend
## 1860                                                                                                 Famicom Jump: Eiyuu Retsuden
## 1861                                                                                                                     F-Zero X
## 1862                                                                                                                       Popeye
## 1863                                                                                                                NERF N-Strike
## 1864                                                                                                                NBA Live 2001
## 1865                                                                                                             SingStar Legends
## 1866                                                                                                              SingStar Rocks!
## 1867                                                                                                           Tales of Symphonia
## 1868                                                                                     Untold Legends: Brotherhood of the Blade
## 1869                                                                                                 Star Ocean: The Second Story
## 1870                                                                                        Lightning Returns: Final Fantasy XIII
## 1871                                                                                               Star Wars: The Force Unleashed
## 1872                                                                                                         Imagine: Babysitters
## 1873                                                                                                            The Simpsons Game
## 1874                                                                                                                     Yakuza 2
## 1875                                                                                                                      Skate 2
## 1876                                                                                         Dragon Ball Z: The Legacy of Goku II
## 1877                                                                                                             Virtua Fighter 5
## 1878                                                                                                                      NFL 2K1
## 1879                                                                                                                    BeatMania
## 1880                                                                                               Namco Museum Battle Collection
## 1881                                                                                      LEGO Star Wars II: The Original Trilogy
## 1882                                                                                                              Madden NFL 2004
## 1883                                                                                                            Empire: Total War
## 1884                                                                                                                The Godfather
## 1885                                                                                                      Tiger Woods PGA Tour 10
## 1886                                                                                                     Star Wars: Bounty Hunter
## 1887                                                                                                                Densha De Go!
## 1888                                                                                                              Dante's Inferno
## 1889                                                                                                Sonic & Sega All-Stars Racing
## 1890                                                                                                            Skylanders Giants
## 1891                                                                                                                Endless Ocean
## 1892                                                                                                               NFL Blitz 2000
## 1893                                                                                                            Sonic Free Riders
## 1894                                                                                                          NASCAR Thunder 2004
## 1895                                                                                                             Prince of Persia
## 1896                                                                        SpongeBob SquarePants: Revenge of the Flying Dutchman
## 1897                                                                                                           Grand Theft Auto V
## 1898                                                                                                            The Biggest Loser
## 1899                                                                                                        Fisherman's Bass Club
## 1900                                                                                                                MySims Agents
## 1901                                                                                       Resident Evil: The Darkside Chronicles
## 1902                                                                                                             NCAA Football 13
## 1903                                                                                             Grand Theft Auto: Chinatown Wars
## 1904                                                                                                               FIFA Soccer 11
## 1905                                                                                                               The Orange Box
## 1906                                                                                                                        Joust
## 1907                                                                                                      Tomb Raider: Underworld
## 1908                                                                                                   Tom Clancy's Ghost Recon 2
## 1909                                                                                                                       DiRT 3
## 1910                                                                                                         LEGO City Undercover
## 1911                                                                                                              Spore Creatures
## 1912                                                                                                        Ready 2 Rumble Boxing
## 1913                                                                                                      Dragon Ball Z: Taiketsu
## 1914                                                                                                       Disney's Lilo & Stitch
## 1915                                                                                                            Star Fox: Assault
## 1916                                                                                                 Naruto: Ultimate Ninja Storm
## 1917                                                                                      Marvel vs. Capcom 3: Fate of Two Worlds
## 1918                                                                                                             NCAA Football 14
## 1919                                                                                                              Doko Demo Issyo
## 1920                                                                                                               Call of Duty 3
## 1921                                                                                           Imagine: Fashion Designer New York
## 1922                                                                                        Red Dead Redemption: Undead Nightmare
## 1923                                                                                                   Bully: Scholarship Edition
## 1924                                                                                                               Virtua Fighter
## 1925                                                                                                   Championship Manager 99/00
## 1926                                                                                                   WWE SmackDown vs. Raw 2010
## 1927                                                                                                    Pro Evolution Soccer 2008
## 1928                                                                                                         Super Princess Peach
## 1929                                                                                                                       NHL 99
## 1930                                                                                                              SoulCalibur III
## 1931                                                                                                        Skylanders SWAP Force
## 1932                                                                                                                      F1 2012
## 1933                                                                                                            World Tour Soccer
## 1934                                                                                                              Disney Universe
## 1935                                                                                                       Ridge Racer Revolution
## 1936                                                                                LEGO Pirates of the Caribbean: The Video Game
## 1937                                                                                                      Hot Wheels Turbo Racing
## 1938                                                                                                             NCAA Football 99
## 1939                                                                                                    Mortal Kombat: Armageddon
## 1940                                                                                                           Aliens vs Predator
## 1941                                                                                                                   Freekstyle
## 1942                                                                                                         Junior Brain Trainer
## 1943                                                                                                                   Darksiders
## 1944                                                                                                                         DiRT
## 1945                                                                                               Call of Duty 4: Modern Warfare
## 1946                                                                                       Simple 1500 Series Vol. 1: The Mahjong
## 1947                                                                                                       Sega Superstars Tennis
## 1948                                                                                                                NBA Street V3
## 1949                                                                                                                Sleeping Dogs
## 1950                                                                                               Mercenaries 2: World in Flames
## 1951                                                                                                             Worms Armageddon
## 1952                                                                                                                         Hulk
## 1953                                                                                  LEGO Indiana Jones: The Original Adventures
## 1954                                                                                                                    NFL Blitz
## 1955                                                                                                      NFL Quarterback Club 98
## 1956                                                                                                                      DJ Hero
## 1957                                                                                   Dora the Explorer: Dora Saves the Mermaids
## 1958                                                                                               Diablo II: Lord of Destruction
## 1959                                                                                     Naruto Shippuden: Ultimate Ninja Storm 4
## 1960                                                                                                                 Spider-Man 2
## 1961                                                                                                              Virtua Tennis 3
## 1962                                                                                                             Seek and Destroy
## 1963                                                                                                                      Warhawk
## 1964                                                                                                 Apollo Justice: Ace Attorney
## 1965                                                                                                      Assassin's Creed: Rogue
## 1966                                                                                                                   Cosmic Ark
## 1967                                                                                      SOCOM: U.S. Navy SEALs Fireteam Bravo 2
## 1968                                                                                                        Skylanders: Trap Team
## 1969                                                                                                           Aliens vs Predator
## 1970                                                                                                                     Defender
## 1971                                                                                                            Dance on Broadway
## 1972                                                                                                             Adventure Island
## 1973                                                                                                               Arc the Lad II
## 1974                                                                                                  Tag Team Match M.U.S.C.L.E.
## 1975                                                                                                            Derby Stallion 96
## 1976                                                                                                             UFC Undisputed 3
## 1977                                                                                                                      NBA 2K3
## 1978                                                                                                       Dragon Ball: XenoVerse
## 1979                                                                                                      The Simpsons: Road Rage
## 1980                                                                                                     Dave Mirra Freestyle BMX
## 1981                                                                                                       Imagine: Animal Doctor
## 1982                                                                                                   WWE SmackDown vs. Raw 2010
## 1983                                                                                                             Forza Motorsport
## 1984                                                                                                           Sonic the Hedgehog
## 1985                                                                                                                MySims Agents
## 1986                                                                                                            Monster Rancher 2
## 1987                                                                                                             Pokemon Conquest
## 1988                                                                                                            The Simpsons Game
## 1989                                                                                        Guinness World Records: The Videogame
## 1990                                                                                                            MVP Baseball 2003
## 1991                                                                                                                       Shorts
## 1992                                                                                           Dragon Ball Z: Budokai Tenkaichi 3
## 1993                                                                                                               Disney Tangled
## 1994                                                                                                             Tales of Destiny
## 1995                                                                                                       ATV: Quad Power Racing
## 1996                                                                            Disney Fairies: Tinker Bell and the Lost Treasure
## 1997                                                                                                                  Mega Man X4
## 1998                                                                                                     Naruto: Clash of Ninja 2
## 1999                                                                                             Dance Dance Revolution SuperNOVA
## 2000                                                                                                                        Brink
## 2001                                                                                                     F-Zero: Maximum Velocity
## 2002                                                                                                                 Bomberman 64
## 2003                                                                                                 Jeremy McGrath Supercross 98
## 2004                                                                                LEGO Indiana Jones 2: The Adventure Continues
## 2005                                                                                                                 Project CARS
## 2006                                                                                                  Need for Speed: Most Wanted
## 2007                                                                                                           Kirby: Mass Attack
## 2008                                                                                                     LEGO Marvel Super Heroes
## 2009                                                                                                                  ZhuZhu Pets
## 2010                                                                               Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2011                                                                                                      MotorStorm: Arctic Edge
## 2012                                                                                                                 WipEout Pure
## 2013                                                                                                                EA Sports UFC
## 2014                                                                                                         MX vs. ATV Unleashed
## 2015                                                                                                              Sonic Unleashed
## 2016                                                                                                      Tiger Woods PGA Tour 08
## 2017                                                                                                               Rayman Origins
## 2018                                                                                              Epic Mickey 2: The Power of Two
## 2019                                                                                                      NCAA March Madness 2004
## 2020                                                                                       AKB1/48: Idol to Guam de Koishitara...
## 2021                                                                                                                    Bomberman
## 2022                                                                                                            The Simpsons Game
## 2023                                                                                                                  Tomb Raider
## 2024                                                                                                                  Rock Band 2
## 2025                                                                                                       Street Fighter Alpha 3
## 2026                                                                                                                  Bulletstorm
## 2027                                                                                                               FIFA Soccer 08
## 2028                                                                                            Naruto: Clash of Ninja Revolution
## 2029                                                                               Tom Clancy's Ghost Recon Advanced Warfighter 2
## 2030                                                                                                                       ZombiU
## 2031                                                                                                                      Shrek 2
## 2032                                                                                                                 Petz: Catz 2
## 2033                                                                                                            Tales of Graces f
## 2034                                                                                                                Final Fight 2
## 2035                                                                                                                       Wall-E
## 2036                                                                                                The Lost World: Jurassic Park
## 2037                                                                                            Ace Combat 6: Fires of Liberation
## 2038                                                                                                                Madden NFL 07
## 2039                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 2040                                                                                     Harry Potter and the Prisoner of Azkaban
## 2041                                                                                                         Pong: The Next Level
## 2042                                                                                                                  Bayonetta 2
## 2043                                                                                                             Prince of Persia
## 2044                                                                                                  God of War: Ghost of Sparta
## 2045                                                                                                            Sonic Generations
## 2046                                                                                                              Ninja Gaiden II
## 2047                                                                                                   NBA Jam Tournament Edition
## 2048                                                                                                       Championship Manager 3
## 2049                                                                                                Guitar Hero: Warriors of Rock
## 2050                                                                                    Oshare Majo Love and Berry: DS Collection
## 2051                                                                                                              Monster Rancher
## 2052                                                                                                     The LEGO Movie Videogame
## 2053                                                                                                                       DiRT 2
## 2054                                                                                                               Rayman Legends
## 2055                                                                                                          NERF N-Strike Elite
## 2056                                                                                                                Ford Racing 2
## 2057                                                                                                           Breath of Fire III
## 2058                                                                                               PES 2009: Pro Evolution Soccer
## 2059                                                                                                              Dead or Alive 2
## 2060                                                                                                                         1942
## 2061                                                                                                                Excitebike 64
## 2062                                                                                                     NES Open Tournament Golf
## 2063                                                                                                         Game & Watch Gallery
## 2064                                                                                  Jissen Pachi-Slot Hisshouhou: Hokuto no Ken
## 2065                                                                                                               SoulCalibur II
## 2066                                                                                                                         Haze
## 2067                                                                                                             UFC Undisputed 3
## 2068                                                                 Winning Eleven: Pro Evolution Soccer 2007 (All Region sales)
## 2069                                                                                    Road & Track Presents: The Need for Speed
## 2070                                                                                                             NFL GameDay 2001
## 2071                                                                                                          Killzone: Mercenary
## 2072                                                                                                                  NBA Live 97
## 2073                                                                                           Dynasty Warriors 3: Xtreme Legends
## 2074                                                                                                                Zoo Tycoon DS
## 2075                                                                                                               Rocksmith 2014
## 2076                                                                                                                 Dead Space 3
## 2077                                                                                                             Wheel of Fortune
## 2078                                                                                                              Disney Infinity
## 2079                                                                                                                   Dark Souls
## 2080                                                                                                           Puzzler Collection
## 2081                                                                                                          Jampack Winter 2000
## 2082                                                                                                                 Dead Space 3
## 2083                                                                                                 Phoenix Wright: Ace Attorney
## 2084                                                                                                               NFL Fever 2002
## 2085                                                                                                      The Simpsons: Hit & Run
## 2086                                                                                                    Littlest Pet Shop: Winter
## 2087                                                                                                 LEGO Harry Potter: Years 5-7
## 2088                                                                                        Tom Clancy's Splinter Cell: Blacklist
## 2089                                                                                             Ace Combat X: Skies of Deception
## 2090                                                                                                             NCAA Football 12
## 2091                                                                                LEGO Pirates of the Caribbean: The Video Game
## 2092                                                                                                                    Band Hero
## 2093                                                                                                            Cars: Race-O-Rama
## 2094                                                                                                      Oddworld: Abe's Exoddus
## 2095                                                                                                                       EyePet
## 2096                                                                                                    Scooby-Doo! First Frights
## 2097                                                                                                      Midnight Club: LA Remix
## 2098                                                                                                                  The Bouncer
## 2099                                                                                                       Guitar Hero: Aerosmith
## 2100                                                                                                    WWE SmackDown vs Raw 2008
## 2101                                                                                                               FIFA Soccer 10
## 2102                                                                                                          Shadow The Hedgehog
## 2103                                                                                                       Farming Simulator 2013
## 2104                                                                                                                    Fallout 3
## 2105                                                                                                                         Cars
## 2106                                                                                                    Pro Evolution Soccer 2008
## 2107                                                                                                                    Far Cry 3
## 2108                                                                                                         Xenoblade Chronicles
## 2109                                                                                                              Just Dance 2014
## 2110                                                                                                          Mario Party Advance
## 2111                                                                                                Sonic & Sega All-Stars Racing
## 2112                                                                                                                     Tetris 2
## 2113                                                                                                                    NASCAR 99
## 2114                                                                                                  Brothers in Arms: Furious 4
## 2115                                                                                                 Agarest Senki: Re-appearance
## 2116                                                                                                      Kingdom Hearts Re:coded
## 2117                                                                                               South Park: The Stick of Truth
## 2118                                                                                                        Driver: San Francisco
## 2119                                                                                                              Sniper Elite V2
## 2120                                                                                                                    Far Cry 4
## 2121                                                                                                Grand Theft Auto: San Andreas
## 2122                                                                                        Tom Clancy's Splinter Cell: Blacklist
## 2123                                                                                                    Pro Evolution Soccer 2014
## 2124                                                                                                                Madden NFL 16
## 2125                                                                                                                Madden NFL 10
## 2126                                                                                                                Brutal Legend
## 2127                                                                                         Tamagotchi Connection: Corner Shop 2
## 2128                                                                                                         Final Fantasy Type-0
## 2129                                                                                                                Madden NFL 08
## 2130                                                                                                                      de Blob
## 2131                                                                                                             NCAA Football 06
## 2132                                                                                                                Mass Effect 3
## 2133                                                                                                                     NBA 2K10
## 2134                                                                                                                  Fire Emblem
## 2135                                                                                                                Freaky Flyers
## 2136                                                                                                Skylanders: Spyro's Adventure
## 2137                                                                                                      Club Penguin: Game Day!
## 2138                                                                                                                     NHL 2004
## 2139                                                                                          Grand Theft Auto: Vice City Stories
## 2140                                                                                                                     NBA 2K16
## 2141                                                                                                             FIFA Soccer 2005
## 2142                                                                                                   LEGO The Lord of the Rings
## 2143                                                                                                               Romancing SaGa
## 2144                                                                                                           Donkey Kong Junior
## 2145                                                                                      LEGO Star Wars II: The Original Trilogy
## 2146                                                                                                 LEGO Harry Potter: Years 5-7
## 2147                                                                                            Final Fantasy X / X-2 HD Remaster
## 2148                                                                                                  Medal of Honor: Underground
## 2149                                                                                                                   The Sims 2
## 2150                                                                                                                 Dark Cloud 2
## 2151                                                                                                           Jampack Summer '99
## 2152                                                                                          PlayStation All-Stars Battle Royale
## 2153                                                                                             Dance Dance Revolution 2nd ReMIX
## 2154                                                                                                   Monster High: Ghoul Spirit
## 2155                                                                                                               Dragon Quest X
## 2156                                                                                LEGO Pirates of the Caribbean: The Video Game
## 2157                                                                                                              Gangs of London
## 2158                                                                                                        Mortal Kombat Trilogy
## 2159                                                                                                                 Star Soldier
## 2160                                                                                                              Sonic Unleashed
## 2161                                                                                                                Lost Planet 2
## 2162                                                                                                                     NHL 2001
## 2163                                                                                 Dragon Quest Monsters: Terry's Wonderland 3D
## 2164                                                                                                         My Weight Loss Coach
## 2165                                                                                     Tom Clancy's Ghost Recon: Future Soldier
## 2166                                                                                   Mega Man Star Force Dragon / Leo / Pegasus
## 2167                                                                                                                      Shinobi
## 2168                                                                                               Mortal Kombat: Deadly Alliance
## 2169                                                                                            The Witcher 2: Assassins of Kings
## 2170                                                                                                            PilotWings Resort
## 2171                                                                                     Naruto Shippuden: Ultimate Ninja Storm 3
## 2172                                                                                                          LEGO Jurassic World
## 2173                                                                                                                 ESPN NBA 2K5
## 2174                                                                                                                    Inversion
## 2175                                                                                                     World Championship Poker
## 2176                                                                                     Tom Clancy's Splinter Cell: Chaos Theory
## 2177                                                                              SpongeBob SquarePants: Battle for Bikini Bottom
## 2178                                                                                               South Park: The Stick of Truth
## 2179                                                                                                          Ben 10: Alien Force
## 2180                                                                                                                SingStar Abba
## 2181                                                                                                                       Cars 2
## 2182                                                                                                                    Wild ARMs
## 2183                                                                                                                       Kessen
## 2184                                                                   Yu-Gi-Oh! Worldwide Edition: Stairway to the Destined Duel
## 2185                                                                                                           NCAA Football 2000
## 2186                                                                                                                Brutal Legend
## 2187                                                                                                Skylanders: Spyro's Adventure
## 2188                                                                                                       Guitar Hero: Metallica
## 2189                                                                                                                       Evolve
## 2190                                                                                                   WWE SmackDown vs. Raw 2009
## 2191                                                                                                    Army of Two: The 40th Day
## 2192                                                                                                              Tony Hawk: RIDE
## 2193                                                                                                 Lego Batman 3: Beyond Gotham
## 2194                                                                                                             Wii Play: Motion
## 2195                                                                                                                     Killzone
## 2196                                                                                                      The Tomb Raider Trilogy
## 2197                                                                                                         Colin McRae Rally 04
## 2198                                                                                                               Star Fox 64 3D
## 2199                                                                                              The SpongeBob SquarePants Movie
## 2200                                                                                                               Rocksmith 2014
## 2201                                                               Midway Presents Arcade's Greatest Hits: The Atari Collection 1
## 2202                                                                                                                         Cars
## 2203                                                                                                         Assassin's Creed III
## 2204                                                                                             Castlevania: Lament of Innocence
## 2205                                                                                                            Mario Tennis Open
## 2206                                                                                            The Witcher 2: Assassins of Kings
## 2207                                                                                                                    Bayonetta
## 2208                                                                                                          Destroy All Humans!
## 2209                                                                                                            MVP Baseball 2005
## 2210                                                                                                              SaGa Frontier 2
## 2211                                                                                                             NCAA Football 10
## 2212                                                                                                                     MLB 2000
## 2213                                                                                    The Legend of Zelda: Twilight Princess HD
## 2214                                                                                                                        Bully
## 2215                                                                                          Prince of Persia: The Sands of Time
## 2216                                                                                                       Phantasy Star Portable
## 2217                                                                                                         Hot Shots Golf Fore!
## 2218                                                                                                             MLB 06: The Show
## 2219                                                                                                                     NHL 2003
## 2220                                                                                          Operation Flashpoint: Dragon Rising
## 2221                                                                                                              Nickelodeon Fit
## 2222                                                                                                             Buzz! Quiz World
## 2223                                                                                                           Bentley's Hackpack
## 2224                                                                                                     Tony Hawk's Pro Skater 4
## 2225                                                                                                                Borderlands 2
## 2226                                                                                                  EA Sports Grand Slam Tennis
## 2227                                                                               White Knight Chronicles: International Edition
## 2228                                                                                                                          SSX
## 2229                                                                                                   Sonic Riders: Zero Gravity
## 2230                                                                                                          LEGO Jurassic World
## 2231                                                                                                        Build-A-Bear Workshop
## 2232                                                                                                            Crash City Mayhem
## 2233                                                                                                                   Spider-Man
## 2234                                                                                                                   Mega Man 4
## 2235                                                                                                Castlevania II: Simon's Quest
## 2236                                                                                   Toy Story 2: Buzz Lightyear to the Rescue!
## 2237                                                                                                 Teenage Mutant Ninja Turtles
## 2238                                                                                                             MLB 07: The Show
## 2239                                                                                                        Skylanders: Trap Team
## 2240                                                                                                                         Cars
## 2241                                                                                             Brothers in Arms: Hell's Highway
## 2242                                                                                                             Inazuma Eleven 3
## 2243                                                                                                            Pokken Tournament
## 2244                                                                                                 SnoCross Championship Racing
## 2245                                                                                                 Teenage Mutant Ninja Turtles
## 2246                                                                                                        Top Gun: Combat Zones
## 2247                                                                                                                  Blue Dragon
## 2248                                                                                                 007: The World is not Enough
## 2249                                                                                                             NCAA Football 11
## 2250                                                                                                                       NHL 98
## 2251                                                                                                                  FIFA Street
## 2252                                                                                                           EA Sports Active 2
## 2253                                                                                    SpongeBob SquarePants: The Yellow Avenger
## 2254                                                                                                   WWE SmackDown vs. Raw 2009
## 2255                                                                                                              Dante's Inferno
## 2256                                                                                                         Wipeout: In The Zone
## 2257                                                                                                                    Space Jam
## 2258                                                                                                                Kung Fu Panda
## 2259                                                                                                          Knockout Kings 2000
## 2260                                                                                                                Balloon Fight
## 2261                                                                                                             Assassin's Creed
## 2262                                                                                                         Disney Magical World
## 2263                                                                                                                     Crysis 3
## 2264                                                                                                 Lego Batman 3: Beyond Gotham
## 2265                                                                                                           Dynasty Warriors 7
## 2266                                                                                                              The Evil Within
## 2267                                                                                                             MLB 12: The Show
## 2268                                                                                                                 Sonic Riders
## 2269                                                                                                              Starsky & Hutch
## 2270                                                                                                                   Tobal No.1
## 2271                                                                                                                 Lost Odyssey
## 2272                                                                                                             MLB 15: The Show
## 2273                                                                                          Operation Flashpoint: Dragon Rising
## 2274                                                                                                                    Homefront
## 2275                                                                                                      AMF Bowling Pinbusters!
## 2276                                                                                                                 Street Hoops
## 2277                                                                                                             Avatar: The Game
## 2278                                                                                             Harvest Moon 3D: A New Beginning
## 2279                                                                                                          Tom Clancy's EndWar
## 2280                                                                                                          Knockout Kings 2002
## 2281                                                                                                         Tokyo Xtreme Racer 3
## 2282                                                                                LEGO Indiana Jones 2: The Adventure Continues
## 2283                                                                                                        Colin McRae Rally 2.0
## 2284                                                                                                                       Glover
## 2285                                                                                                            MX vs. ATV Reflex
## 2286                                                                                                        Minecraft: Story Mode
## 2287                                                                                                  Hakuouki: Shinsengumi Kitan
## 2288                                                                                                  Marvel: Ultimate Alliance 2
## 2289                                                                                                   Call of Duty: World at War
## 2290                                                                                                 Super Momotarou Dentetsu III
## 2291                                                                                                   Sonic Mega Collection Plus
## 2292                                                                                                                      DJ Hero
## 2293                                                                                                      Dragon Age: Inquisition
## 2294                                                                                                            The Simpsons Game
## 2295                                                                                                    Tiger Woods PGA Tour 2002
## 2296                                                                                                                 Virtua Quest
## 2297                                                                                    Mini-Yonku Shining Scorpion: Let's & Go!!
## 2298                                                                                                                     MLB 2005
## 2299                                                                                                     SOCOM 4: U.S. Navy SEALs
## 2300                                                                                                              Burnout Revenge
## 2301                                                                                                                Buzz! Quiz TV
## 2302                                                                                                           We Ski & Snowboard
## 2303                                                                                                            Destruction Derby
## 2304                                                                                                                TouchMaster 2
## 2305                                                                                                                     Crysis 3
## 2306                                                                                                                      3Xtreme
## 2307                                                                                                             Hot Shots Tennis
## 2308                                                                                                                 Sonic Heroes
## 2309                                                                                                      Resistance: Retribution
## 2310                                                                                         Tiger Woods PGA Tour 12: The Masters
## 2311                                                                                               Star Wars: The Force Unleashed
## 2312                                                                                                                Madden NFL 99
## 2313                                                                                                                 Spider-Man 3
## 2314                                                                                             James Bond 007: Agent Under Fire
## 2315                                                                                                               Samba De Amigo
## 2316                                                                                                     The Elder Scrolls Online
## 2317                                                                                                                         Pure
## 2318                                                                                                      FIFA Soccer 09 All-Play
## 2319                                                                                                              Fossil Fighters
## 2320                                                                                                      LittleBigPlanet Karting
## 2321                                                                                                                X-Men Legends
## 2322                                                                                                                NBA Live 2005
## 2323                                                                                            Harry Potter: Quidditch World Cup
## 2324                                                                                          The Biggest Loser: Ultimate Workout
## 2325                                                                                                                   Madagascar
## 2326                                                                                               Call of Juarez: Bound in Blood
## 2327                                                                                                         Killzone: Liberation
## 2328                                                                                                                Madden NFL 08
## 2329                                                                                                            Blitz: The League
## 2330                                                                                                          LEGO Jurassic World
## 2331                                                                                              Castlevania: Circle of the Moon
## 2332                                                                                       Sonic Chronicles: The Dark Brotherhood
## 2333                                                                                                      Tiger Woods PGA Tour 06
## 2334                                                                                      Classic NES Series: The Legend of Zelda
## 2335                                                                                                The Jak and Daxter Collection
## 2336                                                                                               Fire Emblem: The Sacred Stones
## 2337                                                                                        Pokemon Card GB2: Here Comes Team GR!
## 2338                                                                                                                 Finding Nemo
## 2339                                                                                                           CSI: Hard Evidence
## 2340                                                                                                                 Ace Combat 2
## 2341                                                                                                                      F1 2009
## 2342                                                                                                                      NFL 2K2
## 2343                                                                                                              EA Sports UFC 2
## 2344                                                                                         Dissidia 012: Duodecim Final Fantasy
## 2345                                                                                                     LEGO Marvel Super Heroes
## 2346                                                                                                                      F1 2010
## 2347                                                                                                   Monster 4X4: World Circuit
## 2348                                                                                               Call of Duty: Modern Warfare 2
## 2349                                                                                                                    Wii Fit U
## 2350                                                                                                Kingdoms of Amalur: Reckoning
## 2351                                                                                               Call of Duty: Modern Warfare 3
## 2352                                                                                                                     MLB 2001
## 2353                                                                                                             SingStar Anthems
## 2354                                                                                                            Seiken Densetsu 3
## 2355                                                                                   Mega Man 8 Anniversary Collector's Edition
## 2356                                                                                                   WWE SmackDown vs. Raw 2011
## 2357                                                                                                                Sleeping Dogs
## 2358                                                                                                          Grand Theft Auto IV
## 2359                                                                                                          Peppa Pig: The Game
## 2360                                                                                              Michael Jackson: The Experience
## 2361                                                                                                 Ghostbusters: The Video Game
## 2362                                                                                                                  Rock Band 3
## 2363                                                                                                   Resident Evil: Revelations
## 2364                                                                                                                      NBA 2K6
## 2365                                                                                                          Buzz! The Mega Quiz
## 2366                                                                                                    Endless Ocean: Blue World
## 2367                                                                              Star Wars: Rebel Assault II - The Hidden Empire
## 2368                                                                                                                 Just Cause 3
## 2369                                                                                                              Metal Gear Ac!d
## 2370                                                                                                  Cooking Mama: World Kitchen
## 2371                                                                                                      Tekken Tag Tournament 2
## 2372                                                                                                                 ESPN NHL 2K5
## 2373                                                                                                                         GRID
## 2374                                                                                                     Phantasy Star Portable 2
## 2375                                                                                          Crimson Skies: High Road to Revenge
## 2376                                                                                                       Spec Ops: Ranger Elite
## 2377                                                                                                                          Gex
## 2378                                                                                                                     NBA 2K14
## 2379                                                                                                                         DiRT
## 2380                                                                                                            Derby Stallion II
## 2381                                                                                                    Gold's Gym: Dance Workout
## 2382                                                                                                       Red Faction: Guerrilla
## 2383                                                                                     Tom Clancy's Ghost Recon: Island Thunder
## 2384                                                                                               Mercenaries 2: World in Flames
## 2385                                                                                                      Need for Speed: V-Rally
## 2386                                                                                         Kingdom Hearts Re: Chain of Memories
## 2387                                                                                                                   Pictionary
## 2388                                                                                                             NCAA Football 13
## 2389                                                                                                Kingdoms of Amalur: Reckoning
## 2390                                                                                                              NFL GameDay '97
## 2391                                                                                                                 Beijing 2008
## 2392                                                                                              The House of the Dead: Overkill
## 2393                                                                                                        Tony Hawk's Project 8
## 2394                                                                                                     Injustice: Gods Among Us
## 2395                                                                                                                     NHL 2000
## 2396                                                                                                            Buzz! Master Quiz
## 2397                                                                                             Brothers in Arms: Hell's Highway
## 2398                                                                                                          Fight Night Round 2
## 2399                                                                                                     Wizards of Waverly Place
## 2400                                                                                                    Scooby-Doo! First Frights
## 2401                                                                                                       Conflict: Desert Storm
## 2402                                                                                                             Triple Play 2002
## 2403                                                                                                                Vagrant Story
## 2404                                                                                                                     Lemmings
## 2405                                                                                                              Warriors Orochi
## 2406                                                                                                Guitar Hero: Warriors of Rock
## 2407                                                                                                                       Enduro
## 2408                                                                                                            Tales of Xillia 2
## 2409                                                                                                                SingStar '90s
## 2410                                                                                                           Monster Strike 3DS
## 2411                                                                                                     Tomb Raider: Anniversary
## 2412                                                                                    Winning Eleven: Pro Evolution Soccer 2007
## 2413                                                                                                                Darksiders II
## 2414                                                                                                 Ghostbusters: The Video Game
## 2415                                                                                                      The World Ends With You
## 2416                                                                                                                   The Smurfs
## 2417                                                                                                                        Rocky
## 2418                                                                                Dragon Quest VIII: Journey of the Cursed King
## 2419                                                                                                                  Ford Racing
## 2420                                                                                                           Madden Football 64
## 2421                                                                                                                       MLB 99
## 2422                                                                                                   Dragon Ball Z: Burst Limit
## 2423                                                                                                                  Tube Slider
## 2424                                                                                                         The Legendary Starfy
## 2425                                                                                             2010 FIFA World Cup South Africa
## 2426                                                                                           Dynasty Warriors 4: Xtreme Legends
## 2427                                                                                                         Ninja Gaiden Sigma 2
## 2428                                                                                                              Forza Horizon 2
## 2429                                                                                                                      Skate 2
## 2430                                                                                                               FIFA Soccer 08
## 2431                                                                                                         Army Men: Air Attack
## 2432                                                                                                        Need for Speed: Nitro
## 2433                                                                                                       Madden NFL 09 All-Play
## 2434                                                                                                                      NBA 2K8
## 2435                                                                                                              Far Cry: Primal
## 2436                                                                                                       Street Fighter Alpha 2
## 2437                                                                                                    Tiger Woods PGA Tour 2005
## 2438                                                                                                    Army of Two: The 40th Day
## 2439                                                                                            Blazing Angels: Squadrons of WWII
## 2440                                                                                             Castlevania III: Dracula's Curse
## 2441                                                                                    Harry Potter and the Order of the Phoenix
## 2442                                                                                                           Rampage World Tour
## 2443                                                                                                              Burnout Legends
## 2444                                                                                                                     WWE 2K15
## 2445                                                                                                                    Overwatch
## 2446                                                                                                                  Ratatouille
## 2447                                                                                                                  NFL GameDay
## 2448                                                                                                   Burnout 2: Point of Impact
## 2449                                                                                                        Kirby: Planet Robobot
## 2450                                                                                                           Street Fighter EX3
## 2451                                                                                                      Karaoke Revolution Glee
## 2452                                                                                                              Sniper Elite V2
## 2453                                                                                                                 Thief (2014)
## 2454                                                                                                                 Spider-Man 2
## 2455                                                                                                        Golden Sun: Dark Dawn
## 2456                                                                                                      Tiger Woods PGA Tour 11
## 2457                                                                                                  Devil May Cry HD Collection
## 2458                                                                                                             MLB 16: The Show
## 2459                                                                                                                     NBA 2K10
## 2460                                                                                                       Xenoblade Chronicles X
## 2461                                                                                                            Petz Dogz Fashion
## 2462                                                                                                              The Incredibles
## 2463                                                                                                             NCAA Football 11
## 2464                                                                                                                Dragon Age II
## 2465                                                                                                      ATV Quad Power Racing 2
## 2466                                                                                            Harvest Moon: Tree of Tranquility
## 2467                                                                                                                Final Fantasy
## 2468                                                                                                      Street Fighter X Tekken
## 2469                                                                                             Rocket Power: Team Rocket Rescue
## 2470                                                                                                           Duke Nukem Forever
## 2471                                                                                                           Big Mutha Truckers
## 2472                                                                                         Borderlands: The Handsome Collection
## 2473                                                                                                                 Rogue Galaxy
## 2474                                                                                                       ESPN College Hoops 2K5
## 2475                                                                                                        Metroid: Zero Mission
## 2476                                                                                                                      FIFA 15
## 2477                                                                                                                Time Crisis 4
## 2478                                                                                                   Ben 10: Protector of Earth
## 2479                                                                                                        Need for Speed Rivals
## 2480                                                                                                                       Q*bert
## 2481                                                                                                   WWE SmackDown vs. Raw 2009
## 2482                                                                                                  Ace Combat 3: Electrosphere
## 2483                                                                                                           Dynasty Warriors 2
## 2484                                                                                                  Battle of Giants: Dinosaurs
## 2485                                                               Umineko no Naku Koro ni San: Shinjitsu to Gensou no Yasoukyoku
## 2486                                                                                             Lizzie McGuire 2: Lizzie Diaries
## 2487                                                                                                                Borderlands 2
## 2488                                                                                               FIFA Soccer World Championship
## 2489                                                                                                                  Brute Force
## 2490                                                                                                              Dance Central 3
## 2491                                                                                                  Yu-Gi-Oh! Dark Duel Stories
## 2492                                                                                                             The Game of Life
## 2493                                                                                                             Mega Man Legends
## 2494                                                                                                             NCAA Football 12
## 2495                                                                                                   Sly 3: Honor Among Thieves
## 2496                                                                                                           The Price is Right
## 2497                                                                                          Sid Meier's Civilization Revolution
## 2498                                                                                                  Wii de Asobu: Metroid Prime
## 2499                                                                                                             I Spy: Fun House
## 2500                                                                                     The Amazing Spider-Man (Console Version)
## 2501                                                                                                  Dragon Ball: Raging Blast 2
## 2502                                                                                                                     MediEvil
## 2503                                                                                                                       Casper
## 2504                                                                                                                Deca Sports 2
## 2505                                                                                                    James Bond 007: Nightfire
## 2506                                                                                                                Madden NFL 17
## 2507                                                                                              Tony Hawk's Underground 2 Remix
## 2508                                                                                                     Tony Hawk's Pro Skater 3
## 2509                                                                                                    Marvel: Ultimate Alliance
## 2510                                                                                    Star Wars The Clone Wars: Republic Heroes
## 2511                                                                                                                    DJ Hero 2
## 2512                                                                                                             Street Fighter V
## 2513                                                                                                Need for Speed: Hot Pursuit 2
## 2514                                                                                                                 Clu Clu Land
## 2515                                                                                                         Killer Instinct Gold
## 2516                                                                                                Amped: Freestyle Snowboarding
## 2517                                                                                                             Custer's Revenge
## 2518                                                                                                       MediEvil: Resurrection
## 2519                                                                                                           DmC: Devil May Cry
## 2520                                                                                                           Tales of the Abyss
## 2521                                                                                                  Rocket Power: Beach Bandits
## 2522                                                                                                Guitar Hero: Warriors of Rock
## 2523                                                                                                   Hasbro Family Game Night 3
## 2524                                                                                                                Madden NFL 16
## 2525                                                                                                                 Stranglehold
## 2526                                                                                                           Imagine: Rock Star
## 2527                                                                                                Shin Megami Tensei: Persona 4
## 2528                                                                                                              SingStar Vol. 2
## 2529                                                                                                        Payout Poker & Casino
## 2530                                                                                                                Madden NFL 25
## 2531                                                                                                         Twisted Metal (2012)
## 2532                                                                                                           Dragon Warrior III
## 2533                                                                      Disney's The Little Mermaid: Ariel's Undersea Adventure
## 2534                                                                                               Ready 2 Rumble Boxing: Round 2
## 2535                                                                                                           Kamaitachi no Yoru
## 2536                                                                                                                      Patapon
## 2537                                                                                                          Tales of Destiny II
## 2538                                                                                                            Super Bomberman 2
## 2539                                                                                                                  NASCAR 2001
## 2540                                                                                           EA Sports Active NFL Training Camp
## 2541                                                                                  The Legend of Zelda: Four Swords Adventures
## 2542                                                                                   Jikkyou Powerful Pro Yakyuu '99 Kaimakuban
## 2543                                                                                                             Guitar Hero Live
## 2544                                                                                                             Valkyrie Profile
## 2545                                                                                                         Final Fantasy Type-0
## 2546                                                                                                    Pro Evolution Soccer 2010
## 2547                                                                                                     Army Men: Sarge's Heroes
## 2548                                                                                                                     Mega Man
## 2549                                                                                                   Tom Clancy's Rainbow Six 3
## 2550                                                                                                 Lego Batman 3: Beyond Gotham
## 2551                                                                                                                   EarthBound
## 2552                                                                                                                       DiRT 2
## 2553                                                                             Professor Layton vs Phoenix Wright: Ace Attorney
## 2554                                                                                                              The Next Tetris
## 2555                                                                                                                  Dying Light
## 2556                                                                                                             NCAA Football 10
## 2557                                                                                                          Ben 10: Alien Force
## 2558                                                                  World Soccer Jikkyou Winning Eleven 3: World Cup France '98
## 2559                                                                                       Final Fantasy XI: Wings of the Goddess
## 2560                                                                                                                   The Sims 2
## 2561                                                                                                       Guitar Hero: Metallica
## 2562                                                                                                             NCAA Football 14
## 2563                                                                                                                     MadWorld
## 2564                                                                                                         Fight Night Champion
## 2565                                                                                                Who wants to be a millionaire
## 2566                                                                                                                       Yakuza
## 2567                                                                                   Star Wars Rogue Squadron III: Rebel Strike
## 2568                                                                                                          ABBA: You Can Dance
## 2569                                                                                                                   Moto Racer
## 2570                                                                                                            Hitman: Contracts
## 2571                                                                                                             The Sims 2: Pets
## 2572                                                                                                      Final Fantasy Anthology
## 2573                                                                                                     Aliens: Colonial Marines
## 2574                                                                                                    Pro Evolution Soccer 2010
## 2575                                                                                                                [Prototype 2]
## 2576                                                                             Sonic & SEGA All-Stars Racing with Banjo-Kazooie
## 2577                                                                                                      Goldeneye 007: Reloaded
## 2578                                                                                                                     NBA 2K16
## 2579                                                                                                         All Star Cheer Squad
## 2580                                                                                                         The Sims 2: Castaway
## 2581                                                                                             Prince of Persia: Warrior Within
## 2582                                                                                                               Dragon's Dogma
## 2583                                                                                                                Darksiders II
## 2584                                                                                                   Resident Evil: Revelations
## 2585                                                                                                      Rayman Raving Rabbids 2
## 2586                                                                                                         Super Robot Taisen α
## 2587                                                                                                  Wii de Asobu: Metroid Prime
## 2588                                                                                                Need for Speed: Hot Pursuit 2
## 2589                                                                                            Star Wars: The Force Unleashed II
## 2590                                                                                                                    Band Hero
## 2591                                                                         Mario & Sonic at the Sochi 2014 Olympic Winter Games
## 2592                                                                                                           Tales of Destiny 2
## 2593                                                                                                     Capcom's Soccer Shootout
## 2594                                                                                                        Sniper: Ghost Warrior
## 2595                                                                                                             The Godfather II
## 2596                                                                                                    pro evolution soccer 2011
## 2597                                                                                                                        Alien
## 2598                                                                                           Dragon Ball Z: Budokai Tenkaichi 2
## 2599                                                                                                 The Walking Dead: Season One
## 2600                                                                                                               Rayman Origins
## 2601                                                                                                       Guitar Hero: Aerosmith
## 2602                                                                                                                  Ridge Racer
## 2603                                                                               Final Fantasy Tactics A2: Grimoire of the Rift
## 2604                                                                                               Harvest Moon: A Wonderful Life
## 2605                                                                                                         Momotarou Dentetsu 7
## 2606                                                                                                                   Invizimals
## 2607                                                                                                              Motocross Mania
## 2608                                                                                                      Tiger Woods PGA Tour 10
## 2609                                                                                      Star Wars The Clone Wars: Jedi Alliance
## 2610                                                                                                                   WCW Mayhem
## 2611                                                                                                                   Mega Man 5
## 2612                                                                                                    Star Ocean: The Last Hope
## 2613                                                                                           Dance Dance Revolution SuperNOVA 2
## 2614                                                                                                               Armored Core 2
## 2615                                                                                                      Dragon Quest Monsters 2
## 2616                                                                                                                  Ghost Squad
## 2617                                                                                                         Dead Island: Riptide
## 2618                                                                                                                Drawn to Life
## 2619                                                                               Major League Baseball Featuring Ken Griffey Jr
## 2620                                                                                                                      FIFA 12
## 2621                                                                                                                    Too Human
## 2622                                                                                          Sid Meier's Civilization Revolution
## 2623                                                                                                             NCAA Football 08
## 2624                                                                                                             FIFA Soccer 2004
## 2625                                                                                                    Personal Trainer: Walking
## 2626                                                                                     Naruto Shippuden: Ultimate Ninja Storm 2
## 2627                                                                                                   PokePark 2: Wonders Beyond
## 2628                                                                                        Professor Layton and the Azran Legacy
## 2629                                                                                     Tom Clancy's Splinter Cell: Double Agent
## 2630                                                                                                                Yars' Revenge
## 2631                                                                                                                         Lips
## 2632                                                                                    Secret Agent Barbie: Royal Jewels Mission
## 2633                                                                                                        Metroid Prime Hunters
## 2634                                                                                                                The 7th Guest
## 2635                                                                                                                         Doom
## 2636                                                                                                     Buzz! The Hollywood Quiz
## 2637                                                                                                                Puzzler World
## 2638                                                                                           My Little Pony: Pinkie Pie's Party
## 2639                                                                                                                      We Sing
## 2640                                                                                     Marvel vs. Capcom: Clash of Super Heroes
## 2641                                                                                                              God of War Saga
## 2642                                                                                                              Battle Stations
## 2643                                                                                                          Tetris Party Deluxe
## 2644                                                                                                    Pro Evolution Soccer 2016
## 2645                                                                                                          Worms: Open Warfare
## 2646                                                                                        Star Wars Battlefront: Elite Squadron
## 2647                                                                            UFC Personal Trainer: The Ultimate Fitness System
## 2648                                                                                        Resident Evil: Operation Raccoon City
## 2649                                                                                                                      NBA 2K7
## 2650                                                                                                    Need for Speed: ProStreet
## 2651                                                                                                  Toy Story 3: The Video Game
## 2652                                                                                     Torneko no Daibouken: Fushigi no Dungeon
## 2653                                                                                                                  Jr. Pac-Man
## 2654                                                                                                    James Bond 007: Nightfire
## 2655                                                                                                  Banjo-Kazooie: Nuts & Bolts
## 2656                                                                                                              NBA ShootOut 98
## 2657                                                                                                             Avatar: The Game
## 2658                                                                                       Harry Potter and the Half-Blood Prince
## 2659                                                                                                                      DJ Hero
## 2660                                                                                                            Perfect Dark Zero
## 2661                                                                                                                     Galaxian
## 2662                                                                                                              Andretti Racing
## 2663                                                                                 Caesars Palace 2000: Millennium Gold Edition
## 2664                                                                                                                Madden NFL 25
## 2665                                                                                                                     Air Raid
## 2666                                                                                                   Need For Speed: Undercover
## 2667                                                                                                           Duke Nukem Forever
## 2668                                                                                                                 Freedom Wars
## 2669                                                                                       Marvel Nemesis: Rise of the Imperfects
## 2670                                                                                                                       Boxing
## 2671                                                                                            Need for Speed: Porsche Unleashed
## 2672                                                                                                    Dragon Ball: Raging Blast
## 2673                                                                                                              Crystal Castles
## 2674                                                                                                         Conker's Bad Fur Day
## 2675                                                                                                          Dragon Warrior I&II
## 2676                                                                                   Star Wars Episode II: Attack of the Clones
## 2677                                                                                                                 My Baby Girl
## 2678                                                                                               LEGO Batman 2: DC Super Heroes
## 2679                                                                                                       Twisted Metal: Head On
## 2680                                                                                  Conflict: Desert Storm II - Back to Bagdhad
## 2681                                                                                                      Maximo: Ghosts to Glory
## 2682                                                                                                                 Pokemon Dash
## 2683                                                                                                        Donkey Kong Country 3
## 2684                                                                                                       All-Star Baseball 2003
## 2685                                                                                                               Unlimited Saga
## 2686                                                                                              Cabela's Deer Hunt: 2004 Season
## 2687                                                                                                              Sonic Unleashed
## 2688                                                                                                                    Formula 1
## 2689                                                                                           Plants vs. Zombies: Garden Warfare
## 2690                                                                                               Raving Rabbids: Travel in Time
## 2691                                                                                                                   The Sims 3
## 2692                                                                                                                       Driv3r
## 2693                                                                                       Mercenaries: Playground of Destruction
## 2694                                                                                                     MTV Celebrity Deathmatch
## 2695                                                                                       Street Fighter Alpha: Warriors' Dreams
## 2696                                                                                                                Mortal Kombat
## 2697                                                                                                            ISS Pro Evolution
## 2698                                                                                                                Lost Planet 2
## 2699                                                                                                                SoulCalibur V
## 2700                                                                                                                     Portal 2
## 2701                                                                                              Super Monkey Ball: Touch & Roll
## 2702                                                                                                    Pro Evolution Soccer 2015
## 2703                                                                                              Drawn to Life: The Next Chapter
## 2704                                                                                              The Lord of the Rings: Conquest
## 2705                                                                                                             Final Fantasy II
## 2706                                                                                                     Tony Hawk's Pro Skater 2
## 2707                                                                                   Taiko no Tatsujin: Tatakon de Dodon ga Don
## 2708                                                                           Mega Man Battle Network 6: Cybeast Falzar / Gregar
## 2709                                                                                              Syphon Filter: The Omega Strain
## 2710                                                                                                               FIFA Soccer 11
## 2711                                                                                                                   Deer Drive
## 2712                                                                                                       Kane & Lynch: Dead Men
## 2713                                                                                                Assassin's Creed: Revelations
## 2714                                                                                                     Mortal Kombat: Deception
## 2715                                                                                 Ace Attorney Investigations: Miles Edgeworth
## 2716                                                                                                              That's So Raven
## 2717                                                                                                                      FIFA 15
## 2718                                                                                       Marvel vs. Capcom 2: New Age of Heroes
## 2719                                                                                                        Need for Speed: Shift
## 2720                                                                                                       Kane & Lynch: Dead Men
## 2721                                                                                                                Dark Souls II
## 2722                                                                                                    True Crime: New York City
## 2723                                                                                                         Legends of Wrestling
## 2724                                                                                         Rockstar Games presents Table Tennis
## 2725                                                                                                             Monopoly Streets
## 2726                                                                                                     Genji: Days of the Blade
## 2727                                                                                                  Harvest Moon: Animal Parade
## 2728                                                                                                     Final Fantasy Legend III
## 2729                                                                                                           Total War: Rome II
## 2730                                                                                                                  Rare Replay
## 2731                                                                                                                   Spectrobes
## 2732                                                                                                                       Wall-E
## 2733                                                                                                   WWE SmackDown vs. Raw 2009
## 2734                                                                                                                    Band Hero
## 2735                                                                                                                  Mega Man X5
## 2736                                                                                                                     Tearaway
## 2737                                                                                                                    DJ Hero 2
## 2738                                                                                                             The Godfather II
## 2739                                                                                                   WWE SmackDown vs. Raw 2010
## 2740                                                                                                                        Turok
## 2741                                                                                                                [Prototype 2]
## 2742                                                                                                                   Shark Tale
## 2743                                                                                           San Francisco Rush: Extreme Racing
## 2744                                                                                     The Amazing Spider-Man (Console Version)
## 2745                                                                                                           Zone of the Enders
## 2746                                                                                                       Red Faction: Guerrilla
## 2747                                                                                                 Street Fighter EX Plus Alpha
## 2748                                                                                                                Madden NFL 06
## 2749                                                                                                                   Coded Arms
## 2750                                                                                                    Tony Hawk's Underground 2
## 2751                                                                                                            Tales of Vesperia
## 2752                                                                                   X-Men Origins: Wolverine - Uncaged Edition
## 2753                                                                                                  Madagascar: Escape 2 Africa
## 2754                                                                                                                 Split/Second
## 2755                                                                                Capcom vs. SNK 2: Mark of the Millennium 2001
## 2756                                                                                                         MVP 06 NCAA Baseball
## 2757                                                                                                              Just Dance 2015
## 2758                                                                                                  Borderlands: The Pre-Sequel
## 2759                                                                                                            LittleBigPlanet 3
## 2760                                                                                                  Marvel: Ultimate Alliance 2
## 2761                                                                                                       Sega Superstars Tennis
## 2762                                                                                                 The Walking Dead: Season One
## 2763                                                                                                  Ace Combat: Assault Horizon
## 2764                                                                                                          Jump Ultimate Stars
## 2765                                                                                                          Jampack Summer 2001
## 2766                                                                                                            Resonance of Fate
## 2767                                                                                                                      Burnout
## 2768                                                                                              Tom Clancy's Rainbow Six: Vegas
## 2769                                                                                                         Final Fantasy XIII-2
## 2770                                                                                               LEGO Batman 2: DC Super Heroes
## 2771                                                                                                     Mortal Kombat: Unchained
## 2772                                                                                                     Mario & Luigi: Paper Jam
## 2773                                                                                              Yu-Gi-Oh! Dungeon Dice Monsters
## 2774                                                                                                                        Brink
## 2775                                                                                                     LEGO Marvel Super Heroes
## 2776                                                                                                                         Blur
## 2777                                                                                                                        Saint
## 2778                                                                                                           Namco Museum Remix
## 2779                                                                                                 Midnight Club 3: DUB Edition
## 2780                                                                                                                     Crysis 2
## 2781                                                                                        The Lord of the Rings: The Two Towers
## 2782                                                                                                    Tiger Woods PGA Tour 2001
## 2783                                                                                         Indiana Jones and the Staff of Kings
## 2784                                                                                                                   Jet Moto 3
## 2785                                                                           Naruto Shippuden: Ultimate Ninja Storm Generations
## 2786                                                                                                          Unreal Championship
## 2787                                                                                                               Steal Princess
## 2788                                                                                     Pirates of the Caribbean: At World's End
## 2789                                                                                                      Tiger Woods PGA Tour 08
## 2790                                                                                                             Persona 4: Arena
## 2791                                                                                                                Sword of Mana
## 2792                                                                                         Harvest Moon DS: Island of Happiness
## 2793                                                                                      Star Ocean: The Last Hope International
## 2794                                                                                                         The Sims 2: Castaway
## 2795                                                                                                   FIFA: Road to World Cup 98
## 2796                                                                                                 Dragon Ball Z: Ultime Menace
## 2797                                                                                              Classic NES Series: Donkey Kong
## 2798                                                                                                         Call of Duty: Ghosts
## 2799                                                                                                                        Yoshi
## 2800                                                                                                              Mortal Kombat 4
## 2801                                                                                                                      F1 2011
## 2802                                                                                                                Madden NFL 10
## 2803                                                                                                          Kirby: Canvas Curse
## 2804                                                                                                                       Croc 2
## 2805                                                                                                            Practise English!
## 2806                                                                                                    Oddworld: Munch's Oddysee
## 2807                                                                                                                      Berzerk
## 2808                                                                                                                       NHL 11
## 2809                                                                                                      Dragon Age: Inquisition
## 2810                                                                                                                       iCarly
## 2811                                                                                                                       DiRT 3
## 2812                                                                                                             NCAA Football 07
## 2813                                                                                                               Just Dance Wii
## 2814                                                                                                        Full Spectrum Warrior
## 2815                                                                                                              Katamari Damacy
## 2816                                                                                         Beyblade VForce: Ultimate Blader Jam
## 2817                                                                                                   Ratchet & Clank Collection
## 2818                                                                                                             Avatar: The Game
## 2819                                                                                               Shaun Palmer's Pro Snowboarder
## 2820                                                                                                            MX vs. ATV Reflex
## 2821                                                                                                   Imagine: Interior Designer
## 2822                                                                                                                          SSX
## 2823                                                                                                    Style Savvy: Trendsetters
## 2824                                                                                             James Bond 007: Agent Under Fire
## 2825                                                                                                          XCOM: Enemy Unknown
## 2826                                                                                                              Rabbids Go Home
## 2827                                                                                   Star Wars Episode III: Revenge of the Sith
## 2828                                                                                                          Ultimate Spider-Man
## 2829                                                                                                               FIFA Soccer 13
## 2830                                                                                                                    God Eater
## 2831                                                                                            Final Fantasy XIV: A Realm Reborn
## 2832                                                                                                       SD Gundam G Generation
## 2833                                                                                                                      Area 51
## 2834                                                                                                                  NBA Live 08
## 2835                                                                                                               Dead to Rights
## 2836                                                                                                      Tiger Woods PGA Tour 07
## 2837                                                                                                                 Test Drive 6
## 2838                                                                                                      Kouchuu Ouja Mushi King
## 2839                                                                                                 LEGO Harry Potter: Years 5-7
## 2840                                                                                                    Major League Baseball 2K7
## 2841                                                                                                      X-Men: Mutant Academy 2
## 2842                                                                                                                     Terraria
## 2843                                                                                                          Jampack Winter 2001
## 2844                                                                                                                     Kangaroo
## 2845                                                                                                  James Bond 007: Blood Stone
## 2846                                                                                                   Ben 10: Protector of Earth
## 2847                                                                                                                        Skate
## 2848                                                                                                        Super Monkey Ball Jr.
## 2849                                                                                                        Driver: San Francisco
## 2850                                                                                                             MLB 09: The Show
## 2851                                                                                                           Monster Hunter Tri
## 2852                                                                                      Mobile Suit Gundam: Encounters in Space
## 2853                                                                                                                    Catherine
## 2854                                                                                                                  Fear Effect
## 2855                                                                                                               FIFA Soccer 11
## 2856                                                                                                                       Crysis
## 2857                                                                                                   Battlefield: Bad Company 2
## 2858                                                                                        The Lord of the Rings: The Two Towers
## 2859                                                                                                              Madden NFL 2003
## 2860                                                               Dragon Quest Swords: The Masked Queen and the Tower of Mirrors
## 2861                                                                                                             MLB 13: The Show
## 2862                                                                                                    Omerta: City of Gangsters
## 2863                                                               Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 2864                                                                                                  Virtua Fighter 4: Evolution
## 2865                                                                                                                   Top Spin 4
## 2866                                                                                                      Resident Evil: Survivor
## 2867                                                                                                           Dynasty Warriors 6
## 2868                                                                                                          Super Trucks Racing
## 2869                                                                                           Persona Q: Shadow of the Labyrinth
## 2870                                                                                                                Madden NFL 08
## 2871                                                                                         Godzilla: Destroy All Monsters Melee
## 2872                                                                                               Jeremy McGrath Supercross 2000
## 2873                                                                                                    Conker: Live And Reloaded
## 2874                                                                                                                Silent Hill 3
## 2875                                                                                                                Madden NFL 09
## 2876                                                                                              Final Fantasy X/X-2 HD Remaster
## 2877                                                                                             Yu-Gi-Oh! The Falsebound Kingdom
## 2878                                                                                                               LEGO Rock Band
## 2879                                                                                                             MLB 10: The Show
## 2880                                                                                                   Spyro: Enter the Dragonfly
## 2881                                                                                             Scooby-Doo 2: Monsters Unleashed
## 2882                                                                                                  Power Rangers: Dino Thunder
## 2883                                                                                                     Rhythm Heaven: The Best+
## 2884                                                                                                                  LEGO Racers
## 2885                                                                                                                 WWF Attitude
## 2886                                                                                                                  Blast Corps
## 2887                                                                                                 LEGO Harry Potter: Years 1-4
## 2888                                                                                          Tactics Ogre: Let Us Cling Together
## 2889                                                                                            WarioWare, Inc.: Mega Party Game$
## 2890                                                                                                        Football Manager 2014
## 2891                                                                                                     Battle Arena Toshinden 2
## 2892                                                                                                   WWE SmackDown vs. Raw 2011
## 2893                                                                                                                    Jeopardy!
## 2894                                                                                                                   South Park
## 2895                                                                                         Metal Gear Solid V: The Phantom Pain
## 2896                                                                                                                   Two Worlds
## 2897                                                                                                 Doom 3: Resurrection of Evil
## 2898                                                                                                             NCAA Football 09
## 2899                                                                                                                  NBA Live 09
## 2900                                                                                              Ratchet & Clank: Into the Nexus
## 2901                                                                                                                 Spider-Man 2
## 2902                                                                                                   2014 FIFA World Cup Brazil
## 2903                                                                    London 2012: The Official Video Game of the Olympic Games
## 2904                                                                                                                       NHL 12
## 2905                                                                                                      Tony Hawk's Underground
## 2906                                                                                                         Infinite Undiscovery
## 2907                                                                                                            Super Bomberman 3
## 2908                                                                                     Command & Conquer: Red Alert Retaliation
## 2909                                                                                                   The Sims 2: Apartment Pets
## 2910                                                                                                           Star Wars: Obi-Wan
## 2911                                                                                                             NCAA Football 08
## 2912                                                                                                                  Kill.Switch
## 2913                                                                                                                   Lalaloopsy
## 2914                                                                                                              Madden NFL 2005
## 2915                                                                                                                  F-14 Tomcat
## 2916                                                                                                                   SplashDown
## 2917                                                                                                             NCAA Football 98
## 2918                                                                                                                  Jade Empire
## 2919                                                           Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 2920                                                                                                                   The Sims 3
## 2921                                                                                                        Skylanders: Trap Team
## 2922                                                                                        Prince of Persia: The Forgotten Sands
## 2923                                                                                                          Chocobo's Dungeon 2
## 2924                                                                                                                 Advance Wars
## 2925                                                                                                    Hannah Montana: The Movie
## 2926                                                                                                                 World of Zoo
## 2927                                                                                                     Ape Escape: On the Loose
## 2928                                                                                                                  NASCAR 2001
## 2929                                                                                                IL-2 Sturmovik: Birds of Prey
## 2930                                                                                                               Book of Spells
## 2931                                                                                                           NCAA Football 2001
## 2932                                                                                                                        Mafia
## 2933                                                                                        Mobile Suit Gundam: Journey to Jaburo
## 2934                                                                                         Metal Gear Solid V: The Phantom Pain
## 2935                                                                                                              TimeSplitters 2
## 2936                                                                                                                 MotionSports
## 2937                                                                                                             MLB 08: The Show
## 2938                                                                          Classic NES Series: Zelda II: The Adventure of Link
## 2939                                                                                                  Fire Emblem: Monsh? no Nazo
## 2940                                                                                                      Disney's Chicken Little
## 2941                                                                                                                    King Kong
## 2942                                                                                                                     WWE 2K15
## 2943                                                                                                     The LEGO Movie Videogame
## 2944                                                                                   X-Men Origins: Wolverine - Uncaged Edition
## 2945                                                                                          Metal Gear Solid: Portable Ops Plus
## 2946                                                                                                               Disney Tangled
## 2947                                                                                                              Shrek the Third
## 2948                                                                                                                 Mario Tennis
## 2949                                                                                                                 Moto Racer 2
## 2950                                                                                                  Halo 2 Multiplayer Map Pack
## 2951                                                                                                        Minecraft: Story Mode
## 2952                                                                                                 Mortal Kombat: Shaolin Monks
## 2953                                                                                            MX vs. ATV Unleashed: On the Edge
## 2954                                                                                                        Skylanders: Trap Team
## 2955                                                                                                           Mario Pinball Land
## 2956                                                                                                                        Mappy
## 2957                                                                                                  J-League Soccer: Prime Goal
## 2958                                                                                                       Dragon Ball Z: Budokai
## 2959                                                                                                                   NFL Xtreme
## 2960                                                                                                           The Sly Collection
## 2961                                                                                                 One Piece: Pirate Warriors 2
## 2962                                                                                              Assassin's Creed IV: Black Flag
## 2963                                                                                      Harry Potter and the Chamber of Secrets
## 2964                                                                                            Need for Speed: Shift 2 Unleashed
## 2965                                                                                The Lord of the Rings: The Return of the King
## 2966                                                                    Nintendo Presents: New Style Boutique 2 - Fashion Forward
## 2967                                                                                                           MX vs. ATV Untamed
## 2968                                                                                                             The Last Remnant
## 2969                                                                                                         Frozen: Olaf's Quest
## 2970                                                                                                           The Sims: Medieval
## 2971                                                                                              Baldur's Gate: Dark Alliance II
## 2972                                                                                                                   Shark Tale
## 2973                                                                                           Plants vs. Zombies: Garden Warfare
## 2974                                                                                    Kirby's Dream Collection: Special Edition
## 2975                                                                                                     Bakugan: Battle Brawlers
## 2976                                                                                             Star Wars: Masters of Teras Kasi
## 2977                                                                                                               The Last Story
## 2978                                                                                                            NBA Street Vol. 2
## 2979                                                                                                                     Iron Man
## 2980                                                                                                          Disney Infinity 3.0
## 2981                                                                                                                 Spider-Man 3
## 2982                                                                                                           NCAA Football 2005
## 2983                                                                                          Mortal Kombat Mythologies: Sub-Zero
## 2984                                                                                                               Rayman Legends
## 2985                                                                                                       Naruto: Clash of Ninja
## 2986                                                                                            Prince of Persia: The Two Thrones
## 2987                                                                                                   Hot Shots Golf: Open Tee 2
## 2988                                                                                                            Metro: Last Light
## 2989                                                                                                   Fossil Fighters: Champions
## 2990                                                                                       Mercenaries: Playground of Destruction
## 2991                                                                                                               Sniper Elite 3
## 2992                                                                                                                  Doom (2016)
## 2993                                                                                                              Bushido Blade 2
## 2994                                                                                                                  Suikoden II
## 2995                                                                                                        Need for Speed (2015)
## 2996                                                                                            Cars: Mater-National Championship
## 2997                                                                                                               FIFA Soccer 06
## 2998                                                                                              Hidden Objects: Mystery Stories
## 2999                                                                                                                    Red Steel
## 3000                                                                                                             Fight Night 2004
## 3001                                                                                    Tourist Trophy: The Real Riding Simulator
## 3002                                                                                                                  Mass Effect
## 3003                                                                                                       .hack//Mutation Part 2
## 3004                                                                                                                Country Dance
## 3005                                                                                                                        Turok
## 3006                                                                                                    Midway Arcade Treasures 2
## 3007                                                                                                            100 Classic Books
## 3008                                                                                                        Unreal Tournament III
## 3009                                                                              Final Fantasy Crystal Chronicles: Ring of Fates
## 3010                                                                                   Return to Castle Wolfenstein: Tides of War
## 3011                                                                                                        Need for Speed Rivals
## 3012                                                                                                            Lollipop Chainsaw
## 3013                                                                                                                 The Darkness
## 3014                                                                                                                 Street Sk8er
## 3015                                                                        Club Penguin: Elite Penguin Force - Herbert's Revenge
## 3016                                                                                                        Contra: Legacy of War
## 3017                                                                                            Blazing Angels: Squadrons of WWII
## 3018                                                                                                       Fight Night Round 2004
## 3019                                                                                                   Wolfenstein: The New Order
## 3020                                                                                                 The Biggest Loser: Challenge
## 3021                                                         Zaidan Houjin Nippon Kanji Nouryoko Kentei Kyoukai Kounin: KanKen DS
## 3022                                                                                                                  Spice World
## 3023                                                                                                 Star Wars: Republic Commando
## 3024                                                                                                               Armored Core 3
## 3025                                                                                                   Need For Speed: Undercover
## 3026                                                                                                        Taiko no Tatsujin Wii
## 3027                                                                                                     The Witcher 3: Wild Hunt
## 3028                                                                                Virtua Tennis: World Tour (US & Others sales)
## 3029                                                                                                     The LEGO Movie Videogame
## 3030                                                                                                                  Ratatouille
## 3031                                                                                                                         RIFT
## 3032                                                                                                                  Wild ARMs 2
## 3033                                                                                Summer Sports: Paradise Island (Others sales)
## 3034                                                                                                 Castlevania: Lords of Shadow
## 3035                                                                                                            BioShock Infinite
## 3036                                                                                                        Minecraft: Story Mode
## 3037                                                                                                           TV Show King Party
## 3038                                                                                                                Crafting Mama
## 3039                                                                                                       007: Quantum of Solace
## 3040                                                                                                                  Rock Band 3
## 3041                                                                                               Command & Conquer: Red Alert 3
## 3042                                                                                     The Fairly Odd Parents: Breakin Da Rules
## 3043                                                                                                   WWE SmackDown vs. RAW 2007
## 3044                                                                                                     Peppa Pig: Fun and Games
## 3045                                                                                                           Adventures of Tron
## 3046                                                                       Phoenix Wright: Ace Attorney - Trials and Tribulations
## 3047                                                                                                                       NHL 13
## 3048                                                                                                  Borderlands: The Pre-Sequel
## 3049                                                                                              The Sims 3: High-End Loft Stuff
## 3050                                                                                                     Runaway: A Twist of Fate
## 3051                    Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Koushiki Soft: 200 Mannin no KanKen: Tokoton Kanji Nou
## 3052                                                                                                    Pro Pinball: Big Race USA
## 3053                                                                                                                   NFL Street
## 3054                                                                                                     Shaun White Snowboarding
## 3055                                                                                                     The LEGO Movie Videogame
## 3056                                                                                                   Tony Hawk's Proving Ground
## 3057                                                                                                                     MLB 2004
## 3058                                                                                           Naruto Shippuden: Ultimate Ninja 4
## 3059                                                                                                    Tiger Woods PGA Tour 2000
## 3060                                                                                                                    Darkstone
## 3061                                                                                                      NCAA March Madness 2003
## 3062                                                                                                                 Finding Nemo
## 3063                                                                                                                  Thrillville
## 3064                                                                                                                       NHL 10
## 3065                                                                                      Jikkyou World Soccer 2000 Final Edition
## 3066                                                                                                                   Madagascar
## 3067                                                                                                          Puzzler Brain Games
## 3068                                                                                         Dragon Quest Monsters: Caravan Heart
## 3069                                                                                   Strawberry Shortcake: Summertime Adventure
## 3070                                                                                                               Rayman Legends
## 3071                                                                                                               Rocksmith 2014
## 3072                                                                                        Street Fighter Anniversary Collection
## 3073                                                                                                             Legend of Legaia
## 3074                                                                                                          Napoleon: Total War
## 3075                                                                                           Fist of the North Star: Ken's Rage
## 3076                                                                                                    Wario: Master of Disguise
## 3077                                                                                                  Toy Story 3: The Video Game
## 3078                                                                                                        The Sims: Bustin' Out
## 3079                                                                                                      Tiger Woods PGA Tour 09
## 3080                                                                                                              Keystone Kapers
## 3081                                                                                                     LEGO Marvel Super Heroes
## 3082                                                                                                     New Play Control! Pikmin
## 3083                                                                                                  Shrek: Hassle at the Castle
## 3084                                                                                                                  Suikoden IV
## 3085                                                                                                             Gods Eater Burst
## 3086                                                                                    Disney's Kim Possible 2: Drakken's Demise
## 3087                                                                                                              Um Jammer Lammy
## 3088                                                                                            Brothers In Arms: Road to Hill 30
## 3089                                                                                                                Madden NFL 10
## 3090                                                               Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3091                                                                                      Taiko no Tatsujin DS: Touch de Dokodon!
## 3092                                                                                                                      F1 2015
## 3093                                                                                                   Scene It? Box Office Smash
## 3094                                                                                                     Animaniacs Ten Pin Alley
## 3095                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 3096                                                                                                                       NHL 13
## 3097                                                                                                                Kung Fu Panda
## 3098                                                                                                          Tom Clancy's EndWar
## 3099                                                                                                              The Evil Within
## 3100                                                                                                      Tiger Woods PGA Tour 09
## 3101                                                                                                              Radiata Stories
## 3102                                                                                                                    F-Zero GX
## 3103                                                                                                      Disney's Chicken Little
## 3104                                                                                                                       Wall-E
## 3105                                                                                                            Yoshi Topsy-Turvy
## 3106                                                                                                                           Up
## 3107                                                                                             Monster Jam: Maximum Destruction
## 3108                                                                                                     Real Heroes: Firefighter
## 3109                                                           Cartoon Network Block Party / Cartoon Network Speedway Double Pack
## 3110                                                                             World of Dragon Warrior - Torneko: The Last Hope
## 3111                                                                                              Drawn to Life: The Next Chapter
## 3112                                                                                                             MLB 14: The Show
## 3113                                                                                                      Tiger Woods PGA Tour 10
## 3114                                                                                            Advance Wars 2: Black Hole Rising
## 3115                                                                                                   Fire Emblem: Shadow Dragon
## 3116                                                                                                                    Centipede
## 3117                                                                                                                   Drakengard
## 3118                                                                                                            SingStar Pop Hits
## 3119                                                                                                               Kung-Fu Master
## 3120                                                                                                    Champions: Return to Arms
## 3121                                                                                          Harry Potter and the Goblet of Fire
## 3122                                                                                                                 SingStar R&B
## 3123                                                                                   Mary-Kate and Ashley: Magical Mystery Mall
## 3124                                                                                                           MX vs. ATV Untamed
## 3125                                                                                                   Disney Sing It: Party Hits
## 3126                                                                                                              Dead or Alive 5
## 3127                                                                                                  Star Ocean: First Departure
## 3128                                                                                                    Super Robot Taisen Impact
## 3129                                                                                                      Dragon Age: Inquisition
## 3130                                                                                               The Black Eyed Peas Experience
## 3131                                                             Meccha! Taiko no Tatsujin Master DS: 7-tsu no Shima no Daibouken
## 3132                                                                                               Sengoku Basara: Samurai Heroes
## 3133                                                                                                                     Crysis 3
## 3134                                                                                                        Paws & Claws: Pet Vet
## 3135                                                                                       Harry Potter and the Half-Blood Prince
## 3136                                                                                      Crash Bandicoot Purple: Ripto's Rampage
## 3137                                                                                                                   Diablo III
## 3138                                                                                                         Spyro: A Hero's Tail
## 3139                                                                                                          Crash of the Titans
## 3140                                                                                                     Aliens: Colonial Marines
## 3141                                                                                                            Crash: Twinsanity
## 3142                                                                                   Yu-Gi-Oh! 5D's Wheelie Breakers (JP sales)
## 3143                                                                                           Max Payne 2: The Fall of Max Payne
## 3144                                                                                                  Dragon Ball: Raging Blast 2
## 3145                                                                                                       GoldenEye: Rogue Agent
## 3146                                                                                                                     NBA 2K17
## 3147                                                                                               Lost Planet: Extreme Condition
## 3148                                                                                                          XCOM: Enemy Unknown
## 3149                                                                                                                    Rayman 3D
## 3150                                                                                                       LEGO Marvel's Avengers
## 3151                                                                                        James Bond 007: Everything or Nothing
## 3152                                                                                                      X2: Wolverine's Revenge
## 3153                                                                                                           Stuntman: Ignition
## 3154                                                                                                                  NBA Live 06
## 3155                                                                                                                Dragon Age II
## 3156                                                                                      LEGO Star Wars II: The Original Trilogy
## 3157                                                                                                     Tom Clancy's Rainbow Six
## 3158                                                                                                                  Castlevania
## 3159                                                                                                   Rayman 2: The Great Escape
## 3160                                                                        Nicktoons Collection: Game Boy Advance Video Volume 1
## 3161                                                                                              The Lord of the Rings: Conquest
## 3162                                                                                                              TimeSplitters 2
## 3163                                                                                                     Onimusha: Dawn of Dreams
## 3164                                                                                                                         NieR
## 3165                                                                                                    The Princess and the Frog
## 3166                                                                                                              Sega Rally Revo
## 3167                                                                       SpongeBob SquarePants: Game Boy Advance Video Volume 1
## 3168                                                                                                                 Gravity Rush
## 3169                                                                                   Konami Collector's Series: Arcade Advanced
## 3170                                                                                                   White Knight Chronicles II
## 3171                                                                                                                  Wolfenstein
## 3172                                                                                                     Jampack Volume 13 (RP-T)
## 3173                                                                                                              LEGO Dimensions
## 3174                                                                                                             Start the Party!
## 3175                                                                                                                Cruis'n World
## 3176                                                                                                              Madden NFL 2001
## 3177                                                                                                                  NBA Live 08
## 3178                                                                                          The Walking Dead: Survival Instinct
## 3179                                                                                                     Donkey Kong Barrel Blast
## 3180                                                                                                                        Okami
## 3181                                                                              Lemony Snicket's A Series of Unfortunate Events
## 3182                                                                                               Middle-Earth: Shadow of Mordor
## 3183                                                                                                    Family Feud: 2010 Edition
## 3184                                                                                                                  Red Steel 2
## 3185                                                                                         X-Men Legends II: Rise of Apocalypse
## 3186                                                                                                          Nightmare Creatures
## 3187                                                                                                               SingStar Queen
## 3188                                                                                                              Just Dance 2015
## 3189                                                                                                                      F1 2013
## 3190                                                                                                  Juiced 2: Hot Import Nights
## 3191                                                                                                    Tony Hawk's Pro Skater 2x
## 3192                                                                                                               Sim Theme Park
## 3193                                                                                                             FIFA Soccer 2003
## 3194                                                                                                 Ghostbusters: The Video Game
## 3195                                                                                                   Cabela's Alaskan Adventure
## 3196                                                                                                NASCAR 06: Total Team Control
## 3197                                                                                                        Tony Hawk's Project 8
## 3198                                                                                                                         Dogz
## 3199                                                                                                              Disney Universe
## 3200                                                                                                       Guitar Hero: Metallica
## 3201                                                                                                                     Iron Man
## 3202                                                                            Taiko no Tatsujin: Chibi Dragon to Fushigi na Orb
## 3203                                                                                       Harry Potter and the Half-Blood Prince
## 3204                                                                                                                 A Bug's Life
## 3205                                                                                                         Super Castlevania IV
## 3206                                                                                                                    DJ Hero 2
## 3207                                                                                                          Angry Birds Trilogy
## 3208                                                                                                       Condemned 2: Bloodshot
## 3209                                                                                              Cabela's Big Game Hunter (2008)
## 3210                                                                                        Mobile Suit Z Gundam: AEUG vs. Titans
## 3211                                                                                                                 Just Dance 3
## 3212                                                                                                      Call of Duty: Black Ops
## 3213                                                                                                               God of War III
## 3214                                                                                                                 Ape Escape 2
## 3215                                                                                                       Metroid Prime: Trilogy
## 3216                                                                                                                        X-Man
## 3217                                                           Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 3218                                                                                   Writing and Speaking Beautiful Japanese DS
## 3219                                                                                                      The Sims 3: Generations
## 3220                                                                                                                     The Crew
## 3221                                                                                                    Battle of Giants: Dragons
## 3222                                                                                                Dragon Quest Monsters Joker 3
## 3223                                                                                         Sonic & All-Stars Racing Transformed
## 3224                                                                                            Shin Megami Tensei: Persona 3 FES
## 3225                                                                                                             FIFA Soccer 2002
## 3226                                                                                       Shin Megami Tensei: Persona 3 Portable
## 3227                                                                                              Final Fantasy VII International
## 3228                                                                                         Tiger Woods PGA Tour 12: The Masters
## 3229                                                                                                                        Okami
## 3230                                                                                                                     NHL 2001
## 3231                                                                                                                 World of Zoo
## 3232                                                                                                          LEGO Jurassic World
## 3233                                                                                                                          Wet
## 3234                                                                                                                MySims Racing
## 3235                                                                                               Buzz Lightyear of Star Command
## 3236                                                                                                                 Namco Museum
## 3237                                                                                                   Nobunaga no Yabou: Haouden
## 3238                                                                                                                   Virtua Cop
## 3239                                                                                                                 Virtua Quest
## 3240                                                                                               Tony Hawk's American Wasteland
## 3241                                                                                                            WWF in Your House
## 3242                                                                                        Prince of Persia: The Forgotten Sands
## 3243                                                                                                                     Vanquish
## 3244                                                                                                                  Wild ARMs 3
## 3245                                                                                                             NBA ShootOut '97
## 3246                                                                                                       Sacred 2: Fallen Angel
## 3247                                                                                                                Madden NFL 07
## 3248                                                                                                                    Far Cry 4
## 3249                                                                                                                   Battlezone
## 3250                                                                                                    Tiger Woods PGA Tour 2004
## 3251                                                                                LEGO Pirates of the Caribbean: The Video Game
## 3252                                                                                                    Pro Evolution Soccer 2015
## 3253                                                                                                                       Evolve
## 3254                                                                                                   Tak 2: The Staff of Dreams
## 3255                                                                                                         Dead Island: Riptide
## 3256                                                                                                            Warriors Orochi 3
## 3257                                                                                                                         Bolt
## 3258                                                                                                                Viewtiful Joe
## 3259                                                                                                   The Urbz: Sims in the City
## 3260                                                                                                     Beetle Adventure Racing!
## 3261                                                                                                                  FIFA Soccer
## 3262                                                                               Disney's 102 Dalmatians: Puppies to the Rescue
## 3263                                                                                                            Wipeout: The Game
## 3264                                                                                                         Strike Force Bowling
## 3265                                                                                            SpongeBob's Atlantis SquarePantis
## 3266                                                                                            Metal Gear Solid V: Ground Zeroes
## 3267                                                                                                                    Halloween
## 3268                                                                                            Dragon Ball Z: Ultimate Tenkaichi
## 3269                                                                                                   WWE SmackDown vs. Raw 2010
## 3270                                                                                                                 Bass Landing
## 3271                                                                                           XGRA: Extreme G-Racing Association
## 3272                                                                                                              Mario's Picross
## 3273                                                                                               Pac-Man Player's Choice Bundle
## 3274                                                                                                               Rocksmith 2014
## 3275                                                                                                             Fighters MEGAMiX
## 3276                                                                                                               Bahamut Lagoon
## 3277                                                                                                                       Wall-E
## 3278                                                                                    Tomb Raider III: Adventures of Lara Croft
## 3279                                                                                                      Toshochu: Run for Money
## 3280                                                                                  Dragon Quest Monsters: Joker 2 Professional
## 3281                                                                                                      NFL Quarterback Club 99
## 3282                                                                                                  Super Robot Taisen α Gaiden
## 3283                                                                                              Formula 1: Championship Edition
## 3284                                                                                                    Muramasa: The Demon Blade
## 3285                                                                                                                      NBA 2K9
## 3286                                                                                               SingStar Singalong With Disney
## 3287                                                                                                                       NHL 16
## 3288                                                                                           Plants vs. Zombies: Garden Warfare
## 3289                                                                                                               NFL Fever 2003
## 3290                                                                                                           Samurai Warriors 2
## 3291                                                                                                           Dynasty Warriors 8
## 3292                                                                                                  Disney Sing It: Family Hits
## 3293                                                                                  2 Games in 1: Sonic Battle & ChuChu Rocket!
## 3294                                                                                                          Robotech: Battlecry
## 3295                                                                                               Dora the Explorer: Super Spies
## 3296                                                                                                           New Carnival Games
## 3297                                                                                                              Tony Hawk: RIDE
## 3298                                                                                                              Just Dance 2014
## 3299                                                                                               Cooking Mama 4: Kitchen Magic!
## 3300                                                                                                         Texas Hold 'Em Poker
## 3301                                                                                                                Time Crisis 3
## 3302                                                                                                 Cabela's Monster Buck Hunter
## 3303                                                                                               Ganbaru Watashi no Kakei Diary
## 3304                                                                                                    pro evolution soccer 2011
## 3305                                                                                    New Play Control! Donkey Kong Jungle Beat
## 3306                                                                                                               Small Soldiers
## 3307                                                                                                           Yakuza: Dead Souls
## 3308                                                                                                    Littlest Pet Shop: Garden
## 3309                                                                                                                  Half-Life 2
## 3310                                                                                                   Duke Nukem: Total Meltdown
## 3311                                                                                                                Pac-Man Party
## 3312                                                                                            Jak and Daxter: The Lost Frontier
## 3313                                                                                                    Major League Baseball 2K8
## 3314                                                                                                                   SimCity DS
## 3315                                                                                                    Major League Baseball 2K9
## 3316                                                                                                              Petz: Dogz Pack
## 3317                                                                                                                 Split/Second
## 3318                                                                                                     Final Fantasy IV Advance
## 3319                                                                                                              Madden NFL 2003
## 3320                                                                                                       Tomb Raider Chronicles
## 3321                                                                                          Harry Potter and the Goblet of Fire
## 3322                                                                                                    Dragon Ball Z: Buu's Fury
## 3323                                                                                                              Madden NFL 2002
## 3324                                                                                                      Guitar Hero: Smash Hits
## 3325                                                                              Disney TH!NK Fast: The Ultimate Trivia Showdown
## 3326                                                                                                Spider-Man: Mysterio's Menace
## 3327                                                                                                              Madden NFL 2000
## 3328                                                               Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3329                                                                                                       Game & Watch Gallery 4
## 3330                                                                                                    Littlest Pet Shop: Jungle
## 3331                                                                                                       Naruto: Ultimate Ninja
## 3332                                                                                                             Fighters Uncaged
## 3333                                                                                               Call of Juarez: Bound in Blood
## 3334                                                                                                   New Play Control! Pikmin 2
## 3335                                                                                                      Tony Hawk's Underground
## 3336                                                                                           Hot Shots Golf: World Invitational
## 3337                                                                                                               Monster Trucks
## 3338                                                                                                          Shadow The Hedgehog
## 3339                                                                                                        Wave Race: Blue Storm
## 3340                                                                                   Backyard Wrestling: Don't Try This at Home
## 3341                                                                                                          Fight Night Round 2
## 3342                                                                                            MonHun Nikki: Poka Poka Ailu Mura
## 3343                                                                                                           The Golden Compass
## 3344                                                                                                                      NBA 2K8
## 3345                                                                                   Phineas and Ferb: Across the 2nd Dimension
## 3346                                                                                                              Disney Infinity
## 3347                                                                                      Shonen Jump's Yu-Gi-Oh! GX Card Almanac
## 3348                                                                                                             WarioWare D.I.Y.
## 3349                                                                                                              Tony Hawk: RIDE
## 3350                                                                                                          LEGO Jurassic World
## 3351                                                                                                       Alice: Madness Returns
## 3352                                                                                                              LEGO The Hobbit
## 3353                                                                                                                     Suikoden
## 3354                                                                                                           Secret Agent Clank
## 3355                                                                                                                 Rayman Arena
## 3356                                                                                                             Avatar: The Game
## 3357                                                                                                               Jaws Unleashed
## 3358                                                                                                                Puyo Puyo Sun
## 3359                                                                                                                    Half-Life
## 3360                                                                                                           Tomb Raider (2013)
## 3361                                                                                                        Mickey's Speedway USA
## 3362                                                                                            International Superstar Soccer 64
## 3363                                                                                                        Skylanders SWAP Force
## 3364                                                                                                             NASCAR Heat 2002
## 3365                                                                           Disney Sing It! High School Musical 3: Senior Year
## 3366                                                                                  From TV Animation One Piece: Grand Battle 2
## 3367                                                                                                      BeatMania Append 3rdMix
## 3368                                                                                               PGR3 - Project Gotham Racing 3
## 3369                                                                                                          XCOM: Enemy Unknown
## 3370                                                                                                                         Blur
## 3371                                                                                                       Xena: Warrior Princess
## 3372                                                                                                     Scribblenauts: Unlimited
## 3373                                                                                                                Front Mission
## 3374                                                                                                                       NHL 11
## 3375                                                                                        Kinect Rush: A Disney Pixar Adventure
## 3376                                                                                                                     Monopoly
## 3377                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 3378                                                                                                    Major League Baseball 2K7
## 3379                                                                                                            Asphalt: Urban GT
## 3380                                                                                                        The Fight: Lights Out
## 3381                                                                                                Dai-2-Ji Super Robot Taisen α
## 3382                                                                                                              Pokemon Trozei!
## 3383                                                                                                                   Dead Space
## 3384                                                                                            Hot Wheels: Stunt Track Challenge
## 3385                                                                                                               Rayman Origins
## 3386                                                                    London 2012: The Official Video Game of the Olympic Games
## 3387                                                                                                                 Beijing 2008
## 3388                                                                             Dai-3-Ji Super Robot Taisen α: Shuuen no Ginga e
## 3389                                                                                                                    Jeopardy!
## 3390                                                                                   Jikkyou Powerful Pro Yakyuu '97 Kaimakuban
## 3391                                                                                                Assassin's Creed: Brotherhood
## 3392                                                                                                                   CyberTiger
## 3393                                                                                                            Jampack Fall 2001
## 3394                                                                                                    Medal of Honor: Frontline
## 3395                                                                                         Final Fantasy: The 4 Heroes of Light
## 3396                                                                                                                     Iron Man
## 3397                                                                                                     Kane & Lynch 2: Dog Days
## 3398                                                                                                               NFL Blitz 2001
## 3399                                                                                                          Total War: Shogun 2
## 3400                                                                                   Jikkyou Powerful Pro Yakyuu '98 Kaimakuban
## 3401                                                                                                                  Rock Band 2
## 3402                                                                                                                     Yakuza 5
## 3403                                                                                LEGO Indiana Jones 2: The Adventure Continues
## 3404                                                                                                                   BurgerTime
## 3405                                                                                                      Naruto: The Broken Bond
## 3406                                                                                                          2002 FIFA World Cup
## 3407                                                                                                            MVP Baseball 2004
## 3408                                                                                         Crash Bandicoot: The Wrath of Cortex
## 3409                                                                                           Smurf: Rescue In Gargamel's Castle
## 3410                                                                                                Spelling Challenges and more!
## 3411                                                                                           Go Diego Go! Great Dinosaur Rescue
## 3412                                                               Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 3413                                                                                                                    Extreme-G
## 3414                                                                                                        Ready 2 Rumble Boxing
## 3415                                                                                                                     Payday 2
## 3416                                                                                        Dead or Alive Xtreme Beach Volleyball
## 3417                                                                                                             Tales of Rebirth
## 3418                                                                                                                SoulCalibur V
## 3419                                                                                                                       NHL 12
## 3420                                                                                                            Tales of Zestiria
## 3421                                                                                              Silent Hill: Shattered Memories
## 3422                                                                                                              Without Warning
## 3423                                                                                                                     Skate it
## 3424                                                                                                         Game Party in Motion
## 3425                                                                                                          Barbie: Race & Ride
## 3426                                                                                                              Lost: Via Domus
## 3427                                                                                              Mega Man Anniversary Collection
## 3428                                                                                            Final Fantasy Anniversary Edition
## 3429                                                                                                                Dark Souls II
## 3430                                                                                                          Ben 10: Alien Force
## 3431                                                                                                    Deus Ex: Human Revolution
## 3432                                                                                                                Zumba Fitness
## 3433                                                                                        Harvest Moon: Friends of Mineral Town
## 3434                                                                                                      Backyard NBA Basketball
## 3435                                                                                                               FIFA Soccer 10
## 3436                                                                                                         Kirby's Dream Course
## 3437                                                                                                           Doom 3 BFG Edition
## 3438                                                                                                                  Mega Man X7
## 3439                                                                                                                   Top Spin 3
## 3440                                                                                                                  Petz Dogz 2
## 3441                                                                     SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3442                                                                                                                  The Conduit
## 3443                                                                                                              Just Dance 2016
## 3444                                                                                          Tokimeki Memorial: Forever with You
## 3445                                                                                                                       Diablo
## 3446                                                                                                Cabela's Dangerous Hunts 2011
## 3447                                                                                                                       NHL 15
## 3448                                                                                                                       Q*bert
## 3449                                                                                                               Romancing SaGa
## 3450                                                                                         The Lord of the Rings: The Third Age
## 3451                                                                                               Harvest Moon: Sunshine Islands
## 3452                                                                                                              Trivial Pursuit
## 3453                                                                                      The Legend of Spyro: Dawn of the Dragon
## 3454                                                                                                 The Sims 3: World Adventures
## 3455                                                                                                         Kinect Sports Rivals
## 3456                                                                                                               Rayman Origins
## 3457                                                                                                                     WWE 2K16
## 3458                                                                                                                    Titanfall
## 3459                                                                                                             NCAA Football 09
## 3460                                                                                                            Tom Clancy's HAWX
## 3461                                                                                           Sammy Sosa High Heat Baseball 2001
## 3462                                                                                                         Frozen: Olaf's Quest
## 3463                                                                                           Terminator 3: Rise of the Machines
## 3464                                                               Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3465                                                                                          Harvest Moon: The Tale of Two Towns
## 3466                                                                                                  FIFA: Road to  World Cup 98
## 3467                                                                                                                 World Cup 98
## 3468                                                                                           International Superstar Soccer '98
## 3469                                                                                                        Football Manager 2007
## 3470                                                                                                            Unreal Tournament
## 3471                                                                                                              Digimon World 2
## 3472                                                                                                           Tales of Phantasia
## 3473                                                                                            Prince of Persia: The Two Thrones
## 3474                                                                               Xenosaga Episode II: Jenseits von Gut und Böse
## 3475                                                                                                         Gex: Enter the Gecko
## 3476                                                                                                       Shrek 2: Beg for Mercy
## 3477                                                                              Mega Man Star Force 2: Zerker x Ninja / Saurian
## 3478                                                                                    JoJo's Bizarre Adventure: All Star Battle
## 3479                                                                                                                 Petz Nursery
## 3480                                                                                                    Contra: Shattered Soldier
## 3481                                                                            Championship Motocross featuring Ricky Carmichael
## 3482                                                                                           Dragon Ball Z: Chou Saiya Densetsu
## 3483                                                                                                                      NBA 2K7
## 3484                                                                                                                     WWE 2K16
## 3485                                                                               Phoenix Wright: Ace Attorney - Justice for All
## 3486                                                                                                 Fire Emblem: Seisen no Keifu
## 3487                                                                                                                  Rock Band 3
## 3488                                                                                             Disgaea 4: A Promise Unforgotten
## 3489                                                                                                   BlazBlue: Calamity Trigger
## 3490                                                                                     Tenchu 2: Birth of the Stealth Assassins
## 3491                                                                                                     Tony Hawk's Pro Skater 4
## 3492                                                                                                             MLB 11: The Show
## 3493                                                                                                 Naruto: Uzumaki Chronicles 2
## 3494                                                                                                                       NHL 06
## 3495                                                                                                                       NHL 10
## 3496                                                                                                     Rooms: The Main Building
## 3497                                                                                                              Rapala: We Fish
## 3498                                                                                                              Parasite Eve II
## 3499                                                                                                          Tetris Party Deluxe
## 3500                                                                                                               NFL Blitz 2000
## 3501                                                                                             Ratchet & Clank: Quest for Booty
## 3502                                                                                                 Ferrari: The Race Experience
## 3503                                                                                                             NCAA Football 10
## 3504                                                                                                                   Top Spin 3
## 3505                                                                                                        Shin Megami Tensei IV
## 3506                                                                                                                   Theme Park
## 3507                                                                                                           Blacksite: Area 51
## 3508                                                                                                                 Spider-Man 3
## 3509                                                                                             ATV Offroad Fury: Blazin' Trails
## 3510                                                                                                            Far Cry Instincts
## 3511                                                                                                     Hasbro Family Game Night
## 3512                                                                                                     Tony Hawk's Pro Skater 4
## 3513                                                                                                                           Up
## 3514                                                                                                           Tales of the Abyss
## 3515                                                                                                              Disney Universe
## 3516                                                                                                                     Iron Man
## 3517                                                                            Mobile Suit Gundam: Giren no Yabou- Zeon no Keifu
## 3518                                                                                          Spyro Orange: The Cortex Conspiracy
## 3519                                                                                                Enslaved: Odyssey to the West
## 3520                                                                     SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3521                                                                                                            Beyond The Beyond
## 3522                                                                                                          Ben 10: Alien Force
## 3523                                                                                                     Tomb Raider: Anniversary
## 3524                                                                                               Warhammer 40,000: Space Marine
## 3525                                                                                                                Madden NFL 06
## 3526                                                                                                               No More Heroes
## 3527                                                                                                          Assassin's Creed II
## 3528                                                                                                    Petz Wild Animals: Tigerz
## 3529                                                                                                     Naruto: Ultimate Ninja 2
## 3530                                                                                                                     Defiance
## 3531                                                                                                                         Dogz
## 3532                                                                                                           3D Dot Game Heroes
## 3533                                                                                               The Mysterious Murasame Castle
## 3534                                                                                                                 NBA Hangtime
## 3535                                                                                      Jillian Michaels Fitness Ultimatum 2010
## 3536                                                                                                    Pro Evolution Soccer 2012
## 3537                                                                                                                       Grease
## 3538                                                                                                                   Blood Wake
## 3539                                                                                           Dynasty Warriors 5: Xtreme Legends
## 3540                                                                                                Skylanders: Spyro's Adventure
## 3541                                                                              Dora The Explorer: Dora Saves the Snow Princess
## 3542                                                                                                          Jampack Summer 2002
## 3543                                                                                                  FIFA World Cup Germany 2006
## 3544                                                                                               Wreckless: ThE YaKuza MisSiOns
## 3545                                                                                                              Super Bomberman
## 3546                                                                              SpongeBob SquarePants: Battle for Bikini Bottom
## 3547                                                                                                           Spec Ops: The Line
## 3548                                                                                                   SD Gundam G Generation Neo
## 3549                                                                                                                 Bratz 4 Real
## 3550                                                                                                         RalliSport Challenge
## 3551                                                                                               Resident Evil Outbreak File #2
## 3552                                                                                              Bob the Builder: Can We Fix It?
## 3553                                                                                                                         XIII
## 3554                                                                                                                       NHL 14
## 3555                                                                                                               LEGO Rock Band
## 3556                                                                                                                         Bolt
## 3557                                                                                                                   Top Spin 3
## 3558                                                                                                            Tom Clancy's HAWX
## 3559                                                                                                              LEGO Dimensions
## 3560                                                                                                            Breath of Fire IV
## 3561                                                                                                    True Crime: Streets of LA
## 3562                                                                                                                  Odin Sphere
## 3563                                                                                                   Donkey Kong Jungle Climber
## 3564                                                                                                          The Incredible Hulk
## 3565                                                                                                     Ms. Pac-Man Maze Madness
## 3566                                                                                                               Arena Football
## 3567                                                                                The Lord of the Rings: The Return of the King
## 3568                                                                                                               NHL Hitz 20-02
## 3569                                                                                                Classic NES Series: Dr. Mario
## 3570                                                                                                        The Sims: Bustin' Out
## 3571                                                                                                        NCAA March Madness 07
## 3572                                                                                                   Monsters, Inc. Scream Team
## 3573                                                                                                      Harry Potter Collection
## 3574                                                                                                        Tony Hawk's Project 8
## 3575                                                                                 Yu-Gi-Oh! World Championship Tournament 2004
## 3576                                                                                     Cabela's Big Game Hunter 2005 Adventures
## 3577                                                                                                         Hotel Dusk: Room 215
## 3578                                                                                                          Knockout Kings 2001
## 3579                                                                                                     Army Men: Sarge's Heroes
## 3580                                                                                   Phineas and Ferb: Across the 2nd Dimension
## 3581                                                                                                                  Petz Dogz 2
## 3582                                                                                                 Battlefield 2: Modern Combat
## 3583                                                                                                                  Wolfenstein
## 3584                                                                                                       All-Star Baseball 2002
## 3585                                                                                                        Backyard NFL Football
## 3586                                                                                                  Need for Speed: Most Wanted
## 3587                                                                                                                NASCAR Rumble
## 3588                                                                                                             Tony Hawk: Shred
## 3589                                                                                                   Tony Hawk's Proving Ground
## 3590                                                                                                                    WWE Raw 2
## 3591                                                                                                              Resident Evil 2
## 3592                                                                                                                  Mega Man X2
## 3593                                                                                                                    Manhunt 2
## 3594                                                                                                         Xenoblade Chronicles
## 3595                                                                                     Fullmetal Alchemist and the Broken Angel
## 3596                                                                                                   Monster High: Ghoul Spirit
## 3597                                                                                    Final Fantasy IV: The Complete Collection
## 3598                                                                                                      Frontlines: Fuel of War
## 3599                                                                                                        Lips: Number One Hits
## 3600                                                                                                     Hamtaro: Ham-Hams Unite!
## 3601                                                                                                                Batman Begins
## 3602                                                                                                 Viva Pinata: Pocket Paradise
## 3603                                                                                                Dr. Seuss' The Cat in the Hat
## 3604                                                                                                          Barbie Groovy Games
## 3605                                                                                              Yu-Gi-Oh! Reshef of Destruction
## 3606                                                                                                      Blinx: The Time Sweeper
## 3607                                                                                                  Madagascar: Escape 2 Africa
## 3608                                                                                                     Archer Maclean's Mercury
## 3609                                                                                                            ESPN NFL Football
## 3610                                                                                                           Fatal Fury Special
## 3611                                                                                                                         Catz
## 3612                                                                                                    Major League Baseball 2K5
## 3613                                                                                                           DS Bimoji Training
## 3614                                                                                                                     WWE 2K15
## 3615                                                                                                               Petz Catz Clan
## 3616                                                                                                               Soul Sacrifice
## 3617                                                                                                                      G-Force
## 3618                                                                                                      Tiger Woods PGA Tour 11
## 3619                                                                                             Soldier of Fortune: Gold Edition
## 3620                                                                                         Rune Factory: A Fantasy Harvest Moon
## 3621                                                                                             Monster Jam: Path of Destruction
## 3622                                                                                                   Rapala Tournament Fishing!
## 3623                                                                                           MX 2002 Featuring Ricky Carmichael
## 3624                                                                                                                    Purr Pals
## 3625                                                                                                             NCAA Football 07
## 3626                                                                                               God of War: Origins Collection
## 3627                                                                                                            MX vs. ATV: Alive
## 3628                                                                                            Lunar: Silver Star Story Complete
## 3629                                                                                                       Dragon Ball: XenoVerse
## 3630                                                                                                     NBA Showtime: NBA on NBC
## 3631                                                                                      ZhuZhu Pets 2: Featuring The Wild Bunch
## 3632                                                                                                      Dragon Age: Inquisition
## 3633                                                                                                                Soul Reaver 2
## 3634                                                                                              Metal Gear Solid 3: Subsistence
## 3635                                                                                                  Sly Cooper: Thieves in Time
## 3636                                                                                                 The Godfather (old US sales)
## 3637                                                                                                                  Daytona USA
## 3638                                                                                Harry Potter and the Deathly Hallows - Part 1
## 3639                                                                                                      Tiger Woods PGA Tour 13
## 3640                                                                                                                      WWF Raw
## 3641                                                                                                      Shin Super Robot Taisen
## 3642                                                                                                             Jump Super Stars
## 3643                                                                                                      Legends of WrestleMania
## 3644                                                                                                     The Activision Decathlon
## 3645                                                               Simple 1500 Series Vol. 73: The Invaders ~Space Invaders 1500~
## 3646                                                                                                             50 Classic Games
## 3647                                                                                                             Fighting Force 2
## 3648                                                                                                                  Sakura Wars
## 3649                                                                                                             Yokai Sangokushi
## 3650                                                                                                                Extermination
## 3651                                                                                                            Batman: Vengeance
## 3652                                                                                                                      Unit 13
## 3653                                                                                     Tatsunoko vs. Capcom: Ultimate All-Stars
## 3654                                                                                                                         TMNT
## 3655                                                                                                                     F.E.A.R.
## 3656                                                                                                 Secret Agent Clank(US sales)
## 3657                                                                                                      Assassin's Creed: Unity
## 3658                                                                                                            Derby Stallion 04
## 3659                                                                                                                      NBA 2K8
## 3660                                                                                         Barbie Horse Adventures: Riding Camp
## 3661                                                                                                                   CrossworDS
## 3662                                                                                                     Tony Hawk's Pro Skater 3
## 3663                                                                                                                Mega Man Zero
## 3664                                                                                                                  Contender 2
## 3665                                                                                              The Amazing Spider-Man 2 (2014)
## 3666                                                                                                       Star Wars: Dark Forces
## 3667                                                                                                  SD Gundam G Generation Zero
## 3668                                                                                                         Super Robot Taisen F
## 3669                                                                                                                      Shrek 2
## 3670                                                                      Soccer Tsuku 2002: J-League Pro Soccer Club o Tsukurou!
## 3671                                                                                                    Time Crisis: Razing Storm
## 3672                                                                                           SpongeBob SquarePants: SuperSponge
## 3673                                                                                             Super Robot Taisen F Kanketsuhen
## 3674                                                                                                Enslaved: Odyssey to the West
## 3675                                                                                                               Rune Factory 4
## 3676                                                                                               Summer Sports: Paradise Island
## 3677                                                                                                    Tak and the Power of Juju
## 3678                                                                                                   Dynasty Warriors: Gundam 3
## 3679                                                                                                              Mortal Kombat 3
## 3680                                                                                                             Turok: Evolution
## 3681                                                                                                         Jak X: Combat Racing
## 3682                                                                                                                   Metro 2033
## 3683                                                                            Are You Smarter than a 5th Grader? Make the Grade
## 3684                                                                                                                American Idol
## 3685                                                                                                       Top Gun: Fire at Will!
## 3686                                                                                                            Red Dead Revolver
## 3687                                                                                                  Dragon Ball Z: Shin Budokai
## 3688                                                                                                              LEGO The Hobbit
## 3689                                                                                                                     Iron Man
## 3690                                                                                                        SingStar Summer Party
## 3691                                                                                                      Tiger Woods PGA Tour 08
## 3692                                                                                                                  NBA Live 10
## 3693                                                                                              The SpongeBob SquarePants Movie
## 3694                                                                                                               FIFA Soccer 07
## 3695                                                                        Gekikuukan Pro Yakyuu: At the End of the Century 1999
## 3696                                                                                         Medarot 2: Kabuto / Kuwagata Version
## 3697                                                                                                                 Excite Truck
## 3698                                                                                                       Sacred 2: Fallen Angel
## 3699                                                                           System 3 presents Ferrari Challenge Trofeo Pirelli
## 3700                                                                                              Dance Dance Revolution Ultramix
## 3701                                                                                                             ModNation Racers
## 3702                                                                                                        Crash Tag Team Racing
## 3703                                                                                                                Two Worlds II
## 3704                                                                                         Sonic & All-Stars Racing Transformed
## 3705                                                                                              Michael Jackson: The Experience
## 3706                                                                                                              Front Mission 4
## 3707                                                                                    The Fairly Odd Parents: Breakin' Da Rules
## 3708                                                                                                              LEGO Dimensions
## 3709                                                                                                               Inazuma Eleven
## 3710                                                                                               Ninokuni: Shikkoku no Madoushi
## 3711                                                                                                        Minecraft: Story Mode
## 3712                                                                                                 Resident Evil: Revelations 2
## 3713                                                                                                                    Manhunt 2
## 3714                                                                                                 SRS: Street Racing Syndicate
## 3715                                                                                      Despicable Me: The Game - Minion Mayhem
## 3716                                                                                            PDC World Championship Darts 2008
## 3717                                                                                                                 Action Force
## 3718                                                                                                             Gauntlet Legends
## 3719                                                                                                                      FIFA 99
## 3720                                                                                              Kidou Senshi Gundam: Extreme VS
## 3721                                                                                            Dragon Ball Z: Ultimate Tenkaichi
## 3722                                                                                                           Tales of Symphonia
## 3723                                                                                                                Bust A Groove
## 3724                                                                                                Fire Emblem: Path of Radiance
## 3725                                                          Dragon Quest Characters: Torneko no Daibouken 3: Fushigi no Dungeon
## 3726                                                                                                                  Let's Draw!
## 3727                                                                                                    Pachi-Slot Aruze Oukoku 2
## 3728                                                                                                                       NHL 14
## 3729                                                                                                       Valkyria Chronicles II
## 3730                                                                                               Middle-Earth: Shadow of Mordor
## 3731                                                                                                                Madden NFL 13
## 3732                                                                                       Rune Factory 2: A Fantasy Harvest Moon
## 3733                                                                                                         Terminator Salvation
## 3734                                                                                                                       Cars 2
## 3735                                                                                                           Bratz: Rock Angelz
## 3736                                                                                                     How to Train Your Dragon
## 3737                                                                                                                   SSX Tricky
## 3738                                                                                                   WWE SmackDown vs. Raw 2010
## 3739                                                                                          Greg Hastings' Tournament Paintball
## 3740                                                                                                 Hello Kitty: Big City Dreams
## 3741                                                                                                             Star Fox Command
## 3742                                                                     World Soccer Winning Eleven 7 International (JP version)
## 3743                                                                                                          ESPN NBA Basketball
## 3744                                                                                                            Inazuma Eleven GO
## 3745                                                                                                               Over the Hedge
## 3746                                                                                                        Mat Hoffman's Pro BMX
## 3747                                                                                            Lego Star Wars: The Force Awakens
## 3748                                                                                              Epic Mickey 2: The Power of Two
## 3749                                                                                                                       Popeye
## 3750                                                                                           Magician's Quest: Mysterious Times
## 3751                                                                                                                   The Hobbit
## 3752                                                                                                          War of the Monsters
## 3753                                                                                    Tales of Symphonia: Dawn of the New World
## 3754                                                                                              Dinotopia: The Sunstone Odyssey
## 3755                                                                                    The Incredible Hulk: Ultimate Destruction
## 3756                                                                                                 Star Wars Battlefront (2015)
## 3757                                                                               Sakura Taisen 2 - Kimi, Shinitamou Koto Nakare
## 3758                                                                                                           Jewel Master Egypt
## 3759                                                                                                               Time Crisis II
## 3760                                                                                                                  Clock Tower
## 3761                                                                                                        NCAA March Madness 06
## 3762                                                                     SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 3763                                                                                                            Jampack Volume 11
## 3764                                                                                                               Dragon's Crown
## 3765                                                                                          Tactics Ogre: Let Us Cling Together
## 3766                                                                                                     Legacy of Kain: Defiance
## 3767                                                                       SpongeBob SquarePants: Game Boy Advance Video Volume 2
## 3768                                                                                                      NCAA March Madness 2005
## 3769                                                                                                                   007 Racing
## 3770                                                                                                            Conflict: Vietnam
## 3771                                                                   2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 3772                                                                                         Mystery Dungeon: Shiren the Wanderer
## 3773                                                                                                                   SimAnimals
## 3774                                                                                                           MLB SlugFest 20-04
## 3775                                                                                                      Gex 3: Deep Cover Gecko
## 3776                                                                                                                    NASCAR 09
## 3777                                                                                                            Blitz: The League
## 3778                                                                                                               Jampack Vol. 2
## 3779                                                                                                          LEGO Jurassic World
## 3780                                                                                           Sesame Street: Once Upon A Monster
## 3781                                                                                                               Virtual Soccer
## 3782                                                                               Romance of the Three Kingdoms IV: Wall of Fire
## 3783                                                                                                                 Winning Post
## 3784                                                                    Peter Jackson's King Kong: The Official Game of the Movie
## 3785                                                                                                               SingStar Dance
## 3786                                                                                                  Kirby and the Rainbow Curse
## 3787                                                                                                              Burnout Revenge
## 3788                                                                                                                      FIFA 12
## 3789                                                                                             Medal of Honor: European Assault
## 3790                                                                                                          Batman: Arkham City
## 3791                                                                                        Ty the Tasmanian Tiger 2: Bush Rescue
## 3792                                                                            The Lord of the Rings: The Fellowship of the Ring
## 3793                                                                                                                       NBA 06
## 3794                                                                                         Sonic & All-Stars Racing Transformed
## 3795                                                                                                                   Spider-Man
## 3796                                                                                                                     We Cheer
## 3797                                                                               Tom Clancy's Ghost Recon Advanced Warfighter 2
## 3798                                                                                                                X-Men Legends
## 3799                                                                                                          Alice in Wonderland
## 3800                                                               Littlest Pet Shop 3: Biggest Stars - Blue / Pink / Purple Team
## 3801                                                                                                              Front Mission 2
## 3802                                                                                                                  Bulletstorm
## 3803                                                                                                   F.E.A.R. 2: Project Origin
## 3804                                                                                                      Tiger Woods PGA Tour 11
## 3805                                                                                                           Stuntman: Ignition
## 3806                                                                                           Are You Smarter Than A 5th Grader?
## 3807                                                                                                                      F1 2009
## 3808                                                                                                                          Oni
## 3809                                                                                        The Lord of the Rings: The Two Towers
## 3810                                                                                                                       Juiced
## 3811                                                                                                                 The Warriors
## 3812                                                                                             Batman: Arkham Origins Blackgate
## 3813                                                                                                J-League Soccer: Prime Goal 2
## 3814                                                                                                   Go Diego Go! Safari Rescue
## 3815                                                                                          The Walking Dead: Survival Instinct
## 3816                                                                                                                   Picross 3D
## 3817                                                                                                              Just Dance 2015
## 3818                                                                                                         Silent Hill: Origins
## 3819                                                                                                                  NASCAR 2000
## 3820                                                                                                    Wayne Gretzky's 3D Hockey
## 3821                                                                                                    Pachi-Slot Aruze Oukoku 4
## 3822                                                                         Return to Castle Wolfenstein: Operation Resurrection
## 3823                                                                                                     Mario Tennis: Power Tour
## 3824                                                                                                                       Seaman
## 3825                                                                                        Guinness World Records: The Videogame
## 3826                                                                                                                   The Grinch
## 3827                                                                                                                GT Pro Series
## 3828                                                                                                             Tales of Destiny
## 3829                                                                                               Spectrobes: Beyond the Portals
## 3830                                                                                                           Classic Word Games
## 3831                                                                                Naruto Shippuden: Clash of Ninja Revolution 3
## 3832                                                                                                          Fight Night Round 3
## 3833                                                                                                           The Golden Compass
## 3834                                                                                                     Final Fantasy Chronicles
## 3835                                                                                                                  NBA Live 08
## 3836                                                                                                              Syphon Filter 3
## 3837                                                                                        Star Wars Battlefront: Elite Squadron
## 3838                                                                                                Metal Gear Solid 2: Substance
## 3839                                                                                                             We Love Katamari
## 3840                                                                                                           NCAA Football 2003
## 3841                                                                                                         Way of the Samurai 3
## 3842                                                                                                                  NBA Live 09
## 3843                                                                                                           DC Universe Online
## 3844                                                                                               Ready 2 Rumble Boxing: Round 2
## 3845                                                                                                                   Mega Man 6
## 3846                                                                                                          Mission: Impossible
## 3847                                                                                                      Final Fantasy Explorers
## 3848                                                                                                Rival Schools: United By Fate
## 3849                                                                                                   Bully: Scholarship Edition
## 3850                                                                                                IL-2 Sturmovik: Birds of Prey
## 3851                                                                                          PlayStation All-Stars Battle Royale
## 3852                                                                                                                  Ratatouille
## 3853                                                                                                Cars Toon: Mater's Tall Tales
## 3854                                                                                                                Kung Fu Panda
## 3855                                                                                                              Swing Away Golf
## 3856                                                                                       J-League Pro Soccer Club o Tsukurou! 3
## 3857                                                                                                          Tomb Raider: Legend
## 3858                                                                                                                  Ratatouille
## 3859                                                                                                             Freedom Fighters
## 3860                                                                                                                          Gun
## 3861                                                                                        That's So Raven 2: Supernatural Style
## 3862                                                                                                                         Lair
## 3863                                                                                                                Madden NFL 07
## 3864                                                                                                                 The Punisher
## 3865                                                                                                              Front Mission 3
## 3866                                                                                  Kenkou Ouen Recipe 1000: DS Kondate Zenshuu
## 3867                                                                                                                  SSX On Tour
## 3868                                                                                                     Tony Hawk's Pro Skater 3
## 3869                                                                                     Harry Potter and the Prisoner of Azkaban
## 3870                                                                                                        Petz: Hamsterz Life 2
## 3871                                                                                                                  Omega Boost
## 3872                                                                                                The Sims 2: Open for Business
## 3873                                                                                                                     Iron Man
## 3874                                                                                                                      NFL 2K3
## 3875                                                                                                                NBA Live 2002
## 3876                                                                                                          Jampack Winter 2002
## 3877                                                                                                                My Word Coach
## 3878                                                                                                           Way of the Samurai
## 3879                                                                                                          Dragon Age: Origins
## 3880                                                                                     Naruto Shippuden: Ultimate Ninja Storm 3
## 3881                                                                                                       Dance! It's Your Stage
## 3882                                                                                                                Pac-Man Fever
## 3883                                                                                                     The LEGO Movie Videogame
## 3884                                                                                                             The 3rd Birthday
## 3885                                                                                                     Prince of Persia Trilogy
## 3886                                                                                                  International Track & Field
## 3887                                                                                                       100 All-Time Favorites
## 3888                                                                                                        HSX HyperSonic.Xtreme
## 3889                                                                                             StarCraft II: Legacy of the Void
## 3890                                                                                                      Tiger Woods PGA Tour 13
## 3891                                                                                                  SoulCalibur: Broken Destiny
## 3892                                                                                                                 The Saboteur
## 3893                                                                                                          Lords of the Fallen
## 3894                                                                                                    Pro Evolution Soccer 2010
## 3895                                                                                                      Goldeneye 007: Reloaded
## 3896                                                                                                            Jam With the Band
## 3897                                                                                                              Madden NFL 2004
## 3898                                                                                               Jikkyou Powerful Pro Yakyuu 10
## 3899                                                                                                                     Summoner
## 3900                                                                                                                 Virtual Pool
## 3901                                                                                                                  NBA Live 07
## 3902                                                                                                            Sega Bass Fishing
## 3903                                                                                                    Fire Emblem: Radiant Dawn
## 3904                                                                                                             Dynasty Warriors
## 3905                                                                                SpongeBob SquarePants: Lights, Camera, Pants!
## 3906                                                                                                    Dragon Ball: Raging Blast
## 3907                                                                                                      Rugrats: Scavenger Hunt
## 3908                                                                                                                Wrecking Crew
## 3909                                                                       International Superstar Soccer 2000 (All region sales)
## 3910                                                                                                   Major League Baseball 2K10
## 3911                                                                                                          Monsters vs. Aliens
## 3912                                                               Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 3913                                                                         SpongeBob SquarePants: Creature from the Krusty Krab
## 3914                                                                                                              Lost: Via Domus
## 3915                                                                                                                NBA Live 2004
## 3916                                                                                                Dai-4-Ji Super Robot Taisen S
## 3917                                                                                Disney's Kim Possible: Revenge of Monkey Fist
## 3918                                                                                                   WWE SmackDown vs. RAW 2007
## 3919                                                                                              Ace Combat Zero: The Belkan War
## 3920                                                                                                                     R.U.S.E.
## 3921                                                                                                Disgaea 3: Absence of Justice
## 3922                                                                                                         Test Drive Unlimited
## 3923                                                                                                              LEGO Dimensions
## 3924                                                                                                                   Picross DS
## 3925                                                                                         Final Fantasy II Anniversary Edition
## 3926                                                                                                                       NHL 07
## 3927                                                                                       Harry Potter and the Half-Blood Prince
## 3928                                                                                                                Quantum Break
## 3929                                                                                                                     NBA 2K11
## 3930                                                                                                     World Championship Poker
## 3931                                                                                                                     The BIGS
## 3932                                                                                                                Final Fantasy
## 3933                                                                                                              Burnout Revenge
## 3934                                                                                                        Rory McIlroy PGA Tour
## 3935                                                                                                         Euro Truck Simulator
## 3936                                                                                           Dragon Ball Z: Supersonic Warriors
## 3937                                                                                                                   Dishonored
## 3938                                                                                       Paws & Claws: Dogs & Cats Best Friends
## 3939                                                                                                                  NBA Ballers
## 3940                                                                                                      Silent Hill 4: The Room
## 3941                                                                                                                River Raid II
## 3942                                                                                                   Capcom Classics Collection
## 3943                                                                                                             Guitar Hero Live
## 3944                                                                                                   Wolfenstein: The New Order
## 3945                                                                                                               Monopoly Party
## 3946                                                                    Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 3947                                                                                                               NHL FaceOff 98
## 3948                                                           The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3949                                                                                                                      F1 2012
## 3950                                                                                                                       NHL 09
## 3951                                                                                                                 Sonic Riders
## 3952                                                                                                 Looney Tunes: Back in Action
## 3953                                                                                                                  Jet Impulse
## 3954                                                                                                               Midnight Magic
## 3955                                                                                                       Alice: Madness Returns
## 3956                                                                                                    Pro Evolution Soccer 2012
## 3957                                                                                                      Tiger Woods PGA Tour 07
## 3958                                                                                                             Midnight Club II
## 3959                                                                                          Atelier Rorona: Alchemist of Arland
## 3960                                                                                                     Monster Hunter Freedom 2
## 3961                                                                                         Dragon Ball Z: Supersonic Warriors 2
## 3962                                                                                                   Avatar: The Last Airbender
## 3963                                                                                             Blue's Clues: Blue's Big Musical
## 3964                                                                                                            The Mummy Returns
## 3965                                                                                                          Hitman: Blood Money
## 3966                                                                                                               Disney Sing It
## 3967                                                                                                              Chopper Command
## 3968                                                                                                         Activision Anthology
## 3969                                                                                                      Crash: Mind Over Mutant
## 3970                                                                                                                     WWE 2K16
## 3971                                                                                                              LEGO The Hobbit
## 3972                                                                                                             Babysitting Mama
## 3973                                                                                                                       Boogie
## 3974                                                                                                   Theatrhythm: Final Fantasy
## 3975                                                                                                    Bleach: Soul Resurreccion
## 3976                                                                                                                Madden NFL 07
## 3977                                                                                                  Rugrats in Paris: The Movie
## 3978                                                                                            Dance Dance Revolution Universe 2
## 3979                                                                                                  Star Wars: Jedi Starfighter
## 3980                                                                                            Tactics Ogre: The Knight of Lodis
## 3981                                                                                                               Fortune Street
## 3982                                                                                                        Super Robot Taisen MX
## 3983                                                                                                          Alice in Wonderland
## 3984                                                                                                         NBA Street Homecourt
## 3985                                                                                                                 Spider-Man 2
## 3986                                                                                              Bases Loaded '96: Double Header
## 3987                                                                                                       Dead or Alive Ultimate
## 3988                                                                                                                    RPG Maker
## 3989                                                                                                                      FIFA 14
## 3990                                                                                                        Star Wars: Clone Wars
## 3991                                                                                                                 The Saboteur
## 3992                                                           The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 3993                                                                                               Metal Gear Rising: Revengeance
## 3994                                                                                                                Madden NFL 11
## 3995                                                                                                   Major League Baseball 2K12
## 3996                                                                                                             Alien: Isolation
## 3997                                                                                                           The Price is Right
## 3998                                                                                                               Monster Hunter
## 3999                                                                                                                       Cars 2
## 4000                                                                                                  Dreamworks Madagascar Kartz
## 4001                                                                                                    Tony Hawk's Underground 2
## 4002                                                                                                  SplashDown: Rides Gone Wild
## 4003                                                                                                              Super Famista 5
## 4004                                                                                                   Dynasty Warriors: Gundam 2
## 4005                                                                                                              Shrek SuperSlam
## 4006                                                                                                               Rayman Advance
## 4007                                                                                                         Super Robot Taisen Z
## 4008                                                                                                       PoPoLoCrois Monogatari
## 4009                                                                                                     Tomb Raider: Anniversary
## 4010                                                                                                                  Fantastic 4
## 4011                                                                                              Epic Mickey 2: The Power of Two
## 4012                                                                                                Men in Black II: Alien Escape
## 4013                                                                                                              The Evil Within
## 4014                                                                                                            RealSports Tennis
## 4015                                                                                             Nicktoons: Attack of the Toybots
## 4016                                                                                                      Raiders of the Lost Ark
## 4017                                                                                                                     Gauntlet
## 4018                                                                                                               Ridge Racer 3D
## 4019                                                                                             Cars Mater-National Championship
## 4020                                                                                                  Ace Combat: Assault Horizon
## 4021                                                                                            Resident Evil: The Mercenaries 3D
## 4022                                                                                                         Super Monkey Ball 3D
## 4023                                                                                                        Tony Hawk's Project 8
## 4024                                                                                                    Tony Hawk's Underground 2
## 4025                                                                                                       MotorStorm: Apocalypse
## 4026                                                                                                                   Ice Hockey
## 4027                                                               Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 4028                                                                                                 Lego Batman 3: Beyond Gotham
## 4029                                                                                                      The Matrix: Path of Neo
## 4030                                                                                                     Kane & Lynch 2: Dog Days
## 4031                                                                                                            Lollipop Chainsaw
## 4032                                                                                                          WWE Wrestlemania X8
## 4033                                                                                                             Sonic Lost World
## 4034                                                                                                  Power Rangers: Dino Thunder
## 4035                                                                                                       GoldenEye: Rogue Agent
## 4036                                                                                                               Ultimate I Spy
## 4037                                                                         SpongeBob SquarePants: Creature from the Krusty Krab
## 4038                                                                                                                     The Sims
## 4039                                                                                                                  Grandia III
## 4040                                                                                                               FIFA Soccer 09
## 4041                                                                 Mobile Suit Gundam Seed Destiny: Rengou vs. Z.A.F.T. II Plus
## 4042                                                                                                                Mario & Wario
## 4043                                                                                                 Scarface: The World is Yours
## 4044                                                           Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4045                                                                                                          Pokemon Art Academy
## 4046                                                                                                               FIFA Soccer 64
## 4047                                                                                                   Dragon Ball Z: Burst Limit
## 4048                                                                               Bakugan Battle Brawlers: Defenders of the Core
## 4049                                                                                                               Medal of Honor
## 4050                                                                                                           Doom 3 BFG Edition
## 4051                                                                                      J-League Pro Soccer Club wo Tsukurou! 2
## 4052                                                                                                                     Terraria
## 4053                                                                                                            Backyard Baseball
## 4054                                                                                                                WipEout Pulse
## 4055                                                                                   Barbie Horse Adventures: Wild Horse Rescue
## 4056                                                                                               Epic Mickey: Power of Illusion
## 4057                                                                                                     LEGO Marvel Super Heroes
## 4058                                                                                           Taiko no Tatsujin: Appare Sandaime
## 4059                                                                                                            Alone in the Dark
## 4060                                                                                                     One Piece: Grand Battle!
## 4061                                                           Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4062                                                                                               Football Manager Handheld 2009
## 4063                                                                                                       Sniper: Art of Victory
## 4064                                                                                                                   Crazy Taxi
## 4065                                                                                                                 Spy Hunter 2
## 4066                                                                                                                      F1 2014
## 4067                                                                                                              Pac-Man World 2
## 4068                                                                                                   Bass Pro Shops: The Strike
## 4069                                                                                           Die Hard Trilogy 2: Viva Las Vegas
## 4070                                                                                                          Jake Power: Fireman
## 4071                                                                                                                   Asphalt 3D
## 4072                                                                                 Momotarou Dentetsu X: Kyuushuu-hen mo Arubai
## 4073                                                                                                                  Steel Diver
## 4074                                                                                                            Tales of Legendia
## 4075                                                                                                                 SimCity 2000
## 4076                                                                                                          Crash of the Titans
## 4077                                                                                                                    Far Cry 2
## 4078                                                                                                        Battlefield: Hardline
## 4079                                                                                    Harry Potter and the Order of the Phoenix
## 4080                                                                                              Rayman Raving Rabbids: TV Party
## 4081                                                                                                   F.E.A.R. 2: Project Origin
## 4082                                                                                         Sonic & All-Stars Racing Transformed
## 4083                                                                                               Scene It? Lights Camera Action
## 4084                                                                                                        Dead Space Extraction
## 4085                                                                                                        Scrabble 2007 Edition
## 4086                                                                                                              Shrek the Third
## 4087                                                                                                  Metal Gear Solid HD Edition
## 4088                                                                                                             Children of Mana
## 4089                                                                                                Madagascar: Operation Penguin
## 4090                                                                                               Active Life: Extreme Challenge
## 4091                                                                                                             The Sims 2: Pets
## 4092                                                                                                       Mario Golf: World Tour
## 4093                                                                                            Need for Speed: Porsche Unleashed
## 4094                                                                                      Yu-Gi-Oh! Forbidden Memories (JP sales)
## 4095                                                                                                                 NFL Street 2
## 4096                                                                                              Silent Hill: Shattered Memories
## 4097                                                                                                                    Millipede
## 4098                                                                                             The Legend of the Mystical Ninja
## 4099                                                                                                         You're in the Movies
## 4100                                                                                                                  Dark Sector
## 4101                                                                                                  James Bond 007: Blood Stone
## 4102                                                                                                                    Jeopardy!
## 4103                                                                                                        Destroy All Humans! 2
## 4104                                                                                                      ECW Hardcore Revolution
## 4105                                                                                Pinball Hall of Fame: The Williams Collection
## 4106                                                                                                      Tiger Woods PGA Tour 07
## 4107                                                                                                       Wu-Tang: Shaolin Style
## 4108                                                                                       World of Warcraft: Warlords of Draenor
## 4109                                                                                                          Rock Band Unplugged
## 4110                                                                                                                     OkamiDen
## 4111                                                                                                      Crash: Mind Over Mutant
## 4112                                                                                             2010 FIFA World Cup South Africa
## 4113                                                                                                 Secret Weapons Over Normandy
## 4114                                                                                           Go Diego Go! Great Dinosaur Rescue
## 4115                                                                                                         All-Star Baseball 99
## 4116                                                                                                              Harvest Moon 64
## 4117                                                                                                             NCAA Football 09
## 4118                                                                                                             Bratz: The Movie
## 4119                                                                                                               FIFA Soccer 13
## 4120                                                                                                   Harvest Moon DS (US sales)
## 4121                                                                                                     Vigilante 8: 2nd Offense
## 4122                                                                                                                Two Worlds II
## 4123                                                                                                        Football Manager 2015
## 4124                                                                                                    Theme Park Roller Coaster
## 4125                                                                                                  Need for Speed: Hot Pursuit
## 4126                                                                                                    Skylanders: SuperChargers
## 4127                                                                                             Viva Pinata: Trouble in Paradise
## 4128                                                                                                    Nickelodeon Team Umizoomi
## 4129                                                                                                                   FlingSmash
## 4130                                                                                                                 NFL Xtreme 2
## 4131                                                                                                                 Spider-Man 3
## 4132                                                                                                 Midnight Club: Street Racing
## 4133                                                                                                      Dynasty Warriors Gundam
## 4134                                                                                                      Tomb Raider: Underworld
## 4135                                                                             Final Fantasy Crystal Chronicles: Echoes of Time
## 4136                                                                                                                        Fable
## 4137                                                                                                      Tiger Woods PGA Tour 06
## 4138                                                                                                  FIFA World Cup Germany 2006
## 4139                                                                                                                           Up
## 4140                                                                                                                   Grand Prix
## 4141                                                                                                         Ford Racing Off Road
## 4142                                                                                                              SimCity Creator
## 4143                                                                                           World of Outlaws: Sprint Cars 2002
## 4144                                                                                                            Cars: Race-O-Rama
## 4145                                                                                                             Emergency Heroes
## 4146                                                                                                                 Dream Dancer
## 4147                                                                                                                  Fantavision
## 4148                                                                                                                Double Dragon
## 4149                                                                                                                Alien Trilogy
## 4150                                                                                                                  NBA Live 99
## 4151                                                                                                    Bravely Second: End Layer
## 4152                                                                                                    Major League Baseball 2K8
## 4153                                                                                                                  Dark Sector
## 4154                                                                                                        Unreal Tournament III
## 4155                                                                                                        X-Men: Next Dimension
## 4156                                                                                                      Street Fighter X Tekken
## 4157                                                                                                     The Godfather (JP sales)
## 4158                                                                                                                MySims Racing
## 4159                                                                                                                Hamsterz Life
## 4160                                                                                                Dragon Age Origins: Awakening
## 4161                                                                                                            Super Puyo Puyo 2
## 4162                                                                                                             Gauntlet Legends
## 4163                                                                                                  Castlevania: Dawn of Sorrow
## 4164                                                                            Naruto Shippuden: Ultimate Ninja Storm Revolution
## 4165                                                                                                                     Deadpool
## 4166                                                                                                                      WipEout
## 4167                                                                                                                          ICO
## 4168                                                                                                        Silent Hill: Downpour
## 4169                                                                                                   2014 FIFA World Cup Brazil
## 4170                                                                                                   WWE SmackDown vs. Raw 2011
## 4171                                                 Dragon Quest 25 Shuunen Kinin: Famicom & Super Famicom Dragon Quest I-II-III
## 4172                                                                                      Victorious Boxers: Ippo's Road to Glory
## 4173                                                                                                                  Petz Sports
## 4174                                                                                                 Lego Batman 3: Beyond Gotham
## 4175                                                                                                            Densetsu no Stafi
## 4176                                                                                                 Valkyrie Profile 2: Silmeria
## 4177                                                                                                        Hot Wheels Velocity X
## 4178                                                                                                                    Shadowrun
## 4179                                                                                                               FIFA Soccer 13
## 4180                                                                                                  Virtua Tennis 4: World Tour
## 4181                                                                                             Warhammer 40,000: Dawn of War II
## 4182                                                                                                        Crazy Taxi: Fare Wars
## 4183                                                                                                       Clash of Elementalists
## 4184                                                                                                                 Spider-Man 3
## 4185                                                                                                          Disney Infinity 3.0
## 4186                                                                                                                    L.A. Rush
## 4187                                                                                                               Bomberman Hero
## 4188                                                                                                       Automobili Lamborghini
## 4189                                                                                                                     Quest 64
## 4190                                                                                                         Momotarou Dentetsu V
## 4191                                                                                                                      Doom 64
## 4192                                                                                                         Boom Blox Bash Party
## 4193                                                                                                        The Sims 3: Ambitions
## 4194                                                                                                              Dead or Alive 4
## 4195                                                                                                                     Commando
## 4196                                                                                                           Rise of Nightmares
## 4197                                                                                                    The Princess and the Frog
## 4198                                                                                                          NBA Ballers: Phenom
## 4199                                                                                                        Need for Speed Carbon
## 4200                                                                                                                   Sabre Wulf
## 4201                                                                                                                       NHL 16
## 4202                                                                                                                      FIFA 12
## 4203                                                                                                          MTV Music Generator
## 4204                                                                                                    Spider-Man: Friend or Foe
## 4205                                                                                                   Major League Baseball 2K13
## 4206                                                                                                  Super Momotarou Dentetsu DX
## 4207                                                                            World Soccer Winning Eleven 8: Liveware Evolution
## 4208                                                                                             The Sims 3: Outdoor Living Stuff
## 4209                                                                                                            Cars: Race-O-Rama
## 4210                                                                                                          Downhill Domination
## 4211                                                                                                                       NHL 15
## 4212                                                                                   Pirates of the Caribbean: Dead Man's Chest
## 4213                                                                                                        World Series of Poker
## 4214                                                                                            Inazuma Eleven Go 2: Chrono Stone
## 4215                                                                                                                       NHL 97
## 4216                                                                                                               We Sing Encore
## 4217                                                                                            Kong: The 8th Wonder of the World
## 4218                                                                                                            MX vs. ATV: Alive
## 4219                                                                                 Mega Man Star Force 3: Black Ace / Red Joker
## 4220                                                                                                 Crayola: Treasure Adventures
## 4221                                                                                                     Godzilla: Save the Earth
## 4222                                                                                            Dance Dance Revolution: Mario Mix
## 4223                                                                                            Metal Gear Solid: The Twin Snakes
## 4224                                                                                            Imagine: Figure Skater (US sales)
## 4225                                                                                                      Mat Hoffman's Pro BMX 2
## 4226                                                                                   Metal Gear Solid: The Essential Collection
## 4227                                                                                      The Legend of Spyro: Dawn of the Dragon
## 4228                                                                                                                   Iridion 3D
## 4229                                                                                                           MX vs. ATV Untamed
## 4230                                                                                                  Classic NES Series: Pac-Man
## 4231                                                                                                          Destroy All Humans!
## 4232                                                                                         Dragon Ball Z: Collectible Card Game
## 4233                                                                                                         Beyond the Labyrinth
## 4234                                                                                                              Country Dance 2
## 4235                                                                                                      Razor Freestyle Scooter
## 4236                                                                                                          Crash of the Titans
## 4237                                                                                                                   F.E.A.R. 3
## 4238                                                                                       Disney's Kim Possible 3: Team Possible
## 4239                                                                                               Rygar: The Legendary Adventure
## 4240                                                                                                Syphon Filter: Logan's Shadow
## 4241                                                                                                              Super Batter Up
## 4242                                                                                                                    Kessen II
## 4243                                                                                         Crayon Shin-Chan: Arashi o Yobu Enji
## 4244                                                                                                              Stuart Little 2
## 4245                                                                                                   Wolfenstein: The New Order
## 4246                                                                                               Warhammer 40,000: Space Marine
## 4247                                                                                                   Tak 2: The Staff of Dreams
## 4248                                                                                            Art Academy: Lessons for Everyone
## 4249                                                                                          Sid Meier's Civilization Revolution
## 4250                                                                                                         ATV Offroad Fury Pro
## 4251                                                                              Dora The Explorer: Dora Saves the Snow Princess
## 4252                                                                                                               SingStar Amped
## 4253                                                                                            Brothers In Arms: Earned in Blood
## 4254                                                                                                                 Walk it Out!
## 4255                                                                        Transformers: Dark of the Moon - Autobots/Decepticons
## 4256                                                                                                         Dragon Ball Z: Sagas
## 4257                                                                                                                   Scooby-Doo
## 4258                                                                                      The Legend of Spyro: Dawn of the Dragon
## 4259                                                                                                                Hydro Thunder
## 4260                                                                                                      Brothers In Arms: D-Day
## 4261                                                                                        American Girl: Kit Mystery Challenge!
## 4262                                                                                  Mario & Sonic at the Rio 2016 Olympic Games
## 4263                                                                                                              NHL FaceOff '97
## 4264                                                                                                                     Deadpool
## 4265                                                                                            Brothers In Arms: Road to Hill 30
## 4266                                                                                                              Virtua Tennis 4
## 4267                                                                                                                EA Sports UFC
## 4268                                                                                                                     Gremlins
## 4269                                                                                                              The Mark of Kri
## 4270                                                                                                   Jampack Winter 2003 (RP-M)
## 4271                                                                                                       Rugrats: Castle Capers
## 4272                                                                                                             Crash Nitro Kart
## 4273                                                                                    Star Wars The Clone Wars: Republic Heroes
## 4274                                                                                                       Farming Simulator 2015
## 4275                                                                                                    Bleach: The Blade of Fate
## 4276                                                                                                                Madden NFL 12
## 4277                                                                                                               LEGO Rock Band
## 4278                                                                                                               Mad Max (2015)
## 4279                                                                                                    Barbie: Jet, Set & Style!
## 4280                                                                                            Jak and Daxter: The Lost Frontier
## 4281                                                                                                        Momotarou Dentetsu 11
## 4282                                                                                               Command & Conquer: Red Alert 3
## 4283                                                                                                          Tomb Raider: Legend
## 4284                                                                                                    Skylanders: SuperChargers
## 4285                                                                                                           The Golden Compass
## 4286                                                                                                        Star Wars: Demolition
## 4287                                                                                             Scooby-Doo! and the Spooky Swamp
## 4288                                                                                                  Sword Art Online: Lost Song
## 4289                                                                                                               Bloody Roar II
## 4290                                                                                                 Delta Force: Black Hawk Down
## 4291                                                                                                            Burnout Dominator
## 4292                                                                                                                  NBA Live 07
## 4293                                                                                                         Vin Diesel: Wheelman
## 4294                                                                                                               Space Invaders
## 4295                                                                                                       .hack//Outbreak Part 3
## 4296                                                                                                               Rayman Legends
## 4297                                                                                                                   Mother 1+2
## 4298                                                                                                      Hyperdimension Neptunia
## 4299                                                                                                                       iCarly
## 4300                                                                               Puzzle & Dragons Z + Super Mario Bros. Edition
## 4301                                                                                Harry Potter and the Deathly Hallows - Part 1
## 4302                                                                                                                     Top Spin
## 4303                                                                                                          Disney Guilty Party
## 4304                                                                                                                      Warhawk
## 4305                                                                                     Pirates of the Caribbean: At World's End
## 4306                                                                                                      Red Faction: Armageddon
## 4307                                                                                                              DanceStar Party
## 4308                                                                                                 Persona 4: Dancing All Night
## 4309                                                                                                            Tales of Vesperia
## 4310                                                                                                                 Thief (2014)
## 4311                                                                                                Dynasty Warriors: Strikeforce
## 4312                                                           2 Games in 1: SpongeBob SquarePants: SuperSponge & Rugrats Go Wild
## 4313                                                                                                              Tales of Hearts
## 4314                                                                                                              Missile Command
## 4315                                                                                                 Lego Batman 3: Beyond Gotham
## 4316                                                                                                Barbie as The Island Princess
## 4317                                                                                                Jikkyou Powerful Pro Yakyuu 3
## 4318                                                                                                 The Walking Dead: Season One
## 4319                                                                                               Jikkyou Powerful Pro Yakyuu 12
## 4320                                                                                                             Enter the Matrix
## 4321                                                                                                      Crash: Mind Over Mutant
## 4322                                                                                               NASCAR 2005: Chase for the Cup
## 4323                                                                                                    J-League Excite Stage '95
## 4324                                                                                                The New York Times Crosswords
## 4325                                                                                          Phantasy Star Online Episode I & II
## 4326                                                                                         Moshi Monsters: Moshlings Theme Park
## 4327                                                                                          The Powerpuff Girls: Relish Rampage
## 4328                                                                                                    Resistance: Burning Skies
## 4329                                                                                                                     NBA 2K13
## 4330                                                                                                    Dead or Alive: Dimensions
## 4331                                                                                                          Bikkuriman Daijiten
## 4332                                                                                                              Brain Challenge
## 4333                                                                                                               NFL Head Coach
## 4334                                                                                                                   Watch Dogs
## 4335                                                                             Karaoke Revolution Presents American Idol Encore
## 4336                                                                                                   Major League Baseball 2K11
## 4337                                                                                                  Enemy Territory: Quake Wars
## 4338                                                                                                                 Ghostbusters
## 4339                                                                                                          NCAA Gamebreaker 99
## 4340                                                                                                                      Area 51
## 4341                                                                                                              World Stadium 2
## 4342                                                                                                              Sega Rally Revo
## 4343                                                                                                                     NHL 2005
## 4344                                                                                                                  TNA iMPACT!
## 4345                                                                                          Star Wars Jedi Knight: Jedi Academy
## 4346                                                                                                   Thrillville: Off the Rails
## 4347                                                                                                                      Phoenix
## 4348                                                                                             Spider-Man: Shattered Dimensions
## 4349                                                                                                                   F.E.A.R. 3
## 4350                                                                                                            My Fashion Studio
## 4351                                                                                         Plants vs. Zombies: Garden Warfare 2
## 4352                                                                                                 Rock Band Country Track Pack
## 4353                                                                                                    Pro Evolution Soccer 2016
## 4354                                                                                                                   Apocalypse
## 4355                                                                      Transformers: Revenge of the Fallen (Wii & PS2 Version)
## 4356                                                                                               PES 2009: Pro Evolution Soccer
## 4357                                                                                             Yu-Gi-Oh! Destiny Board Traveler
## 4358                                                                                                               SingStar Queen
## 4359                                                                                                                  God Eater 2
## 4360                                                                                                           Samurai Warriors 3
## 4361                                                                                World Soccer Winning Eleven 5 Final Evolution
## 4362                                                                                                 One Piece: Pirate Warriors 3
## 4363                                                                                                  Sphinx and the Cursed Mummy
## 4364                                                                                                                 Fatal Fury 2
## 4365                                                                                                           Rampage World Tour
## 4366                                                                                                        Pokemon Puzzle League
## 4367                                                                                                               Eternal Sonata
## 4368                                                                                      Dance Dance Revolution: Hottest Party 3
## 4369                                                                                                                      FIFA 15
## 4370                                                                                                                 Petz: Catz 2
## 4371                                                                                                               Bee Movie Game
## 4372                                                                                                               Tekken Advance
## 4373                                                                                                Shin Megami Tensei: Persona 3
## 4374                                                                                                                      Persona
## 4375                                                                                                                    Band Hero
## 4376                                                                           Naruto Shippuden: Ultimate Ninja Storm Generations
## 4377                                                                                            Hot Wheels: Stunt Track Challenge
## 4378                                                                                                    Viking: Battle for Asgard
## 4379                                                                                           Majesty 2: The Fantasy Kingdom Sim
## 4380                                                                                                           Mobile Suit Gundam
## 4381                                                                                             Fullmetal Alchemist: Brotherhood
## 4382                                                                                                           SingStar Take That
## 4383                                                                                      SOCOM: U.S. Navy SEALs Fireteam Bravo 3
## 4384                                                                                                     Final Fantasy Collection
## 4385                                                                           Disney Sing It! High School Musical 3: Senior Year
## 4386                                                                                                                  NBA Live 10
## 4387                                                                                             Samurai Warriors: Xtreme Legends
## 4388                                                                                                   Tony Hawk's Proving Ground
## 4389                                                                                                                  NHL FaceOff
## 4390                                                                                                          WWE WrestleMania 21
## 4391                                                                                                        Brunswick Pro Bowling
## 4392                                                                                                        Worms: Open Warfare 2
## 4393                                                                                                                NBA Live 2005
## 4394                                                                                                                  Defender II
## 4395                                                                                                         WWE Day of Reckoning
## 4396                                                                                            Dragon Quest Heroes: Rocket Slime
## 4397                                                                                                      ATV Quad Power Racing 2
## 4398                                                                                 Walt Disney World Quest: Magical Racing Tour
## 4399                                                                                                                   Sled Storm
## 4400                                                                                                                Vandal Hearts
## 4401                                                                                                     Mario Tennis Ultra Smash
## 4402                                                                                                    Celebrity Sports Showdown
## 4403                                                                                                                   Jawbreaker
## 4404                                                                                                   Scooby-Doo! Mystery Mayhem
## 4405                                                                                                     Mario Golf: Advance Tour
## 4406                                                                                                      Crash: Mind Over Mutant
## 4407                                                                                                           Karaoke Revolution
## 4408                                                                                                Discovery Kids: Kitten Corner
## 4409                                                                                                              Just Dance 2014
## 4410                                                                                           Yu-Gi-Oh! Capsule Monster Coliseum
## 4411                                                                                                                     Payday 2
## 4412                                                                                                    Major League Baseball 2K6
## 4413                                                                                                     Jampack Volume 13 (RP-M)
## 4414                                                                                                World Soccer Winning Eleven 9
## 4415                                                                                                                NBA Live 2000
## 4416                                                                                 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 4417                                                                                SpongeBob SquarePants: Lights, Camera, Pants!
## 4418                                                                                                          Disney Infinity 3.0
## 4419                                                                                                                TouchMaster 3
## 4420                                                                                                                    The Thing
## 4421                                                                                                          Disney Infinity 3.0
## 4422                                                                                                                  Van Helsing
## 4423                                                                                         X-Men Legends II: Rise of Apocalypse
## 4424                                                                                              Food Network: Cook or Be Cooked
## 4425                                                                                              Transformers: Fall of Cybertron
## 4426                                                                                                            Metro: Last Light
## 4427                                                                               The Urbz: Sims in the City (all regions sales)
## 4428                                                                                                            Spawn: Armageddon
## 4429                                                                                                     The Godfather (US sales)
## 4430                                                                                                           DmC: Devil May Cry
## 4431                                                                                         Plants vs. Zombies: Garden Warfare 2
## 4432                                                                                                             World Stadium EX
## 4433                                                                                                    Tiger Woods PGA Tour 2003
## 4434                                                                                                 Battlefield 2: Modern Combat
## 4435                                                                                                                      G-Force
## 4436                                                                                           Ben 10 Alien Force: Vilgax Attacks
## 4437                                                                                                         50 Cent: Bulletproof
## 4438                                                                                                          Densetsu no Stafi 2
## 4439                                                                                                             Independence Day
## 4440                                                                                            Need for Speed: Shift 2 Unleashed
## 4441                                                                                                               Chocobo Racing
## 4442                                                                                                               Ninja Gaiden 3
## 4443                                                                                                                Child of Eden
## 4444                                                                                      LEGO Star Wars II: The Original Trilogy
## 4445                                                                                            Family Fest Presents Circus Games
## 4446                                                                                                             My Spanish Coach
## 4447                                                                                                                 The Darkness
## 4448                                                                                         Gundam SEED: Federation vs. Z.A.F.T.
## 4449                                                                                                     Ms. Pac-Man Maze Madness
## 4450                                                                                                   Blood Omen: Legacy of Kain
## 4451                                                                                                            Super Bomberman 4
## 4452                                                                                                                 Bomberman II
## 4453                                                                                                                Duke Nukem 64
## 4454                                                                                           Sin and Punishment: Star Successor
## 4455                                                                                                        Jump Start Pet Rescue
## 4456                                                                                                                 Naughty Bear
## 4457                                                                                SpongeBob SquarePants: Lights, Camera, Pants!
## 4458                                                                                  Super Robot Taisen OG: Original Generations
## 4459                                                                                              Army Men World War: Final Front
## 4460                                                                                                               Petz: Horsez 2
## 4461                                                                                                    Puppy Luv: Spa and Resort
## 4462                                                                                                   Yu-Gi-Oh! 5D's Tag Force 4
## 4463                                                                                                                 MX Unleashed
## 4464                                                                                                Jikkyou Powerful Pro Yakyuu 9
## 4465                                                                                                                Grind Session
## 4466                                                                                               Naruto: Gekito Ninja Taisen! 3
## 4467                                                                                                  Barbie: Groom and Glam Pups
## 4468                                                                                                                  Wario World
## 4469                                                                                                   Scooby-Doo! Mystery Mayhem
## 4470                                                                                              Combat Elite: WWII Paratroopers
## 4471                                                                    Taiko no Tatsujin: Doki! Shinkyoku Darake no Haru Matsuri
## 4472                                                                                                                   Deer Drive
## 4473                                                                                        Samurai Spirits: Tenkaichi Kenkakuden
## 4474                                                                                                                 Just Dance 4
## 4475                                                                                                              TimeSplitters 2
## 4476                                                                                                 Battlebots: Design & Destroy
## 4477                                                                                                  Devil May Cry HD Collection
## 4478                                                                                           Eternal Darkness: Sanity's Requiem
## 4479                                                                                                        Power Rangers: S.P.D.
## 4480                                                                                                     Naruto: Ultimate Ninja 3
## 4481                                                                                                              SingStar Motown
## 4482                                                                                                      Neon Genesis Evangelion
## 4483                                                                                             Nicktoons: Attack of the Toybots
## 4484                                                                                             Mobile Suit Gundam: One Year War
## 4485                                                                                             Tongari Boushi to Mahou no Otana
## 4486                                                                                                              NFL Blitz 20-03
## 4487                                                                                                     Just Dance: Summer Party
## 4488                                                                                            SpongeBob's Atlantis SquarePantis
## 4489                                                                                   Dragon Ball Z: Shin Budokai - Another Road
## 4490                                                                                                           Master of Illusion
## 4491                                                                                                  Star Wars: Jedi Starfighter
## 4492                                                                                           Remington Great American Bird Hunt
## 4493                                                                                                  Classic NES Series: Metroid
## 4494                                                                                                               Alpha Protocol
## 4495                                                                                                                  Tetris Axis
## 4496                                                                                                Dora the Explorer: Dora Puppy
## 4497                                                                                                                       Primal
## 4498                                                                                                              Madden NFL 2002
## 4499                                                                                                 Need for Speed Underground 2
## 4500                                                                                                       007: Quantum of Solace
## 4501                                                                                                     Spec Ops: Covert Assault
## 4502                                                                                                                   SSX Tricky
## 4503                                                                                                        Flight Control Rocket
## 4504                                                                                                                      FIFA 14
## 4505                                                               The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 4506                                                                                                                Trials Fusion
## 4507                                                                                                             Wheel of Fortune
## 4508                                                                                                        NiGHTS into dreams...
## 4509                                                                                                           NCAA Football 2004
## 4510                                                                                                                    Overwatch
## 4511                                                                                                                  Rock Band 4
## 4512                                                                                                                      NBA Jam
## 4513                                                                                                                     Bionicle
## 4514                                                                                                                    Minecraft
## 4515                                                                                                                     MLB 2002
## 4516                                                                                                                Sleeping Dogs
## 4517                                                                                                                TimeSplitters
## 4518                                                                                                                 Barnstorming
## 4519                                                                                      InuYasha: The Secret of the Cursed Mask
## 4520                                                                                       Rune Factory 3: A Fantasy Harvest Moon
## 4521                                                                                            The Powerpuff Girls: Him and Seek
## 4522                                                                                                              Mega Man Zero 2
## 4523                                                                                       Wonder Project J: Kikai no Shonen Pino
## 4524                                                                                             2010 FIFA World Cup South Africa
## 4525                                                                                     Atelier Totori: The Adventurer of Arland
## 4526                                                                                                           Spec Ops: The Line
## 4527                                                                      The Fairly Odd Parents: Game Boy Advance Video Volume 1
## 4528                                                                                                 Ghostbusters: The Video Game
## 4529                                                                                               Hunter: The Reckoning  Wayward
## 4530                                                                                                     How to Train Your Dragon
## 4531                                                                                           Command & Conquer 3: Tiberium Wars
## 4532                                                                                                                   WipEout 64
## 4533                                                                                                              Mischief Makers
## 4534                                                                                                                  Max Payne 3
## 4535                                                                                                                  Petz Bunnyz
## 4536                                                                                                Castlevania: Portrait of Ruin
## 4537                                                                                                             Battle vs. Chess
## 4538                                                                                                             EyeToy: AntiGrav
## 4539                                                                                                                      FIFA 14
## 4540                                                                                                  EverQuest Online Adventures
## 4541                                                                                                                Cool Boarders
## 4542                                                                                    999: Nine Hours, Nine Persons, Nine Doors
## 4543                                                                                             Mobile Suit Gundam: Zeonic Front
## 4544                                                                                             Zone of the Enders HD Collection
## 4545                                                                                                                 Def Jam Icon
## 4546                                                                                        Tales of the World: Radiant Mythology
## 4547                                                                                                                     Monopoly
## 4548                                                                                                                 Dawn of Mana
## 4549                                                                                                 Microsoft Flight Simulator X
## 4550                                                                                                 Lego Batman 3: Beyond Gotham
## 4551                                                                                                              Madden NFL 2003
## 4552                                                                                                           NASCAR Kart Racing
## 4553                                                                                                               Disney Sing It
## 4554                                                                                                            Backyard Baseball
## 4555                                                                                                   Call of Duty: Black Ops II
## 4556                                                                                                              TRON: Evolution
## 4557                                                                                                      Midway Arcade Treasures
## 4558                                                                                      Call of Duty: Modern Warfare: Mobilized
## 4559                                                                                                               Petz: Horsez 2
## 4560                                                                                                                   The Smurfs
## 4561                                                                                                     Bakugan: Battle Brawlers
## 4562                                                                                                               NHL FaceOff 99
## 4563                                                                                                        Skylanders: Trap Team
## 4564                                                                                                     SEGA Classics Collection
## 4565                                                                                     Pirates of the Caribbean: At World's End
## 4566                                                                                                           Juiced: Eliminator
## 4567                                                                                                      Naruto: Ninja Council 3
## 4568                                                                                       Neon Genesis Evangelion 2nd Impression
## 4569                                                                                     Dai-2-Ji Super Robot Taisen Z: Hakai-hen
## 4570                                                                                                                   NBA Street
## 4571                                                                                           Ben 10 Alien Force: Vilgax Attacks
## 4572                                                                                           Ben 10 Alien Force: Vilgax Attacks
## 4573                                                                                      Valkyrie Profile: Covenant of the Plume
## 4574                                                                                       The Legend of Spyro: The Eternal Night
## 4575                                                                                                      Mega Man Battle Network
## 4576                                                                                                               LEGO Rock Band
## 4577                                                                                                                   25 to Life
## 4578                                                                                                                      NHL 2K6
## 4579                                                                                                   Medal of Honor: Rising Sun
## 4580                                                                                                                     The Sims
## 4581                                                                                                      Guitar Hero: Smash Hits
## 4582                                                                                                                   Dog's Life
## 4583                                                                                                                  The X Files
## 4584                                                                                                            Super Wagyan Land
## 4585                                                                                                                       Rascal
## 4586                                                                                                               Hometown Story
## 4587                                                                                               Tony Hawk's American Wasteland
## 4588                                                                                                                   Top Spin 4
## 4589                                                                                            Famicom Mini: Super Mario Bros. 2
## 4590                                                                                                      Crash: Mind Over Mutant
## 4591                                                                                                      Medal of Honor Heroes 2
## 4592                                                                                                    Yu-Gi-Oh! GX: Tag Force 2
## 4593                                                                                                                  Colony Wars
## 4594                                                                                                       All-Star Baseball 2004
## 4595                                                                                                           Big Strike Bowling
## 4596                                                                                                             Ragnarok Odyssey
## 4597                                                                                Harry Potter and the Deathly Hallows - Part 1
## 4598                                                                                                                       Horsez
## 4599                                                                                       SpongeBob's Truth or Square (US sales)
## 4600                                                                                                          NASCAR Thunder 2002
## 4601                                                                                                                      Grandia
## 4602                                                                                                                 ESPN NHL 2K5
## 4603                                                              Yu-Gi-Oh! 7 Trials to Glory: World Championship Tournament 2005
## 4604                                                                                                        Hot Wheels World Race
## 4605                                                                               Avatar: The Last Airbender - The Burning Earth
## 4606                                                                                                Superman: Shadow of Apokolips
## 4607                                                                                                    NiGHTS: Journey of Dreams
## 4608                                                                                                             American Chopper
## 4609                                                                                                                     Vanquish
## 4610                                                                                   Star Wars Trilogy: Apprentice of the Force
## 4611                                                                                                      Marvel Super Hero Squad
## 4612                                                                              Lemony Snicket's A Series of Unfortunate Events
## 4613                                                                               JGTC: All-Japan Grand Touring Car Championship
## 4614                                                                                                                  NBA Live 06
## 4615                                                                                                              Arc the Lad III
## 4616                                                                                                           Solitaire Overload
## 4617                                                                                        Mobile Suit Gundam: Gundam vs. Gundam
## 4618                                                                                                                   Test Drive
## 4619                                                                                               Jikkyou Powerful Pro Yakyuu 11
## 4620                                                                                               Ghost Trick: Phantom Detective
## 4621                                                                       The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4622                                                                                                   Rush 2: Extreme Racing USA
## 4623                                                                                                               NFL Blitz 2001
## 4624                                                                                                                 Dr. Mario 64
## 4625                                                                                                Jikkyou Powerful Pro Yakyuu 6
## 4626                                                                                                   Army Men: Sarge's Heroes 2
## 4627                                                                                        James Bond 007: Everything or Nothing
## 4628                                                                                                         Green Day: Rock Band
## 4629                                                                                                   Wolfenstein: The Old Blood
## 4630                                                                                                             MLB 08: The Show
## 4631                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 4632                                                                                            Dance Dance Revolution Ultramix 2
## 4633                                                                                              Mega Man Anniversary Collection
## 4634                                                                                            Blazing Angels: Squadrons of WWII
## 4635                                                                                                              Super Famista 4
## 4636                                                                      The Fairly Odd Parents: Game Boy Advance Video Volume 2
## 4637                                                                                                Cabela's Legendary Adventures
## 4638                                                                            Taiko no Tatsujin DS: Dororon! Youkai Daikessen!!
## 4639                                                                                          Harry Potter and the Goblet of Fire
## 4640                                                                                      JumpStart: Escape from Adventure Island
## 4641                                                                                                   Thrillville: Off the Rails
## 4642                                                                                                          Style Lab: Makeover
## 4643                                                                                                  Condemned: Criminal Origins
## 4644                                                                                                                  Mega Man X6
## 4645                                                                                                   Monster Jam: Urban Assault
## 4646                                                                                                                   BloodRayne
## 4647                                                                                     Kumamon Bomber: Puzzle de Kumamon Taisou
## 4648                                                                                               Castlevania: Curse of Darkness
## 4649                                                                                                          Tom Clancy's HAWX 2
## 4650                                                                                                   Harvest Moon: Grand Bazaar
## 4651                                                                                       International Superstar Soccer Pro '98
## 4652                                                                                                    Jimmy Neutron: Boy Genius
## 4653                                                                                                                        Black
## 4654                                                                                    Zack & Wiki: Quest for Barbaros' Treasure
## 4655                                                                                  Double Pack: Finding Nemo / The Incredibles
## 4656                                                                                    Star Wars The Clone Wars: Republic Heroes
## 4657                                                                                                                     NBA 2K11
## 4658                                                                                             Animal Crossing: Amiibo Festival
## 4659                                                                                                              Hyrule Warriors
## 4660                                                                                Harry Potter and the Deathly Hallows - Part 1
## 4661                                                                                                               Fishing Resort
## 4662                                                                                                                WWE All Stars
## 4663                                                                                             Lord of the Rings: The Third Age
## 4664                                                                                               Football Manager Handheld 2011
## 4665                                                                                     Pirates of the Caribbean: At World's End
## 4666                                                                                                           Mega Man Legends 2
## 4667                                                                                                     X-Men vs. Street Fighter
## 4668                                                                                                          High Rollers Casino
## 4669                                                                                        Castlevania: The Dracula X Chronicles
## 4670                                                                                                                The Suffering
## 4671                                                                                                    Cyber Troopers Virtual-On
## 4672                                                                                                             Katamari Forever
## 4673                                                                                       Star Wars Starfighter: Special Edition
## 4674                                                                                                                    TimeShift
## 4675                                                                                                                      NBA Jam
## 4676                                                                                           Zone of the Enders: The 2nd Runner
## 4677                                                                                                 Ghostbusters: The Video Game
## 4678                                                                                          Attack on Titan: Humanity in Chains
## 4679                                                                                                   Jampack Spring 2004 (RP-T)
## 4680                                                                                        Dexter's Laboratory Deesaster Strikes
## 4681                                                                                                             NFL GameDay 2004
## 4682                                                                                               Scooby-Doo and the Cyber Chase
## 4683                                                                                             Danganronpa: Trigger Happy Havoc
## 4684                                                                                         Tom and Jerry in War of the Whiskers
## 4685                                                                                             Tomb Raider: The Last Revelation
## 4686                                                                                                    pro evolution soccer 2011
## 4687                                                                                                    Sega Rally Championship 2
## 4688                                                                                                                     Quake II
## 4689                                                                                                          Crash of the Titans
## 4690                                                                                                                     BioShock
## 4691                                                                                            Cars: Mater-National Championship
## 4692                                                                                                             MLB 10: The Show
## 4693                                                                                                Wheel of Fortune: 2nd Edition
## 4694                                                                                           Tom Clancy's Rainbow Six: Lockdown
## 4695                                                                              Mobile Suit Gundam: Gundam vs. Gundam NEXT PLUS
## 4696                                                                                                           Cool Boarders 2001
## 4697                                                                                                              Grudge Warriors
## 4698                                                            World Soccer Jikkyou Winning Eleven 2000: U-23 Medal heno Chousen
## 4699                                                                                                      Destiny: The Taken King
## 4700                                                                                                           Mobile Suit Gundam
## 4701                                                                                                          Mass Effect Trilogy
## 4702                                                           Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 4703                                                                                                   Wolfenstein: The New Order
## 4704                                                                        James Patterson Women's Murder Club: Games of Passion
## 4705                                                                                                       Farming Simulator 2015
## 4706                                                                                                    Jimmy Neutron: Boy Genius
## 4707                                                                                                            Itadaki Street DS
## 4708                                                                                               Castlevania: Order of Ecclesia
## 4709                                                                                                    BlazBlue: Continuum Shift
## 4710                                                                                                     X-Men: The Official Game
## 4711                                                                                                          300: March to Glory
## 4712                                                                                                               E0: Enemy Zero
## 4713                                                                                                            Nicktoons: Unite!
## 4714                                                                                                           Six Flags Fun Park
## 4715                                                                                                                   Spore Hero
## 4716                                                                                                          Mass Effect Trilogy
## 4717                                                                                                                NASCAR Racing
## 4718                                                                                                          LEGO Jurassic World
## 4719                                                            Monotaro Dentetsu 2010: Sengoku Ishin no Hero Daishuugou! no Maki
## 4720                                                                                                                           Up
## 4721                                                                                                   Spider-Man: Web of Shadows
## 4722                                                                                     Boku no Natsuyasumi 2: Umi no Bouken Hen
## 4723                                                                                                      SpongeBob SquigglePants
## 4724                                                                                                            Cars: Race-O-Rama
## 4725                                                                                                               Fantastic Pets
## 4726                                                                                                 Command & Conquer: Red Alert
## 4727                                                                                    Star Wars The Clone Wars: Republic Heroes
## 4728                                                                                                                      Dig Dug
## 4729                                                                                     Ogre Battle 64: Person of Lordly Caliber
## 4730                                                                                        Superman: The New Superman Adventures
## 4731                                                                                           UEFA Euro 2008 Austria-Switzerland
## 4732                                                                                                 The Terminator: Dawn of Fate
## 4733                                                                                                     The LEGO Movie Videogame
## 4734                                                                                                 Rogue Galaxy: Director's Cut
## 4735                                                                                                                 Armored Core
## 4736                                                                                                        Monster Trucks Mayhem
## 4737                                                                                          Winter Sports 2: The Next Challenge
## 4738                                                                                                         Green Day: Rock Band
## 4739                                                                                                              Densha De Go! 2
## 4740                                                                                              Transformers: Fall of Cybertron
## 4741                                                                                               Call of Duty: Advanced Warfare
## 4742                                                                                       Disney Princess: Enchanting Storybooks
## 4743                                                                                                             Monopoly Streets
## 4744                                                                                                                    Band Hero
## 4745                                                                                                            The Wonderful 101
## 4746                                                                                         No More Heroes 2: Desperate Struggle
## 4747                                                                                                 Battlefield 2: Modern Combat
## 4748                                                                                                  Armored Core 2: Another Age
## 4749                                                                                                   Buzz! Junior: Jungle Party
## 4750                                                                                               Mortal Kombat: Deadly Alliance
## 4751                                                                                                    Marvel: Ultimate Alliance
## 4752                                                                                                                     NBA 2K11
## 4753                                                                                               AKB1/48: Idol to Koishitara...
## 4754                                                                                                                  Pro Pinball
## 4755                                                                                                                  '98 Koshien
## 4756                                                                                                                      NBA 2K9
## 4757                                                                                Yu-Gi-Oh! The Eternal Duelist Soul (JP sales)
## 4758                                                                                                   Speed Racer: The Videogame
## 4759                                                                                                                 Naughty Bear
## 4760                                                                                                            Littlest Pet Shop
## 4761                                                                                                                  TNA iMPACT!
## 4762                                                                                                            Just Dance Kids 2
## 4763                                                                                                           Duke Nukem Forever
## 4764                                                                                               Hatsune Miku: Project Diva 2nd
## 4765                                                                                                  Marvel: Ultimate Alliance 2
## 4766                                                                                                       Mario no Super Picross
## 4767                                                                                           Ed, Edd n Eddy: The Mis-Edventures
## 4768                                                                                               Jikkyou Powerful Pro Yakuu '94
## 4769                                                                                                      Disney's Tarzan Untamed
## 4770                                                                                         Borderlands: The Handsome Collection
## 4771                                                                                                              The Gunstringer
## 4772                                                                                                          Knockout Kings 2001
## 4773                                                                                                        From Russia With Love
## 4774                                                                                                               FIFA Soccer 13
## 4775                                                                                                                Asura's Wrath
## 4776                                                                                                             Avatar: The Game
## 4777                                                                    My Virtual Tutor: Reading Adventure First to Second Grade
## 4778                                                                                              Minority Report: Everybody Runs
## 4779                                                    Disney's Hercules / Disney's The Jungle Book: Groove Party / A Bug's Life
## 4780                                                                                                             NFL GameDay 2002
## 4781                                                                                                                        Pengo
## 4782                                                                           Disney Sing It! High School Musical 3: Senior Year
## 4783                                                                                                             Story of Seasons
## 4784                                                                                                            Beowulf: The Game
## 4785                                                                                                                   Mouse Trap
## 4786                                                                                               Super Monkey Ball: Step & Roll
## 4787                                                                                             Hatsune Miku: Project Diva F 2nd
## 4788                                                                                                                     Overlord
## 4789                                                                                                    Tak and the Power of Juju
## 4790                                                               Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 4791                                                                                                       Sega Superstars Tennis
## 4792                                                                                                 LEGO Harry Potter: Years 5-7
## 4793                                                                                                               Dragon Quest X
## 4794                                                                                                                       Wall-E
## 4795                                                                                           Medarot: Kabuto / Kuwagata Version
## 4796                                                                                                                     NBA 2K10
## 4797                                                                                                                     Defender
## 4798                                                                                                            Super Duper Sumos
## 4799                                                                                                           WipeOut 3 The Game
## 4800                                                                                      Taiko no Tatsujin Wii: Dodon to 2 Yome!
## 4801                                                                                                                 Thief (2014)
## 4802                                                                                                                  Congo Bongo
## 4803                                                                                                      Gauntlet: Seven Sorrows
## 4804                                                                                            Harry Potter: Quidditch World Cup
## 4805                                                                                                    Advance Wars: Dual Strike
## 4806                                                                 Yu-Gi-Oh! 5D's Stardust Accelerator: World Championship 2009
## 4807                                                                                                 Warriors Orochi 2 (JP sales)
## 4808                                                                                                  WWE SmackDown! vs. RAW 2006
## 4809                                                                                     The Chronicles of Narnia: Prince Caspian
## 4810                                                                                      The Incredibles: Rise of the Underminer
## 4811                                                                                                                    Pet in TV
## 4812                                                                                                               Battalion Wars
## 4813                                                                                                            NBA ShootOut 2000
## 4814                                                                                                  Power Rangers: Dino Thunder
## 4815                                                                                                               Rocksmith 2014
## 4816                                                                                                              Samurai Shodown
## 4817                                                                                                                       NHL 15
## 4818                                                                                                                         TMNT
## 4819                                                                        Final Fantasy Crystal Chronicles: The Crystal Bearers
## 4820                                                                                                Cabela's Big Game Hunter 2010
## 4821                                                                                                              EA Sports UFC 2
## 4822                                                                                                              Fighting Vipers
## 4823                                                                                                        NCAA GameBreaker 2000
## 4824                                                                                                                   Iron Man 2
## 4825                                                                                      The Legend of Spyro: Dawn of the Dragon
## 4826                                                                                       AKB1/48: Idol to Guam de Koishitara...
## 4827                                                                                                         RR64: Ridge Racer 64
## 4828                                                                                                               Top Gear Rally
## 4829                                                                                                    NFL Quarterback Club 2000
## 4830                                                                                          Mortal Kombat Mythologies: Sub-Zero
## 4831                                                                                             18 Wheeler: American Pro Trucker
## 4832                                                                                                              Atari Anthology
## 4833                                                                                                     Bugs Bunny: Lost in Time
## 4834                                                                                                                      NBA Jam
## 4835                                                                                    Sherlock Holmes: The Mystery of the Mummy
## 4836                                                                                                       Hot Wheels: Beat That!
## 4837                                                                                                                     MLB 2006
## 4838                                                                                    Star Wars The Clone Wars: Republic Heroes
## 4839                                                                                                        Brunswick Pro Bowling
## 4840                                                                                                                     Mafia II
## 4841                                                                                                   Rocket Power: Dream Scheme
## 4842                                                                                       SpongeBob's Truth or Square (US sales)
## 4843                                                                                                         MX vs. ATV Unleashed
## 4844                                                                                                   Rampage: Total Destruction
## 4845                                                                                                                    Planet 51
## 4846                                                                                                   The Urbz: Sims in the City
## 4847                                                                                                         Road Rash: Jailbreak
## 4848                                                                                                                     Mother 3
## 4849                                                                                               Nicktoons: Freeze Frame Frenzy
## 4850                                                                                                   Diner Dash: Sizzle & Serve
## 4851                                                                                                 Rapala Pro Bass Fishing 2010
## 4852                                                                                                      Legends of WrestleMania
## 4853                                                                                                              Wii Sports Club
## 4854                                                                                                     Tomb Raider: Anniversary
## 4855                                                                                                          You Don't Know Jack
## 4856                                                                                         Mystery Dungeon: Shiren the Wanderer
## 4857                                                                                                             Sonic Lost World
## 4858                                                                                                       Condemned 2: Bloodshot
## 4859                                                                                                   Legacy of Ys: Books I & II
## 4860                                                                                                        Star Wars: Clone Wars
## 4861                                                                                                                NBA Live 2002
## 4862                                                                                                          Boku no Natsuyasumi
## 4863                                                                                                               Armored Core V
## 4864                                                                                                                      I-Ninja
## 4865                                                                                                            Command & Conquer
## 4866                                                                                The King of Fighters: Maximum Impact - Maniax
## 4867                                                                                                                      NBA Jam
## 4868                                                                                                                Mass Effect 2
## 4869                                                                                                  SD Gundam G Generation Seed
## 4870                                                                                                    Call of Duty: Finest Hour
## 4871                                                                                             Scooby-Doo! and the Spooky Swamp
## 4872                                                                                                    Naruto: Path of the Ninja
## 4873                                                                                                      Rise of the Tomb Raider
## 4874                                                                                                          Hitman: Blood Money
## 4875                                                                                                           Tales of Phantasia
## 4876                                                                                                               Alpha Protocol
## 4877                                                                                                         Suzuki TT Superbikes
## 4878                                                                                                                 Rumble Roses
## 4879                                                                                                              Just Dance 2014
## 4880                                                                                    Fantastic Four: Rise of the Silver Surfer
## 4881                                                                                                          Ultimate Spider-Man
## 4882                                                                                                                       GRID 2
## 4883                                                                                                   LEGO The Lord of the Rings
## 4884                                                                                                  Juiced 2: Hot Import Nights
## 4885                                                                                                    Skylanders: SuperChargers
## 4886                                                                                                                       NHL 99
## 4887                                                                                                                     NBA 2K10
## 4888                                                                                                            Dungeon Siege III
## 4889                                                                                                    Viking: Battle for Asgard
## 4890                                                                                                        Brunswick Pro Bowling
## 4891                                                                                                   Monster Jam: Urban Assault
## 4892                                                                                                                Danball Senki
## 4893                                                                                                                  NASCAR Heat
## 4894                                                                                                                  Bloody Roar
## 4895                                                                                                                Bump 'n' Jump
## 4896                                                                                      Mobile Suit Gundam: Lost War Chronicles
## 4897                                                                                                        Disney's Brother Bear
## 4898                                                                                          Naruto: Clash of Ninja Revolution 2
## 4899                                                                                                                  NBA Live 09
## 4900                                                                                           LEGO Star Wars III: The Clone Wars
## 4901                                                                                                    The House of The Dead III
## 4902                                                                                                       Rune Factory: Frontier
## 4903                                                                                                Fire Emblem: Fuuin no Tsurugi
## 4904                                                                                       SpongeBob's Truth or Square (US sales)
## 4905                                                                                                                      FIFA 12
## 4906                                                                                                          Ener-G: Gym Rockets
## 4907                                                                                                              The Darkness II
## 4908                                                                                                                  NBA Live 09
## 4909                                                                                                                  Laser Blast
## 4910                                                                                            Dancing with the Stars: We Dance!
## 4911                                                                                                                     LocoRoco
## 4912                                                                                         Thrasher Presents: Skate and Destroy
## 4913                                                                            Are You Smarter than a 5th Grader? Make the Grade
## 4914                                                                                                               Donkey Konga 2
## 4915                                                                                                              Just Dance 2014
## 4916                                                                                      Metal Gear Solid: The Legacy Collection
## 4917                                                                                            Tear Ring Saga Yutona Eiyuu Senki
## 4918                                                                                                               Project X Zone
## 4919                                                                                                      Red Faction: Armageddon
## 4920                                                                                                                 Wipeout 2048
## 4921                                                                                                        Need for Speed: Nitro
## 4922                                                                                    Mystery Case Files: The Malgrave Incident
## 4923                                                                                                             Yoshi Touch & Go
## 4924                                                                                                           EA Sports Active 2
## 4925                                                                                               Combat of Giants: Dinosaurs 3D
## 4926                                                                                             Taiko no Tatsujin Wii: Ketteiban
## 4927                                                                                                           Age of Empires III
## 4928                                                                                                                        SSX 3
## 4929                                                                                                             MLB 15: The Show
## 4930                                                                                                              Madden NFL 2005
## 4931                                                                                                       All-Star Baseball 2000
## 4932                                                                                                               Custom Robo V2
## 4933                                                                                                               Extreme-G: XG2
## 4934                                                                                                   BattleTanx: Global Assault
## 4935                                                                                      Combat Wings: The Great Battles of WWII
## 4936                                                                                             Chibi-Robo! Plug into Adventure!
## 4937                                                                                                            Dawn of Discovery
## 4938                                                                                                   Jampack Winter 2003 (RP-T)
## 4939                                                                                            Dancing with the Stars: We Dance!
## 4940                                                                                                     Kengo: Master of Bushido
## 4941                                                                                                                 Blood Omen 2
## 4942                                                                                     Sesame Street: Elmo's A-to-Zoo Adventure
## 4943                                                                                                            Skylanders Giants
## 4944                                                                                                                 Just Dance 4
## 4945                                                                                                      Super Fire ProWrestling
## 4946                                                                                                   Cabela's Dangerous Hunts 2
## 4947                                                                                                    Marvel: Ultimate Alliance
## 4948                                                                               SpongeBob vs The Big One: Beach Party Cook Off
## 4949                                                                                                                    MotoGP 08
## 4950                                                                                                         Imagine: Party Babyz
## 4951                                                                                                                  Chessmaster
## 4952                                                                                                      Tiger Woods PGA Tour 14
## 4953                                                                                                                   Fatal Fury
## 4954                                                                                                       Farming Simulator 2013
## 4955                                                                 From TV Animation One Piece: Yume no Lufy Kaizokudan Tanjou!
## 4956                                                                                                               The Dog Island
## 4957                                                                                                          Madden NFL Football
## 4958                                                                                                                   The Sims 2
## 4959                                                                                                      Ice Age 2: The Meltdown
## 4960                                                                                                             MLB 14: The Show
## 4961                                                                                                              Super Famista 3
## 4962                                                                                                              Auto Modellista
## 4963                                                                                    Tom Clancy's Ghost Recon 2: Summit Strike
## 4964                                                                                                         Junior Classic Games
## 4965                                                                                           Hooked! Again: Real Motion Fishing
## 4966                                                                                                      Tiger Woods PGA Tour 08
## 4967                                                                             Karaoke Revolution Presents American Idol Encore
## 4968                                                                                                                      Airlock
## 4969                                                                                                          Tokimeki Memorial 2
## 4970                                                                                                  Samurai Warriors Chronicles
## 4971                                                                                                          Tomb Raider: Legend
## 4972                                                                                               Ice Age: Dawn of the Dinosaurs
## 4973                                                                                                        Dance Party: Pop Hits
## 4974                                                                                            Harry Potter: Quidditch World Cup
## 4975                                                                                Jam Sessions: Sing and Play Guitar (US sales)
## 4976                                                                                                                Saints Row IV
## 4977                                                                                             Evil Dead: Fistfull of Boomstick
## 4978                                                                                               One Piece: Unlimited World Red
## 4979                                                                                                              Phantasy Star Ø
## 4980                                                                                                               Triple Play 97
## 4981                                                                                                           Virtua Tennis 2009
## 4982                                                                                                                 Super Soccer
## 4983                                                                                                 Shin Megami Tensei: Nocturne
## 4984                                                                                                          Wario Land II (GBC)
## 4985                                                                                           San Francisco Rush: Extreme Racing
## 4986                                                                                                               Dragon's Crown
## 4987                                                                          Bakusou Dekotora Densetsu: Otoko Ippiki Yume Kaidoi
## 4988                                                                                                       Imagine: Salon Stylist
## 4989                                                                                                       ESPN College Hoops 2K5
## 4990                                                                                                   Looney Tunes: Acme Arsenal
## 4991                                                                                                Cabela's Dangerous Hunts 2009
## 4992                                                                                   Fragile Dreams: Farewell Ruins of the Moon
## 4993                                                                                               SD Gundam G Generation Spirits
## 4994                                                                                                          Batman: Arkham City
## 4995                                                                                                               Disney Sing It
## 4996                                                                                                          Peppa Pig: The Game
## 4997                                                                                                      God Eater 2: Rage Burst
## 4998                                                                                                           Get Fit with Mel B
## 4999                                                                                                           The Cat in the Hat
## 5000                                                                                    Naruto Shippuden: Ultimate Ninja Heroes 3
## 5001                                                                                                             NFL GameDay 2002
## 5002                                                                                                             Turok: Evolution
## 5003                                                                                                      Destiny: The Taken King
## 5004                                                                                         Tamagotchi Connection: Corner Shop 3
## 5005                                                                  Mobile Suit Gundam: Giren no Yabou Zeon Dokuritsu Sensouden
## 5006                                                                                                                      Ice Age
## 5007                                                                                                       Sega Superstars Tennis
## 5008                                                                                                                   Headhunter
## 5009                                                                                                                        Skate
## 5010                                                                                           Shin Megami Tensei: Devil Summoner
## 5011                                                                                            Raving Rabbids: Travel in Time 3D
## 5012                                                                                                             NCAA Football 08
## 5013                                                                                       Marvel Nemesis: Rise of the Imperfects
## 5014                                                                                                                       NHL 15
## 5015                                                                                                           ESPN Extreme Games
## 5016                                                                                                              Forza Horizon 3
## 5017                                                                                                        Overlord: Dark Legend
## 5018                                                                                                    Ninja: Shadow of Darkness
## 5019                                                                                                     SD Gundam G Generation-F
## 5020                                                                                                           Bratz: Rock Angelz
## 5021                                                                                                                      FlatOut
## 5022                                                                                Phoenix Wright: Ace Attorney - Dual Destinies
## 5023                                                                                                                        SSX 3
## 5024                                                                                                             NCAA Football 11
## 5025                                                                                                            Tales of Zestiria
## 5026                                                                                           Lilo & Stitch 2: Hämsterviel Havoc
## 5027                                                                                             Metal Gear Solid: Snake Eater 3D
## 5028                                                                                                      Risk: Global Domination
## 5029                                                                                                            Elite Beat Agents
## 5030                                                                                                                      NBA 2K7
## 5031                                                                                               Mobile Suit Gundam version 2.0
## 5032                                                                                                               Grandia Xtreme
## 5033                                                                                                                 Silent Scope
## 5034                                                                                                      Final Fantasy Adventure
## 5035                                                                                                           Virtua Tennis 2009
## 5036                                                                              Dora The Explorer: Dora Saves the Snow Princess
## 5037                                                                                                          The Incredible Hulk
## 5038                                                                                               Mercenaries 2: World in Flames
## 5039                                                                                                Cabela's Big Game Hunter 2012
## 5040                                                                                                                EA Sports MMA
## 5041                                                                                                                   Iron Man 2
## 5042                                                                                                                       DiRT 2
## 5043                                                                                          Tokimeki Memorial: Forever with You
## 5044                                                                                                                  MediEvil II
## 5045                                                                                             Guitar Hero On Tour: Modern Hits
## 5046                                                                                                        Hunter: The Reckoning
## 5047                                                                                                           MX vs. ATV Untamed
## 5048                                                                                                    Rogue Trip: Vacation 2012
## 5049                                                                                                  Dai-4-Ji Super Robot Taisen
## 5050                                                                                                      Tiger Woods PGA Tour 08
## 5051                                                                                                              Pokemon Channel
## 5052                                                                                                Taiko no Tatsujin Portable DX
## 5053                                                                                     Etrian Odyssey IV: Legends of the Titans
## 5054                                                                                                        Moto Racer World Tour
## 5055                                                                                                         NCAA Final Four 2000
## 5056                                                                                                     Scribblenauts: Unlimited
## 5057                                                                                                                      FIFA 17
## 5058                                                                                                        Saints Row: The Third
## 5059                                                                                                              Just Dance 2015
## 5060                                                                                                  Madagascar: Escape 2 Africa
## 5061                                                                                        ZhuZhu Pets: Featuring The Wild Bunch
## 5062                                                                                                         RollerCoaster Tycoon
## 5063                                                                                                    Petz Rescue: Wildlife Vet
## 5064                                                                                                         Green Day: Rock Band
## 5065                                                                                                                     Gravitar
## 5066                                                                                             Monster Jam: Path of Destruction
## 5067                                                                                                  Toukiden: The Age of Demons
## 5068                                                                                                                EyeToy Play 2
## 5069                                                                                            Dance Dance Revolution Ultramix 3
## 5070                                                                                    Mobile Suit Gundam: Extreme VS Full Boost
## 5071                                                                                                   WWE SmackDown vs. Raw 2011
## 5072                                                                                                  Need for Speed: Hot Pursuit
## 5073                                                                                         The Legend of Spyro: A New Beginning
## 5074                                                                                                 Pro Evolution Soccer 2011 3D
## 5075                                                                               Shin Megami Tensei: Devil Survivor Overclocked
## 5076                                                                                         Dragon Ball Z: Attack of the Saiyans
## 5077                                                                                                      Marvel Super Hero Squad
## 5078                                                                               The House of the Dead: Overkill - Extended Cut
## 5079                                                                                                                         GRID
## 5080                                                                                     Harry Potter and the Prisoner of Azkaban
## 5081                                                                                                                      Quake 4
## 5082                                                                                                    Petz Rescue: Ocean Patrol
## 5083                                                                                                                      Solaris
## 5084                                                                                                                 Puppy Palace
## 5085                                                                                                          Super Dragon Ball Z
## 5086                                                                                                  Paws & Claws: Pampered Pets
## 5087                                                                                                      ESPN: Sports Connection
## 5088                                                                                                             Alien: Isolation
## 5089                                                                                            Naruto Shippuden: Ninja Destiny 2
## 5090                                                                                                                          SAW
## 5091                                                                                       The Legend of Spyro: The Eternal Night
## 5092                                                                                                                      Tobal 2
## 5093                                                                                                        Digging for Dinosaurs
## 5094                                                                                                              Trivial Pursuit
## 5095                                                                                                      Tiger Woods PGA Tour 09
## 5096                                                                                                          Ultimate Spider-Man
## 5097                                                                                                              Life is Strange
## 5098                                                                                           Kingdom Under Fire: Circle of Doom
## 5099                                                                                                        NBA Inside Drive 2002
## 5100                                                                                                                     The BIGS
## 5101                                                                                                    Major League Baseball 2K6
## 5102                                                                                                   Kileak: The DNA Imperative
## 5103                                                                                                                 Petz: Catz 2
## 5104                                                                                                                  Mini Ninjas
## 5105                                                                                                    Tom Clancy's The Division
## 5106                                                                                           Phantasy Star Portable 2: Infinity
## 5107                                                                                                     Hell's Kitchen: The Game
## 5108                                                                                                              LEGO Dimensions
## 5109                                                                                                  Monsters, Inc. Scream Arena
## 5110                                                                                                             Reel Fishing III
## 5111                                                                                               Cabela's Deer Hunt 2005 Season
## 5112                                                                                        Prince of Persia: The Forgotten Sands
## 5113                                                                                                   Rampage: Total Destruction
## 5114                                                                                         High Heat Major League Baseball 2003
## 5115                                                                                                                Madden NFL 11
## 5116                                                                                                    Super Formation Soccer 94
## 5117                                                                                                               Panzer Dragoon
## 5118                                                                                         Tiger Woods PGA Tour 12: The Masters
## 5119                                                                                                                         Rage
## 5120                                                                                                    Spider-Man: Friend or Foe
## 5121                                                                                           Yarudora Series Vol.1: Double Cast
## 5122                                                                                                            Dungeon Siege III
## 5123                                                                                                  Juiced 2: Hot Import Nights
## 5124                                                                                                               Rec Room Games
## 5125                                                           Fushigi no Dungeon: Furai no Shiren 2 - Oni Shuurai! Shiren Shiro!
## 5126                                                                                                             Turok: Rage Wars
## 5127                                                                                             Scooby-Doo! Classic Creep Capers
## 5128                                                                                                                   Dragonfire
## 5129                                                                                                                  Custom Robo
## 5130                                                                                                               FIFA Soccer 13
## 5131                                                                              Command & Conquer: Red Alert 3 Ultimate Edition
## 5132                                                                                    Harry Potter and the Order of the Phoenix
## 5133                                                                                          Medieval II: Total War Gold Edition
## 5134                                                                                                              Pac-Man World 2
## 5135                                                                                              Kotoba no Puzzle: Mojipittan DS
## 5136                                                                                    Barbie Horse Adventures: Blue Ribbon Race
## 5137                                                                                                              Bionic Commando
## 5138                                                                                                      Wanted: Weapons of Fate
## 5139                                                                          Slime MoriMori Dragon Quest: Shougeki No Shippo Dan
## 5140                                                                                                                   Dishonored
## 5141                                                                                                    Marvel: Ultimate Alliance
## 5142                                                                                                       NFL Street 2 Unleashed
## 5143                                                                                                        Super Robot Taisen EX
## 5144                                                                                                                FIFA Street 2
## 5145                                                                                                            Bottom of the 9th
## 5146                                                                                      Theatrhythm Final Fantasy: Curtain Call
## 5147                                                                                               Trauma Center: Under the Knife
## 5148                                                                                                        Shin Megami Tensei II
## 5149                                                                                Xenosaga Episode III: Also sprach Zarathustra
## 5150                                                                              Build-A-Bear Workshop: A Friend Fur All Seasons
## 5151                                                                                       Sid Meier's Civilization: Beyond Earth
## 5152                                                                                                      Need for Speed: The Run
## 5153                                                                                                           Virtua Fighter 3tb
## 5154                                                                                               Transformers: Dark of the Moon
## 5155                                                                                                  Mini-Yonku GB: Let's & Go!!
## 5156                                                                                                        Skylanders SWAP Force
## 5157                                                                                               LEGO Batman 2: DC Super Heroes
## 5158                                                                                                                  Rock Band 4
## 5159                                                                                                                Left 4 Dead 2
## 5160                                                                                                         The Sims 2: Castaway
## 5161                                                                                                             NCAA Football 07
## 5162                                                                                     The Chronicles of Narnia: Prince Caspian
## 5163                                                                                                    B.L.U.E.: Legend of Water
## 5164                                                                                                  Dreamworks Madagascar Kartz
## 5165                                                                                                                My Horse & Me
## 5166                                                                                                       GoldenEye: Rogue Agent
## 5167                                                                                                               Zero4 Champ RR
## 5168                                                                                                Dragon Ball Z: Infinite World
## 5169                                                                                                   Nonomura Byoin no Hitobito
## 5170                                                                                                          Tom Clancy's HAWX 2
## 5171                                                                                                   ESPN X Games Skateboarding
## 5172                                                                                                   Luxor: Pharaoh's Challenge
## 5173                                                                                                           Resident Evil Zero
## 5174                                                                                              Super Fire ProWrestling Special
## 5175                                                                                                              Yuu Yuu Hakusho
## 5176                                                                                                         Kamaitachi no Yoru 2
## 5177                                                                                         High Heat Major League Baseball 2004
## 5178                                                                                                                       Robots
## 5179                                                                                                                         NARC
## 5180                                                                                                    One Piece: Gigant Battle!
## 5181                                                                                                    Valkyrie Profile: Lenneth
## 5182                                                                                                      Tiger Woods PGA Tour 09
## 5183                                                                                                            Metro: Last Light
## 5184                                                                                                      Tiger Woods PGA Tour 14
## 5185                                                                                                                   LocoRoco 2
## 5186                                                                                                            Monster Rancher 3
## 5187                                                                                      The Incredibles: Rise of the Underminer
## 5188                                                                                             Spider-Man: Shattered Dimensions
## 5189                                                                                                   BlazBlue: Calamity Trigger
## 5190                                                                                           MechWarrior 2: 31st Century Combat
## 5191                                                                                                     Earth Defense Force 2025
## 5192                                                                                                  Hamtaro: Ham-Ham Heartbreak
## 5193                                                                                                           Okage: Shadow King
## 5194                                                                                                 Press Your Luck 2010 Edition
## 5195                                                                                                         Mobile Suit Z-Gundam
## 5196                                                                                                                 NHL Hitz Pro
## 5197                                                                                                              Sega Rally 2006
## 5198                                                                                                   Speed Racer: The Videogame
## 5199                                                                                                                     NHL 2K10
## 5200                                                                                                         Assassin's Creed III
## 5201                                                                                                         Kirby's Dream Land 3
## 5202                                                                                                  Big Bass World Championship
## 5203                                                                                                             NFL GameDay 2001
## 5204                                                                                                                      NBA 2K6
## 5205                                                                                                                Jurassic Park
## 5206                                                                                               Mystical Ninja starring Goemon
## 5207                                                                                                                  Tetrisphere
## 5208                                                                                     Saban's Power Rangers: Lightspeed Rescue
## 5209                                                                          Senran Kagura Shinovi Versus: Sh?jo-tachi no Sh?mei
## 5210                                                                                          North American Hunting Extravaganza
## 5211                                                                                               World's Scariest Police Chases
## 5212                                                                                                      Guitar Hero: Smash Hits
## 5213                                                                                               Shaun Palmer's Pro Snowboarder
## 5214                                                                                                      AMF Bowling World Lanes
## 5215                                                                                                     MechAssault 2: Lone Wolf
## 5216                                                                                               Middle-Earth: Shadow of Mordor
## 5217                                                                                                               Hamster Club 3
## 5218                                                                                                            Breath of Fire II
## 5219                                                                                                         Call of Duty: Ghosts
## 5220                                                                                                                  LEGO Racers
## 5221                                                                                                                     NBA 2K12
## 5222                                                                                       Teenage Mutant Ninja Turtles: Smash-Up
## 5223                                                                                                 Kinectimals: Now with Bears!
## 5224                                                                                                            ESPN NFL Football
## 5225                                                                                                     ATV/Monster Truck Mayhem
## 5226                                                                                          Naruto: Ultimate Ninja 3 (JP sales)
## 5227                                                                                                              Just Dance 2016
## 5228                                                                                                        Worms: Open Warfare 2
## 5229                                                                                                           Rapala Pro Fishing
## 5230                                                                                      J-League Pro Soccer Club o Tsukurou '04
## 5231                                                                                                                    Dark Void
## 5232                                                                                                      James Bond 007: Legends
## 5233                                                                                     Dai-2-Ji Super Robot Taisen Z Saisei-hen
## 5234                                                                                                                      WWE '12
## 5235                                                                                                 Disney's The Haunted Mansion
## 5236                                                                                         Arc the Lad: Twilight of the Spirits
## 5237                                                                                                Dance Dance Revolution 3rdMix
## 5238                                                                                                        Ryu Ga Gotoku Kenzan!
## 5239                                                                                                                       U-Sing
## 5240                                                                                                         Super Robot Taisen A
## 5241                                                                                                               World of Tanks
## 5242                                                                                                                Chicken Shoot
## 5243                                                                                                          Company of Heroes 2
## 5244                                                                                                                     Defiance
## 5245                                                                                                        We Sing Deutsche Hits
## 5246                                                                                                                 Boxer's Road
## 5247                                                                                                              Frogs And Flies
## 5248                                                                                                         DanceDanceRevolution
## 5249                                                                                      Harry Potter and the Chamber of Secrets
## 5250                                                                                                                EA Sports MMA
## 5251                                                                                                    Toriko: Gourmet Survival!
## 5252                                                                                                             South Park Rally
## 5253                                                                Ganbare Goemon 3: Shishi Jyuurokubei no Karakuri Manji Katame
## 5254                                                                                                                     Monopoly
## 5255                                                                                                     Mega Man Zero Collection
## 5256                                                                                                               Arctic Thunder
## 5257                                                                                                                      G-Force
## 5258                                                                                                                     NHL 2K10
## 5259                                                                                               Football Manager Handheld 2010
## 5260                                                                                         J-League Pro Soccer Club o Tsukurou!
## 5261                                                                                               Wonder Pets! Save the Animals!
## 5262                                                                                               Formula 1 Championship Edition
## 5263                                                                                                                        Shrek
## 5264                                                                                        CSI: Deadly Intent - The Hidden Cases
## 5265                                                                                                       SOCOM: Tactical Strike
## 5266                                                                                                                       Blasto
## 5267                                                                                                Trauma Center: Second Opinion
## 5268                                                                                                       Backyard Baseball 2006
## 5269                                                                                                               Dark Souls III
## 5270                                                                                           Cabela's Outdoor Adventures (2006)
## 5271                                                                                                            Nicktoons: Unite!
## 5272                                                                                                                   Suikoden V
## 5273                                                                                                                    Picross 2
## 5274                                                                                                                  Remember Me
## 5275                                                                                                             Battalion Wars 2
## 5276                                                                                                                Outlaw Golf 2
## 5277                                                                                                     SpongeBob's Boating Bash
## 5278                                                                           Sentouchu: Densetsu no Shinobi to Survival Battle!
## 5279                                                         Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 5280                                                                                                        Momotarou Dentetsu 12
## 5281                                                                                                                  Mini Ninjas
## 5282                                                                                                      Tekken Tag Tournament 2
## 5283                                                                                                      Batman: Rise of Sin Tzu
## 5284                                                                                        Disney's Tarzan: Return to the Jungle
## 5285                                                                                                     Cabela's Dangerous Hunts
## 5286                                                                                                         Terminator Salvation
## 5287                                                                                               Jikkyou Powerful Pro Yakyuu 13
## 5288                                                                                                    Fossil Fighters: Frontier
## 5289                                                                                                               Star Fox: Zero
## 5290                                                                                                                  Mega Man X3
## 5291                                                                                                                  Mini Ninjas
## 5292                                                                                                                Stunt Race FX
## 5293                                                                                                                Bloody Roar 3
## 5294                                                                                                               WWE Crush Hour
## 5295                                                                                                Persona 2: Eternal Punishment
## 5296                                                                                              Star Wars: Flight of the Falcon
## 5297                                                                                        One Piece: Gigant Battle 2 Shin Sekai
## 5298                                                                                                            Pac-Man All-Stars
## 5299                                                                                                              Def Jam Rapstar
## 5300                                                                                                              SimCity Creator
## 5301                                                                                                    Hannah Montana: The Movie
## 5302                                                                                                        Angry Birds Star Wars
## 5303                                                                                                                       Swords
## 5304                                                                                                           Mega Man ZX Advent
## 5305                                                                                             Jikkyou Powerful Pro Yakyuu 2000
## 5306                                                                                                      Sniper: Ghost Warrior 2
## 5307                                                                                                               Racquet Sports
## 5308                                                                                Harry Potter and the Deathly Hallows - Part 2
## 5309                                                                                                          Supreme Commander 2
## 5310                                                                                                      Resident Evil: Dead Aim
## 5311                                                                                                        Need for Speed Carbon
## 5312                                                                       The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 5313                                                                                    SpongeBob SquarePants: The Yellow Avenger
## 5314                                                                                      The Fairly Odd Parents: Shadow Showdown
## 5315                                                                                     Saban's Power Rangers: Lightspeed Rescue
## 5316                                                                                                             Xbox Music Mixer
## 5317                                                                                                                WWE All Stars
## 5318                                                                                                                    The Shoot
## 5319                                                                                                            College Hoops 2K8
## 5320                                                                                                       Guitar Hero: Metallica
## 5321                                                                                                               Guilty Gear X2
## 5322                                                                                                                    MotoGP 08
## 5323                                                                                                   Yu-Gi-Oh! 5D's Tag Force 5
## 5324                                                                                                  Enemy Territory: Quake Wars
## 5325                                                                                           Tom Clancy's Rainbow Six: Lockdown
## 5326                                                                            From TV Animation One Piece: Tobidase Kaizokudan!
## 5327                                                                                                       The Tale of Despereaux
## 5328                                                                                                            Aggressive Inline
## 5329                                                                                                           Karaoke Revolution
## 5330                                                                                                                   NFL Street
## 5331                                                                                                            Hello Kitty Daily
## 5332                                                                                             Metal Arms: Glitch in the System
## 5333                                                                                                       Farming Simulator 2015
## 5334                                                                                                Jikkyou Powerful Pro Yakyuu 7
## 5335                                                                                                                Rally Cross 2
## 5336                                                                                                                    EverGrace
## 5337                                                                                                                 Def Jam Icon
## 5338                                                                                               Lunar 2: Eternal Blue Complete
## 5339                                                                                       Street Fighter Alpha: Warriors' Dreams
## 5340                                                                                                        Rugrats: Royal Ransom
## 5341                                                                       Disney Fairies: Tinker Bell and the Great Fairy Rescue
## 5342                                                                                                             MLB 06: The Show
## 5343                                                                                                                F1 Race Stars
## 5344                                                                                                               Over the Hedge
## 5345                                                                                      Naruto Shippuden: Ultimate Ninja Impact
## 5346                                                                                                              Just Dance 2016
## 5347                                                                                            Charlie and the Chocolate Factory
## 5348                                                                                     Pirates of the Caribbean: At World's End
## 5349                                                                                           UEFA Euro 2008 Austria-Switzerland
## 5350                                                                                                 Kurushi Final: Mental Blocks
## 5351                                                                                                    Style Lab: Jewelry Design
## 5352                                                                                                     Risk / Battleship / Clue
## 5353                                                                                                 SD Gundam G Generation World
## 5354                                                                                LEGO Pirates of the Caribbean: The Video Game
## 5355                                                                                                   The Wild Thornberrys Movie
## 5356                                                                                    High School Musical 3: Senior Year DANCE!
## 5357                                                                                                   Dynasty Warriors 5 Empires
## 5358                                                                                                                  SoulCalibur
## 5359                                                                                                                    WipEout 3
## 5360                                                                                                               Etrian Odyssey
## 5361                                                                                                                        Conan
## 5362                                                                                              Classic NES Series: Ice Climber
## 5363                                                                                                        Skylanders: Trap Team
## 5364                                                                               Avatar: The Last Airbender - The Burning Earth
## 5365                                                                                                                     F.E.A.R.
## 5366                                                                                                                     Tenchu Z
## 5367                                                                                                                      Freeway
## 5368                                                                                                             Driver 2 Advance
## 5369                                                                                                            Monster Rancher 4
## 5370                                                                                                                   Iron Man 2
## 5371                                                                                                                 Chicken Riot
## 5372                                                                 Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 5373                                                                                                                   Iron Storm
## 5374                                                                                Harry Potter and the Deathly Hallows - Part 2
## 5375                                                                                                      MotorStorm: Arctic Edge
## 5376                                                                                      The Fairly Odd Parents: Shadow Showdown
## 5377                                                                                                             Radiant Historia
## 5378                                                                                                          Marvel Super Heroes
## 5379                                                                                                            Super Bust-A-Move
## 5380                                                                                                            Hitman: Contracts
## 5381                                                                                             Thunderstrike: Operation Phoenix
## 5382                                                                                                               Alien's Return
## 5383                                                                                                                    Frostbite
## 5384                                                                                                       LEGO Marvel's Avengers
## 5385                                                                                                     Kameo: Elements of Power
## 5386                                                                                                        Power Rangers Samurai
## 5387                                                                                                       WWE Day of Reckoning 2
## 5388                                                                                                   Dynasty Warriors 6 Empires
## 5389                                                                                                   The Urbz: Sims in the City
## 5390                                                                                                             Fantastic Voyage
## 5391                                                                                           The Adventures of Tintin: The Game
## 5392                                                                                                               Bee Movie Game
## 5393                                                                                                    Silent Hill HD Collection
## 5394                                                                                        Night Warriors: Darkstalkers' Revenge
## 5395                                                                                                           Off Road Challenge
## 5396                                                                                                                   Bank Heist
## 5397                                                                                       Harry Potter and the Half-Blood Prince
## 5398                                                                                        Tom Clancy's Ghost Recon: Shadow Wars
## 5399                                                                                                         Backstreet Billiards
## 5400                                                                                                           MX vs. ATV Untamed
## 5401                                                                                                                     Carnival
## 5402                                                                                               Football Manager Handheld 2008
## 5403                                                                                          Leisure Suit Larry: Magna Cum Laude
## 5404                                                                                Harry Potter and the Deathly Hallows - Part 2
## 5405                                                                                                         MVP 06 NCAA Baseball
## 5406                                                                                         Momotarou Dentetsu DS: Tokyo & Japan
## 5407                                                                                                                  Point Blank
## 5408                                                                                                                     Bookworm
## 5409                                                                                                      Smart Girl's Party Game
## 5410                                                                                                               Rayman Legends
## 5411                                                                                      Puzzle Quest: Challenge of the Warlords
## 5412                                                                                                 Star Ocean: Second Evolution
## 5413                                                                                                                  My Baby Boy
## 5414                                                                                                                    Tiny Tank
## 5415                                                                                                   Jonah Lomu Rugby Challenge
## 5416                                                                                                                   Spy Hunter
## 5417                                                                                                        Angry Birds Star Wars
## 5418                                                                                                          Imagine: Movie Star
## 5419                                                                                                                       NHL 09
## 5420                                                                                                            Zoo Tycoon (2013)
## 5421                                                                                                         Herbie: Fully Loaded
## 5422                                                                                                  The Sims 3: Town Life Stuff
## 5423                                                                                                 Teenage Mutant Ninja Turtles
## 5424                                                                                                               Pony Friends 2
## 5425                                                                                                     Disney Sing It: Pop Hits
## 5426                                                                                                Buzz! The Ultimate Music Quiz
## 5427                                                                                                                    Persona 5
## 5428                                                                                                          The Eye of Judgment
## 5429                                                                                     Pirates of the Caribbean: At World's End
## 5430                                                                                                  Modnation Racers: Road Trip
## 5431                                                                                                   Dynasty Warriors: Gundam 2
## 5432                                                                                                        Power Rangers Samurai
## 5433                                                                                                                Fade to Black
## 5434                                                                                                                      MXRider
## 5435                                                                                                   Avatar: The Last Airbender
## 5436                                                                                                        Battlefield: Hardline
## 5437                                                                                                 Delta Force: Black Hawk Down
## 5438                                                                               Night at the Museum: Battle of the Smithsonian
## 5439                                                                         World Championship Poker 2: Featuring Howard Lederer
## 5440                                                                                                            Sengoku Musou 3 Z
## 5441                                                                                              Operation Flashpoint: Red River
## 5442                                                                                                                  Ninja Blade
## 5443                                                                                 Tom Clancy's Ghost Recon Advanced Warfighter
## 5444                                                                            Transformers: Revenge of the Fallen (DS Versions)
## 5445                                                                                                                     Fracture
## 5446                                                                                                         Tokyo Highway Battle
## 5447                                                                                                              Pandora's Tower
## 5448                                                                                                                Binary Domain
## 5449                                                                                                    The King of Fighters XIII
## 5450                                                                                                           Beyond Good & Evil
## 5451                                                                                              Banjo-Kazooie: Grunty's Revenge
## 5452                                                                                                              Bomberman World
## 5453                                                                                                                 The X-Factor
## 5454                                                                                                   Digimon World: Dawn / Dusk
## 5455                                                                                                   Street Fighter Alpha 3 MAX
## 5456                                                                                            Untold Legends: The Warriors Code
## 5457                                                                                                           Virtua Tennis 2009
## 5458                                                                                                            Deathtrap Dungeon
## 5459                                                                                      Tales of the World: Radiant Mythology 2
## 5460                                                                                                                    Wipeout 2
## 5461                                                                                                                   Iron Man 2
## 5462                                                                                                           Ape Escape Academy
## 5463                                                                                                              The Darkness II
## 5464                                                                                                           SingStar Take That
## 5465                                                                                                  Marvel: Ultimate Alliance 2
## 5466                                                                                                 Ultimate Marvel vs. Capcom 3
## 5467                                                                                                         WWE Wrestlemania XIX
## 5468                                                                                                         Planet Puzzle League
## 5469                                                                                                                   The Sims 2
## 5470                                                                                                                         Hulk
## 5471                                                                                                      Naruto: Rise of a Ninja
## 5472                                                                                                              Chicken Blaster
## 5473                                                                                      Family Party: 90 Great Games Party Pack
## 5474                                                                                                     Klonoa 2: Lunatea's Veil
## 5475                                                                                                       Deus Ex: Invisible War
## 5476                                                                                                            Resonance of Fate
## 5477                                                                                                     Hell's Kitchen: The Game
## 5478                                                                                                     Disney's Treasure Planet
## 5479                                                                                                          NASCAR Thunder 2002
## 5480                                                                                                                 Jeanne d'Arc
## 5481                                                                                                           NCAA Basketball 10
## 5482                                                                                                    BeatMania Append GottaMix
## 5483                                                                                                              Dead or Alive 5
## 5484                                                                                                   Tak 2: The Staff of Dreams
## 5485                                                                                                         Rugby World Cup 2011
## 5486                                                                                                   Medal of Honor: Warfighter
## 5487                                                                                                    Kelly Slater's Pro Surfer
## 5488                                                                                                              Shrek SuperSlam
## 5489                                                                                                    Sonic Boom: Rise of Lyric
## 5490                                                                                                      Legends of Wrestling II
## 5491                                                                                                              World Stadium 3
## 5492                                                                                                              Little Deviants
## 5493                                                                                                        Silent Hill: Downpour
## 5494                                                                                                                  Extra Bases
## 5495                                                                                                         Super Power League 2
## 5496                                                                               Night at the Museum: Battle of the Smithsonian
## 5497                                                                                          Capcom Classics Collection Reloaded
## 5498                                                                                                                Madden NFL 09
## 5499                                                                                                             MLB 09: The Show
## 5500                                                                                                     Deus Ex: Mankind Divided
## 5501                                                                                                           Cool Boarders 2001
## 5502                                                                                              Classic NES Series: Castlevania
## 5503                                                                                                   Dragon Ball Z: Battle of Z
## 5504                                                                                                    Scooby-Doo! First Frights
## 5505                                                                                                          Fight Night Round 3
## 5506                                                                                               GT Advance Championship Racing
## 5507                                                                                                         Way of the Samurai 2
## 5508                                                                                                                FIFA Street 3
## 5509                                                                                                           Half-Minute Hero 2
## 5510                                                                                                                   BattleTanx
## 5511                                                                                            Hatsune Miku: Project Diva Extend
## 5512                                                                                                      Battlestations: Pacific
## 5513                                                                                                Pitfall 3D: Beyond the Jungle
## 5514                                                                                                   Disgaea 2: Cursed Memories
## 5515                                                                                                Cabela's Dangerous Hunts 2011
## 5516                                                                                                          DECA Sports Freedom
## 5517                                                                                                                Clock Tower 3
## 5518                                                                                                            Battle Dodge Ball
## 5519                                                                                                        Goosebumps HorrorLand
## 5520                                                                                   Phineas and Ferb: Across the 2nd Dimension
## 5521                                                                                                  Call Of Duty 2: Big Red One
## 5522                                                                                                                      Elebits
## 5523                                                                                              Warhammer 40,000: Squad Command
## 5524                                                                                                                      F1 2013
## 5525                                                                                                    Disgaea: Hour of Darkness
## 5526                                                                                                       NeoGeo Battle Coliseum
## 5527                                                                                                                     SSX Blur
## 5528                                                                                                                       DiRT 2
## 5529                                                                                                         Vin Diesel: Wheelman
## 5530                                                                         SpongeBob SquarePants: Creature from the Krusty Krab
## 5531                                                                                                         My Baby: First Steps
## 5532                                                                                                             MLB 08: The Show
## 5533                                                                                               The Black Eyed Peas Experience
## 5534                                                                                                                     Parodius
## 5535                                                                                                      Spy Kids 3-D: Game Over
## 5536                                                                                          Sakura Wars 3: Paris wa Moeteiru ka
## 5537                                                                                                             1001 Touch Games
## 5538                                                                                                        NCAA GameBreaker 2001
## 5539                                                                                                   Power Rangers: Ninja Storm
## 5540                                                                                                        Angry Birds Star Wars
## 5541                                                                                               Naruto: Gekito Ninja Taisen! 4
## 5542                                                                                  Kidou Senshi Gundam F91: Formula Senki 0122
## 5543                                                                                                      Despicable Me: The Game
## 5544                                                                                                      Golden Axe: Beast Rider
## 5545                                                                                                             MySims SkyHeroes
## 5546                                                                                                            MVP Baseball 2005
## 5547                                  Zaidan Houjin Nippon Kanji Nouryoku Kentei Kyoukai Kounin: KanKen DS 2 + Jouyou Kanji Jiten
## 5548                                                                                       Carnival Games: Monkey See, Monkey Do!
## 5549                                                                                                               Eternal Sonata
## 5550                                                                                                            DX Game of Life 2
## 5551                                                                                                                EA Playground
## 5552                                                                                                                  NBA Live 96
## 5553                                                                                                          Clash of the Titans
## 5554                                                                                                                     Folklore
## 5555                                                                                               Dragon Ball Z: Extreme Butoden
## 5556                                                                                Samurai Warriors 2: Xtreme Legends (JP sales)
## 5557                                                                                                               Sniper Elite 3
## 5558                                                                                                                  Teen Titans
## 5559                                                                                                Dead Rising 2: Off the Record
## 5560                                                                                                      Frogger II: Threeedeep!
## 5561                                                                                         Etrian Odyssey III: The Drowned City
## 5562                                                                                                   LEGO The Lord of the Rings
## 5563                                                                                                                  NBA Live 06
## 5564                                                                           Karaoke Revolution Presents American Idol Encore 2
## 5565                                                                                                                     Fireball
## 5566                                                                                                       Batman: Arkham Origins
## 5567                                                                                               Discovery Kids: Puppy Playtime
## 5568                                                                                                    Dr. Mario / Puzzle League
## 5569                                                                                                      Bleach: Shattered Blade
## 5570                                                                                   Shin Nippon Pro Wrestling: Toukon Retsuden
## 5571                                                                                                    Major League Baseball 2K6
## 5572                                                                                Pinball Hall of Fame: The Gottlieb Collection
## 5573                                                                                                        God of War Collection
## 5574                                                                                                                 Dead Space 2
## 5575                                                                                                              Def Jam Rapstar
## 5576                                                                                                                  Overlord II
## 5577                                                                                                                     NBA 2K10
## 5578                                                                                                          J Stars Victory Vs.
## 5579                                                                                                The Witcher: Enhanced Edition
## 5580                                                                                 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 5581                                                                                                            Nicktoons: Movin'
## 5582                                                                                    One Piece: Romance Dawn - Bouken no Yoake
## 5583                                                                                                       Batman: Arkham Origins
## 5584                                                                                                     SWAT: Global Strike Team
## 5585                                                                                                            Championship Bass
## 5586                                                                                                 Resident Evil: Revelations 2
## 5587                                                                                                         Test Drive Unlimited
## 5588                                                                                                      Golden Axe: Beast Rider
## 5589                                                                                                                Madden NFL 13
## 5590                                                                                                     Bratz: Girlz Really Rock
## 5591                                                                                                           NCAA Basketball 10
## 5592                                                                                                              Dead or Alive 5
## 5593                                                                                         Shin Megami Tensei: Devil Survivor 2
## 5594                                                                                                             NHL Breakaway 98
## 5595                                                                                                Momotarou Dentetsu 20-Shuunen
## 5596                                                                                                       LEGO Marvel's Avengers
## 5597                                                                                                                     Tekken 6
## 5598                                                                                                                     Kinetica
## 5599                                                                                                           Beautiful Katamari
## 5600                                                                                                              Bust-A-Move '99
## 5601                                                                                                                NBA Street V3
## 5602                                                                                                                  Overlord II
## 5603                                                                                                    Dragon Quest Monsters 1·2
## 5604                                                                                                    Army of Two: The 40th Day
## 5605                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 5606                                                                                                    Bigfoot: Collision Course
## 5607                                                                                                        Batman: Arkham Asylum
## 5608                                                                                                          Crash of the Titans
## 5609                                                                                      The Legend of Spyro: Dawn of the Dragon
## 5610                                                                                                                         Prey
## 5611                                                                                                          Birthday Party Bash
## 5612                                                                                                                    OverBlood
## 5613                                                                                                     ESPN X-Games Pro Boarder
## 5614                                                                                                       Murdered: Soul Suspect
## 5615                                                                                               Tony Hawk's American Wasteland
## 5616                                                                                                 Harvest Moon: Back to Nature
## 5617                                                                                                               Sniper Elite 3
## 5618                                                                                            Naruto: Ultimate Ninja (JP sales)
## 5619                                                                                                            Clockwork Empires
## 5620                                                                                           The Settlers 7: Paths to a Kingdom
## 5621                                                                                        Go, Diego, Go!: Great Dinosaur Rescue
## 5622                                                                                                             TrackMania Turbo
## 5623                                                                                                            The Biggest Loser
## 5624                                                                                                             Minute to Win It
## 5625                                                                                                                    Darkwatch
## 5626                                                                                                                 Housekeeping
## 5627                                                                                              Dance Dance Revolution Universe
## 5628                                                                                                                   SimAnimals
## 5629                                                                                          Prince of Persia: The Sands of Time
## 5630                                                                                                                  Sky Odyssey
## 5631                                                                                                    Nagano Winter Olympics 98
## 5632                                                                                                   Rayman 2: The Great Escape
## 5633                                                                                                           Kirby's Block Ball
## 5634                                                                                                                   DiRT Rally
## 5635                                                                                                                     Fortress
## 5636                                                                                                FIFA 2001 Major League Soccer
## 5637                                                                                                    Peppa Pig: Theme Park Fun
## 5638                                                                                                                  Rally Cross
## 5639                                                                                                                My Horse & Me
## 5640                                                                                             Frogger's Adventures: The Rescue
## 5641                                                                                                              Extreme Pinball
## 5642                                                                                                     Shaun White Snowboarding
## 5643                                                                                                  Karaoke Revolution Volume 3
## 5644                                                                                    Gold's Gym: Cardio Workout (Others sales)
## 5645                                                                         Seaman: Kindan no Pet - Gaze Hakushi no Jikken Shima
## 5646                                                                                                       Street Fighter Alpha 2
## 5647                                                        No.1 Muscle Ranking - Kinniku Banzuke Vol. 1: Oregasaikyouno Otokoda!
## 5648                                                          Cartoon Network Collection: Game Boy Advance Video Platinum Edition
## 5649                                                                                    Ultimate Fighting Championship: Throwdown
## 5650                                                                                       Marvel Nemesis: Rise of the Imperfects
## 5651                                                                                           SpongeBob SquarePants: Double Pack
## 5652                                                                                                          Tetris 2 + Bombliss
## 5653                                                                                       Harry Potter and the Half-Blood Prince
## 5654                                                                                             Disney's Extreme Skate Adventure
## 5655                                                                                                 Rock Band Country Track Pack
## 5656                                                                                                                 7 Wonders II
## 5657                                                                                                 Ed, Edd n Eddy: Jawbreakers!
## 5658                                                                                               Captain America: Super Soldier
## 5659                                                                                                       Frankenstein's Monster
## 5660                                                                                                    Riven: The Sequel to Myst
## 5661                                                                                                            Derby Stallion DS
## 5662                                                                                                       Mirror's Edge Catalyst
## 5663                                                                                                                    Manhunt 2
## 5664                                                                                                                      NBA 2K3
## 5665                                                                                                                  Monster Lab
## 5666                                                                                   Dragon Quest Monsters: Battle Road Victory
## 5667                                                                                                      Shin Momotarou Densetsu
## 5668                                                                                 From TV Animation One Piece: Grand Battle! 3
## 5669                                                                                                              Sega Smash Pack
## 5670                                                                                                      Reader Rabbit 2nd Grade
## 5671                                                                                       The Conveni: Ano Machi wo Dokusen Seyo
## 5672                                                                                         Shin Super Robot Taisen Special Disk
## 5673                                                                                                                  Live A Live
## 5674                                                                                                               NFL Fever 2004
## 5675                                                                                                              Madden NFL 2002
## 5676                                                                                           UEFA Euro 2008 Austria-Switzerland
## 5677                                                                                                       Clive Barker's Jericho
## 5678                                                                                              Littlest Pet Shop: City Friends
## 5679                                                                                            Kingdom Under Fire: The Crusaders
## 5680                                                                                                                4x4 Evolution
## 5681                                                                                                Cabela's Dangerous Hunts 2011
## 5682                                                                                                     Momotarou Dentetsu Happy
## 5683                                                                                                    Power Rangers: Time Force
## 5684                                                                                            Romance of the Three Kingdoms VII
## 5685                                                                                                              Shrek the Third
## 5686                                                                                                                    Catherine
## 5687                                                                                                    BlazBlue: Continuum Shift
## 5688                                                                                                               Monsters, Inc.
## 5689                                                                                                                      DJ Hero
## 5690                                                                                                                WipEout Pulse
## 5691                                                                                                        Quiz Magic Academy DS
## 5692                                                                                                              Just Dance 2016
## 5693                                                                                        Resident Evil Archives: Resident Evil
## 5694                                                                                                   Dynasty Warriors 4 Empires
## 5695                                                                                                                   Shenmue II
## 5696                                                                                                            Heart of Darkness
## 5697                                                                                                       LEGO Marvel's Avengers
## 5698                                                                                                             Virtua Striker 2
## 5699                                                                                                                    Fable III
## 5700                                                                                                       Dragon Ball: XenoVerse
## 5701                                                                                                      Might & Magic Heroes VI
## 5702                                                                                                                         Fuel
## 5703                                                                                                                     ExerBeat
## 5704                                                                                                   WarCraft II: The Dark Saga
## 5705                                                                                          MonHun Nikki: Poka Poka Ailu Mura G
## 5706                                                                                                             Crash Nitro Kart
## 5707                                                                                    Sesame Street: Cookie's Counting Carnival
## 5708                                                                                                                 NBA ShootOut
## 5709                                                                                                               Fishing Master
## 5710                                                                                                  Phineas and Ferb Ride Again
## 5711                                                                                               Jikkyou Powerful Pro Yakyuu 14
## 5712                                                                                                                     Contra 4
## 5713                                                                                                              Madden NFL 2004
## 5714                                                                                                               Sniper Elite 3
## 5715                                                             Ganbare Goemon: KiraKira Douchuu - Boku ga Dancer ni Natta Riyuu
## 5716                                                                                                         Bust-A-Move Universe
## 5717                                                                                                                   Mario Golf
## 5718                                                                                       Jikkyou Powerful Pro Yakyuu Portable 3
## 5719                                                                                       Sesame Street: Elmo's Letter Adventure
## 5720                                                                                                          The Incredible Hulk
## 5721                                                                                                 Namco Museum: Virtual Arcade
## 5722                                                                                                        NBA Inside Drive 2003
## 5723                                                                                                                  FIFA Street
## 5724                                                                                                Barbie as The Island Princess
## 5725                                                                                   Star Wars Episode III: Revenge of the Sith
## 5726                                                                                               Hatsune Miku: Project Mirai DX
## 5727                                                                                       Dragon Ball Heroes: Ultimate Mission 2
## 5728                                                                                                         Shrek: Forever After
## 5729                                                                                                             MLB 07: The Show
## 5730                                                                                                    Homefront: The Revolution
## 5731                                                                                                  Jampack: Summer 2003 (RP-M)
## 5732                                                                                   Alone in the Dark: One-Eyed Jack's Revenge
## 5733                                                                                                Yu-Gi-Oh! The Dawn of Destiny
## 5734                                                                                                      The Matrix: Path of Neo
## 5735                                                                                                 Mortal Kombat: Shaolin Monks
## 5736                                                                                                                   Happy Feet
## 5737                                                                                                                    Einhänder
## 5738                                                                                    Tiny Toon Adventures: The Great Beanstalk
## 5739                                                                                              Foto Frenzy: Spot The Diffrence
## 5740                                                                                                            Metro: Last Light
## 5741                                                                                                                    Dark Void
## 5742                                                                                                    Pro Evolution Soccer 2013
## 5743                                                                                                    Armored Core: Silent Line
## 5744                                                                                                  SD Gundam G Generation Wars
## 5745                                                                                    Dr. Seuss: How the Grinch Stole Christmas
## 5746                                                                                                       Panzer Dragoon II Zwei
## 5747                                                                                                                 KISS Pinball
## 5748                                                                                            Brothers In Arms: Earned in Blood
## 5749                                                                    2 Games in 1: Disney's Brother Bear / The Lion King 1 1/2
## 5750                                                                                              Super Robot Taisen Complete Box
## 5751                                                                                                   Mega Man Maverick Hunter X
## 5752                                                                                           Cabela's Outdoor Adventures (2009)
## 5753                                                                                                               Lord of Arcana
## 5754                                                                                                Jikkyou Powerful Pro Yakyuu 4
## 5755                                                                                                     Goemon's Great Adventure
## 5756                                                                                                      Hot Wheels Turbo Racing
## 5757                                                                                                                  Vigilante 8
## 5758                                                                                                               Bass Hunter 64
## 5759                                                                                                             Doubutsu no Mori
## 5760                                                                                                        Football Manager 2016
## 5761                                                                                             Naruto: Ninja Destiny (US sales)
## 5762                                                                                                              TRON: Evolution
## 5763                                                                                                          Disney Infinity 3.0
## 5764                                                                Taiko Drum Master: Don and Katsu's Space-Time Great Adventure
## 5765                                                                                             Calvin Tucker's Redneck Jamboree
## 5766                                                                                                             MySims SkyHeroes
## 5767                                                                              J-League Winning Eleven 2007: Club Championship
## 5768                                                                                           Shrek's Carnival Craze Party Games
## 5769                                                                                                 Harvest Moon: Magical Melody
## 5770                                                                                                     Mountain Bike Adrenaline
## 5771                                                                    Yu-Gi-Oh! 5D's World Championship 2010 Reverse of Arcadia
## 5772                                                                                                    Mega Man Battle Network 2
## 5773                                                                                                          Little King's Story
## 5774                                                                                                                Mountain King
## 5775                                                                                                            Jampack Volume 12
## 5776                                                                                                                   Madagascar
## 5777                                                                                                      Tiger Woods PGA Tour 06
## 5778                                                                                                     Shaun White Snowboarding
## 5779                                                                            Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5780                                                                                                    Major League Baseball 2K8
## 5781                                                                                                 Rapala Pro Bass Fishing 2010
## 5782                                                                                   Lord of the Rings: Battle for Middle-Earth
## 5783                                                                                                             Demolition Racer
## 5784                                                                                                    Midway Arcade Treasures 2
## 5785                                                                                                             Final Fantasy IV
## 5786                                                                                                                    Math Play
## 5787                                                                                                Kingdoms of Amalur: Reckoning
## 5788                                                                                                          NASCAR Thunder 2003
## 5789                                                                                            SD Gundam G Generation: Overworld
## 5790                                                                                                                      Sorcery
## 5791                                                                                                         TouchMaster: Connect
## 5792                                                                                                             NHL FaceOff 2000
## 5793                                                                                                      Star Wars Racer Revenge
## 5794                                                                                                                  NBA Live 08
## 5795                                                                                                    The King of Fighters XIII
## 5796                                                                                                         NCAA Final Four 2002
## 5797                                                                                                 South Park: Chef's Luv Shack
## 5798                                                                                                                  Music Maker
## 5799                                                                                                          Tour de France 2011
## 5800                                                                                Ganbare Goemon 2: Kiteretsu Shougun Magginesu
## 5801                                                                                                                   Astroblast
## 5802                                                                                                                     Blade II
## 5803                                                                                                                     40 Winks
## 5804                                                                                   The Legend of Heroes: Trails of Cold Steel
## 5805                                                                                                                   Fate/Extra
## 5806                                                                                        Shaun White Snowboarding: World Stage
## 5807                                                                    My Virtual Tutor: Reading Adventure Pre-K to Kindergarten
## 5808                                                                                                        Skylanders SWAP Force
## 5809                                                                         A Collection of Classic Games from the Intellivision
## 5810                                                                                                          Monsters vs. Aliens
## 5811                                                                                              Silent Hill: Shattered Memories
## 5812                                                                                               Bruce Lee: Quest of the Dragon
## 5813                                                                                                                     Spin Jam
## 5814                                                                                                             KuruKuru Kururin
## 5815                                                                                            Disney's The Emperor's New Groove
## 5816                                                                                              Disney's Stitch: Experiment 626
## 5817                                                                                                                RPG Tsukuru 2
## 5818                                                                                            Yuu Yuu Hakusho 2: Kakutou no Sho
## 5819                                                                                                     Orphen: Scion of Sorcery
## 5820                                                                                       LEGO Legends of Chima: Laval's Journey
## 5821                                                                                                       Imagine: Family Doctor
## 5822                                                                                                                Magna Carta 2
## 5823                                                                                                          Ultimate Spider-Man
## 5824                                                                                         Nicktoons: Battle for Volcano Island
## 5825                                                                                                            Midtown Madness 3
## 5826                                                                                                    Shrek Swamp Kart Speedway
## 5827                                                                                               One Piece: Unlimited World Red
## 5828                                                                                                             Alien: Isolation
## 5829                                                                                                              Gameboy Gallery
## 5830                                                                                                                 Virtua Cop 2
## 5831                                                                                                                      Ehrgeiz
## 5832       Touhoku Daigaku Mirai Kagaku Gijutsu Kyoudou Kenkyuu Center Kawashima Ryuuta Kyouju Kanshu: Nou Ryoku Trainer Portable
## 5833                                                                                            Karaoke Revolution Glee: Volume 3
## 5834                                                                                                 Spyro: Attack of the Rhynocs
## 5835                                                                                           Army Men World War: Land, Sea, Air
## 5836                                                                                               Dai-2-Ji Super Robot Taisen OG
## 5837                                                                                                                 Stranglehold
## 5838                                                                                                     Trauma Center: New Blood
## 5839                                                                                                                  Drill Dozer
## 5840                                                                                                                   Lumines ll
## 5841                                                                                                                    NES Remix
## 5842                                                                                                                    1701 A.D.
## 5843                                                                                                               Jumping Flash!
## 5844                                                                                                     Karaoke Revolution Party
## 5845                                                                                 Batman: The Brave and the Bold the Videogame
## 5846                                                                                                                      Burnout
## 5847                                                                                           Lizzie McGuire 3: Homecoming Havoc
## 5848                                                                                                                 Chaos Legion
## 5849                                                                                                               PowerUp Heroes
## 5850                                                                                                        NASCAR 2011: The Game
## 5851                                                                                                                  Puyo Puyo 7
## 5852                                                                                                         Shrek: Forever After
## 5853                                                                                            Charlie and the Chocolate Factory
## 5854                                                                                                  Neopets: The Darkest Faerie
## 5855                                                                                                               Blazing Heroes
## 5856                                                                                                               Rhythm Tengoku
## 5857                                                                                                         Super Robot Taisen W
## 5858                                                                                                            Cart World Series
## 5859                                                                                                      Invizimals: Shadow Zone
## 5860                                                                                                                 24: The Game
## 5861                                                                                                                 Spider-Man 3
## 5862                                                                                                             Battle vs. Chess
## 5863                                                                                                                  Famista '91
## 5864                                                                                                                    Squinkies
## 5865                                                                                                              Zoo Tycoon 2 DS
## 5866                                                                                                     Looney Tunes: Duck Amuck
## 5867                                                                           Super Robot Taisen OG: Original Generations Gaiden
## 5868                                                                                                                 Drakengard 3
## 5869                                                                                                                   Decathlete
## 5870                                                                                                                   The Sims 2
## 5871                                                                                The History Channel: Great Battles - Medieval
## 5872                                                                                                Tom Clancy's Splinter Cell 3D
## 5873                                                                                                           DmC: Devil May Cry
## 5874                                                                                                                        Jonas
## 5875                                                                                                           Dynasty Warriors 6
## 5876                                                                                                    Wacky Races: Crash & Dash
## 5877                                                                                           Dynasty Warriors 8: Xtreme Legends
## 5878                                                                                                              Toukiden Kiwami
## 5879                                                                                               Sengoku Basara: Samurai Heroes
## 5880                                                                                           Romance of the Three Kingdoms VIII
## 5881                                                                                                   Fossil Fighters (JP sales)
## 5882                                                                                                        Daikaijyuu Monogatari
## 5883                                                                                                                    Tropico 5
## 5884                                                                                                           Hard Hitter Tennis
## 5885                                                                                                            Glory of Heracles
## 5886                                                                                                     Monster Truck Madness 64
## 5887                                                                                                                     Quake II
## 5888                                                                                                   Nounai Aeshe: IQ Suppli DS
## 5889                                                                                                     Crazy Taxi: Catch a Ride
## 5890                                                                                                                 MySims Party
## 5891                                                                                    Harry Potter and the Order of the Phoenix
## 5892                                                                                                    Skylanders: SuperChargers
## 5893                                                                                                 Macross Digital Mission VF-X
## 5894                                                                                                One Piece Unlimited Cruise SP
## 5895                                                                                                         Rayman 2: Revolution
## 5896                                                                                  Yu Yu Hakusho Ghost Files: Spirit Detective
## 5897                                                                                                            Super Bomberman 5
## 5898                                                                                                       N3: Ninety-Nine Nights
## 5899                                                                                  Shin Megami Tensei: Persona 2: Innocent Sin
## 5900                                                                                                       Army Men: Air Attack 2
## 5901                                                                                                  Need for Speed: Most Wanted
## 5902                                                                                               Monster Hunter Frontier Online
## 5903                                                                                             Pride FC: Fighting Championships
## 5904                                                                                                                 Eternal Ring
## 5905                                                                                                                 Dragon Force
## 5906                                                                                         John Deere: Harvest in the Heartland
## 5907                                                                                                     Rabbids: Alive & Kicking
## 5908                                                                            Shin Megami Tensei: Devil Summoner - Soul Hackers
## 5909                                                                                                               Winning Post 2
## 5910                                                                                      Star Gladiator Episode: I Final Crusade
## 5911                                                                                                    Spider-Man: Friend or Foe
## 5912                                                                                                                      FIFA 15
## 5913                                                                                            Dance Dance Revolution Universe 3
## 5914                                                                                  Jewel Link Chronicles: Mountains of Madness
## 5915                                                                                                                 We Sing Pop!
## 5916                                                                                               Showdown: Legends of Wrestling
## 5917                                                                                           Capcom Classics Collection Remixed
## 5918                                                                                                 Reel Fishing: Angler's Dream
## 5919                                                                                     Call of Duty: Modern Warfare 3: Defiance
## 5920                                                                                                                    SimCity 4
## 5921                                                                                                        Far East of Eden Zero
## 5922                                                                                            Sword Art Online: Hollow Fragment
## 5923                                                                                    Star Ocean 5: Integrity and Faithlessness
## 5924                                                                                                   Call of Juarez: The Cartel
## 5925                                                                                                        Full Spectrum Warrior
## 5926                                                                                      Alvin and the Chipmunks: The Squeakquel
## 5927                                                                              Taiko no Tatsujin Wii: Minna de Party * 3-Yome!
## 5928                                                                                                      James Bond 007: Legends
## 5929                                                                                                             The Sims 2: Pets
## 5930                                                                                       Dragon Quest Builders: Revive Alefgard
## 5931                                                                               The Suite Life of Zack & Cody: Circle of Spies
## 5932                                                                                                       Power Pro Kun Pocket 6
## 5933                                                                                                                  Mega Man ZX
## 5934                                                                                              Harvest Moon DS Cute (US sales)
## 5935                                                                                                      Power Pro Kun Pocket 10
## 5936                                                                                                      Wanted: Weapons of Fate
## 5937                                                                                      Finding Nemo: The Continuing Adventures
## 5938                                                                                             Spirit: Stallion of the Cimarron
## 5939                                                                                                  Dreamworks Madagascar Kartz
## 5940                                                                                                          Future Cop L.A.P.D.
## 5941                                                                                                       Guitar Hero: Van Halen
## 5942                                                                                       Final Fantasy XI: Wings of the Goddess
## 5943                                                                                                                Hamster Tarou
## 5944                                                                                                                   Shark Tale
## 5945                                                                                         Fist of the North Star: Ken's Rage 2
## 5946                                                                                                          MLB SlugFest Loaded
## 5947                                                                                                 Teenage Mutant Ninja Turtles
## 5948                                                                                                                 Trace Memory
## 5949                                                                                                                FIFA Street 3
## 5950                                                                                                  Mah Jong Quest: Expeditions
## 5951                                                                                 Batman: The Brave and the Bold the Videogame
## 5952                                                                                           Dragon Ball Z: Budokai Tenkaichi 2
## 5953                                                                                                             AMF Bowling 2004
## 5954                                                                                                                 Thief (2014)
## 5955                                                                                             Scooby-Doo! Night of 100 Frights
## 5956                                                                                                            Just Dance Kids 2
## 5957                                                                                                            RealSports Boxing
## 5958                                                                                                       Imagine: Makeup Artist
## 5959                                                                                                                   Grandia II
## 5960                                                                                                   Syphon Filter: Dark Mirror
## 5961                                                                                                        Front Mission Evolved
## 5962                                                                                                          Tom and Jerry Tales
## 5963                                                                                                                  Mini Ninjas
## 5964                                                                                                                         NieR
## 5965                                                                                                                   The BIGS 2
## 5966                                                                                         X-Men Legends II: Rise of Apocalypse
## 5967                                                                                                       Junior Brain Trainer 2
## 5968                                                                            The Chronicles of Riddick: Assault on Dark Athena
## 5969                                                                                                   Need for Speed Underground
## 5970                                                                                                       Power Pro Kun Pocket 4
## 5971                                                                                                  The Godfather: Dons Edition
## 5972                                                                                                         Soul Sacrifice Delta
## 5973                                                                                                              Guardian Heroes
## 5974                                                                                              Assassin's Creed IV: Black Flag
## 5975                                                                                                               MLB Power Pros
## 5976                                                                                                                  Outlaw Golf
## 5977                                                                                              The Amazing Spider-Man 2 (2014)
## 5978                                                                                                Dynasty Warriors: Strikeforce
## 5979                                                                                             Fisherman's Bait 2: Big Ol' Bass
## 5980                                                                                 Lupin the 3rd: Treasure of the Sorcerer King
## 5981                                                                                                                           Up
## 5982                                                                                             Kurohyou: Ryu ga Gotoku Shinshou
## 5983                                                                                               Prince of Persia: Rival Swords
## 5984                                                                            One Piece Unlimited Cruise 2: Awakening of a Hero
## 5985                                                                                           Ben 10 Alien Force: Vilgax Attacks
## 5986                                                                                               Majin and the Forsaken Kingdom
## 5987                                                                                                                NBA Street V3
## 5988                                                                                                   WinBack: Covert Operations
## 5989                                                                                                                  Punch-Out!!
## 5990                                                                                                             FlatOut: Head On
## 5991                                                                                                         Kagero: Deception II
## 5992                                                                                  Jikkyou Powerful Pro Yakyuu 2000 Kaimakuban
## 5993                                                                                                The Bureau: XCOM Declassified
## 5994                                                                                                                  NBA Live 06
## 5995                                                                                                       Guitar Hero: Van Halen
## 5996                                                                                                    J-League Victory Goal '96
## 5997                                                                                          Shin Megami Tensei: Strange Journey
## 5998                                                                                                        Jeopardy! 2nd Edition
## 5999                                                                                                          SD Gundam G Century
## 6000                                                                                                Ratchet & Clank: Size Matters
## 6001                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 6002                                                                                    Atelier Iris 3: Grand Phantasm (US Sales)
## 6003                                                                                   Itadaki Street 2: Neon Sign wa Bara Iro ni
## 6004                                                                                                              Def Jam Rapstar
## 6005                                                                                                      Need for Speed: The Run
## 6006                                                                                From TV Animation One Piece: Treasure Battle!
## 6007                                                                                                                     Starhawk
## 6008                                                                                                                      Dolphin
## 6009                                                                                         Imagine: Fashion Designer World Tour
## 6010                                                                                                                      Area 51
## 6011                                                                                                      The Smurfs: Dance Party
## 6012                                                                                               Disney Channel: All Star Party
## 6013                                                                                                    Ace Combat: Joint Assault
## 6014                                                                                           Hamster Club 4: Shigessa Daidassou
## 6015                                                                                             Medieval Moves: Deadmund's Quest
## 6016                                                                                                        Angry Birds Star Wars
## 6017                                                                                                                  Mega Man X8
## 6018                                                                                                           CSI: Deadly Intent
## 6019                                                                                               Ford Mustang: The Legend Lives
## 6020                                                                                                      Ys: Memories of Celceta
## 6021                                                                                                               FIFA Soccer 13
## 6022                                                                                                                    Fast Food
## 6023                                                                                                Jikkyou Powerful Pro Yakyuu 8
## 6024                                                                                                                          Viz
## 6025                                                                                                           Top Gear Overdrive
## 6026                                                                                Xena: Warrior Princess - The Talisman of Fate
## 6027                                                                                               Jeremy McGrath Supercross 2000
## 6028                                                                                                               The New Tetris
## 6029                                                                                                   Ken Griffey Jr.'s Slugfest
## 6030                                                                                                              Supercross 2000
## 6031                                                                                                                     War Gods
## 6032                                                                                           Bladestorm: The Hundred Years' War
## 6033                                                                                                               World of Tanks
## 6034                                                                             Jewel Quest Mysteries: Curse of the Emerald Tear
## 6035                                                                                                 Duel Masters: Sempai Legends
## 6036                                                                                                      Marvel Super Hero Squad
## 6037                                                                                               Turning Point: Fall of Liberty
## 6038                                                                                                        Heroes of the Pacific
## 6039                                                                                              Dead Rising: Chop Till You Drop
## 6040                                                                                         The Lord of the Rings: The Third Age
## 6041                                                                                                              Disney Infinity
## 6042                                                                                                           Fable: The Journey
## 6043                                                                                                         Chou Soujuu Mecha MG
## 6044                                                                                                Sonic Boom: Shattered Crystal
## 6045                                                                                                             Just Dance Wii 2
## 6046                                                                                                                Madden NFL 08
## 6047                                                                                                              DX Game of Life
## 6048                                                                                                     Pirates of the Caribbean
## 6049                                                                                              Operation Flashpoint: Red River
## 6050                                                                                                 One Piece: Pirate Warriors 3
## 6051                                                                                                                 The Punisher
## 6052                                                                                                             MLB Pennant Race
## 6053                                                                                               Transformers: Dark of the Moon
## 6054                                                                     SD Gundam Gaiden: Knight Gundam Monogatari: Ooinaru Isan
## 6055                                                                                                                       GRID 2
## 6056                                                                                                                    WWII Aces
## 6057                                                                                      Puzzle Quest: Challenge of the Warlords
## 6058                                                                                                            Shrek Super Party
## 6059                                                                                                Sakura Wars 4: Koi Seyo,Otome
## 6060                                                                                                Sakura Wars: So Long, My Love
## 6061                                                                                                              Dynasty Tactics
## 6062                                                                                 The Urbz: Sims In the City (US weekly sales)
## 6063                                                                                        Lightning Returns: Final Fantasy XIII
## 6064                                                                                                         Feel the Magic XY/XX
## 6065                                                                                                              Trivial Pursuit
## 6066                                                                                                     Neopets Puzzle Adventure
## 6067                                                                                         Sonic & All-Stars Racing Transformed
## 6068                                                                                                              Shrek the Third
## 6069                                                                                                                 Snowboarding
## 6070                                                                                                                    Purr Pals
## 6071                                                                                         Dragon Ball Heroes: Ultimate Mission
## 6072                                                                                                  Borderlands: The Pre-Sequel
## 6073                                                                                                                    Surf's Up
## 6074                                                                                                   BlazBlue: Chrono Phantasma
## 6075                                                                                                          Looney Tunes Racing
## 6076                                                                              Final Fantasy X-2: International + Last Mission
## 6077                                                                                                           Namco Museum Vol.2
## 6078                                                                                                      Rayman 3: Hoodlum Havoc
## 6079                                                            Penguin no Mondai: Saikyou Penguin Densetsu! A Penguin's Troubles
## 6080                                                                                             Psi-Ops: The Mindgate Conspiracy
## 6081                                                                                                        I Spy: Spooky Mansion
## 6082                                                                                              Tomba! 2: The Evil Swine Return
## 6083                                                                                                                          SAW
## 6084                                                                                                                    Wappy Dog
## 6085                                                                           Dragon Quest: Shounen Yangus to Fushigi no Dungeon
## 6086                                                                                    BeatMania Append 4thMix: The beat goes on
## 6087                                                                                                                    NASCAR 08
## 6088                                                                                                    World of Warcraft: Legion
## 6089                                                                         Romance of the Three Kingdoms III: Dragon of Destiny
## 6090                                                                                                      Power Pro Kun Pocket 11
## 6091                                                                                        El Shaddai: Ascension of the Metatron
## 6092                                                                                           Family Guy: Back to the Multiverse
## 6093                                                                                                         Spyro: A Hero's Tail
## 6094                                                                                                            Warriors Orochi 2
## 6095                                                                                                     Ratatouille: Food Frenzy
## 6096                                                                                                                   Links 2004
## 6097                                                                                                                  PGA Tour 97
## 6098                                                                                                           Bratz: Super Babyz
## 6099                                                                                              Battle & Get! Pokemon Typing DS
## 6100                                                                                                                     Kung Zhu
## 6101                                                                                                                Earthworm Jim
## 6102                                                                                                           Tales of Phantasia
## 6103                                                                                                           The Golden Compass
## 6104                                                                                                                F1 Race Stars
## 6105                                                                                                         All Star Cheer Squad
## 6106                                                                                                         Rugby World Cup 2011
## 6107                                                                                               Ice Age: Dawn of the Dinosaurs
## 6108                                                                                                Monster 4x4: Masters of Metal
## 6109                                                                                                             SingStar Country
## 6110                                                                                                                  DeathSmiles
## 6111                                                                                                                   VMX Racing
## 6112                                                                                           Hot Shots Golf: World Invitational
## 6113                                                                                             Disney's Extreme Skate Adventure
## 6114                                                                                               Dragon Ball GT: Transformation
## 6115                                                                                                                  Bratz Ponyz
## 6116                                                                                                    Super Fire ProWrestling X
## 6117                                                                                                                    Baby Pals
## 6118                                                                                               International Superstar Soccer
## 6119                                                                                            Metal Gear Solid V: Ground Zeroes
## 6120                                                                                                          Tigger's Honey Hunt
## 6121                                                                                                                 The Warriors
## 6122                                                                                                             Monopoly Streets
## 6123                                                                                                                Shadow Hearts
## 6124                                                                                                                     NHL 2K11
## 6125                                                                                                     One Piece: Burning Blood
## 6126                                                                                 Prinny: Can I Really Be The Hero? (US sales)
## 6127                                                                                                                 Street Hoops
## 6128                                                                                                        Yu-Gi-Oh! Double Pack
## 6129                                                                                                   X-Men: Reign of Apocalypse
## 6130                                                                                                          R: Racing Evolution
## 6131                                                                                                             Tony Hawk: Shred
## 6132                                                                                                   Netsu Chu! Pro Yakyuu 2003
## 6133                                                                                                      ATV Quad Power Racing 2
## 6134                                                                                               Digimon Adventure: Anode Tamer
## 6135                                                                                                        Fantastic 4: Flame On
## 6136                                                                                                           Siren: Blood Curse
## 6137                                                                                                    Pro Evolution Soccer 2017
## 6138                                                                                                                 Chromehounds
## 6139                                                                                       Marvel Nemesis: Rise of the Imperfects
## 6140                                                                                                     The King of Fighters '95
## 6141                                                                                   Pirates of the Caribbean: Dead Man's Chest
## 6142                                                                                               Assassin's Creed II: Discovery
## 6143                                                                                                         F/A-18F Super Hornet
## 6144                                                                                                   Avatar: The Last Airbender
## 6145                                                                                                     Final Fantasy VI Advance
## 6146                                                                                                                      Polaris
## 6147                                                                                                                Viewtiful Joe
## 6148                                                                                                             Triple Play 2000
## 6149                                                                                                      Beyblade: Metal Masters
## 6150                                                                                                  Need for Speed: Most Wanted
## 6151                                                                                                      Arcade Hits: Frisky Tom
## 6152                                                                                                  Dead to Rights: Retribution
## 6153                                                                                        Harry Potter and the Sorcerer's Stone
## 6154                                                                                              Combat Elite: WWII Paratroopers
## 6155                                                                                                                Kung Fu Chaos
## 6156                                                                                                 Mega Man: Dr. Wily's Revenge
## 6157                                                                                            Yu-Gi-Oh! World Championship 2008
## 6158                                                                                     Naruto Shippuden: Ultimate Ninja Storm 4
## 6159                                                                                                        Godzilla: Domination!
## 6160                                                                                                  Sly Cooper: Thieves in Time
## 6161                                                                                      Tales of the World: Radiant Mythology 3
## 6162                                                                                                                  Famista '92
## 6163                                                                                    Jissen Pachi-Slot Hisshouhou! Moujuu-Oh S
## 6164                                                                                                             Jackass the Game
## 6165                                                                                                                  Mega Man II
## 6166                                                                                                             Lord of Darkness
## 6167                                                                                         Hannah Montana: Spotlight World Tour
## 6168                                                                                                  Rocket Power: Beach Bandits
## 6169                                                                                                                    Surf's Up
## 6170                                                                                                     Carol Vorderman's Sudoku
## 6171                                                                                       MX SuperFly featuring Ricky Carmichael
## 6172                                                                                         Remington Super Slam Hunting: Africa
## 6173                                                                                              Army of Two: The Devil's Cartel
## 6174                                                                                                   Syphon Filter: Dark Mirror
## 6175                                                                                  Conflict: Desert Storm II - Back to Bagdhad
## 6176                                                                                                             Guitar Hero Live
## 6177                                                                                        Mission: Impossible - Operation Surma
## 6178                                                                                     Sesame Street: Elmo's A-to-Zoo Adventure
## 6179                                                                                                             MLB 07: The Show
## 6180                                                                                                 Pitfall: The Mayan Adventure
## 6181                                                                                                       Driver: Parallel Lines
## 6182                                                                                                                   Sing Party
## 6183                                                                                                      Shrek: Ogres & Dronkeys
## 6184                                                                                                                     Monopoly
## 6185                                                                                                     Hot Wheels: Track Attack
## 6186                                                                            Backyard Wrestling 2: There Goes the Neighborhood
## 6187                                                                                                      Virtua Fighter 5 Online
## 6188                                                                                                     Disney's Treasure Planet
## 6189                                                                                                                Dead or Alive
## 6190                                                                                                                  Wild ARMs 5
## 6191                                                                                                              Bionic Commando
## 6192                                                                                                              NFL Blitz 20-02
## 6193                                                                                                                   Mega Man 7
## 6194                                                                                                      NCAA March Madness 2005
## 6195                                                                                                        Shadows of the Damned
## 6196                                                                                               Captain America: Super Soldier
## 6197                                                                                                              NBA In The Zone
## 6198                                                                                                                     Corvette
## 6199                                                                                                    F1 ROC: Race of Champions
## 6200                                                                                                              Just Dance 2015
## 6201                                                           The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 6202                                                                                               Silent Hill 2: Restless Dreams
## 6203                                                                                                Cabela's Big Game Hunter 2012
## 6204                                                                    Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 6205                                                                                         Moshi Monsters: Moshlings Theme Park
## 6206                                                                                                               UEFA Euro 2016
## 6207                                                                                                Soul Nomad & the World Eaters
## 6208                                                                                                       RollerCoaster Tycoon 3
## 6209                                                                                                                  Bass Strike
## 6210                                                                                                               NHL Hitz 20-03
## 6211                                                                             Danganronpa Another Episode: Ultra Despair Girls
## 6212                                                                                                         Flip's Twisted World
## 6213                                                                                                               Over the Hedge
## 6214                                                                                                                    Real Pool
## 6215                                                                                                   iCarly 2: iJoin The Click!
## 6216                                                                                                                 The Warriors
## 6217                                                                                                              Mister Mosquito
## 6218                                                                                                                    Kakyuusei
## 6219                                                                                                                    Patapon 3
## 6220                                                                                    Sesame Street: Cookie's Counting Carnival
## 6221                                                                                                              Civilization II
## 6222                                                                                                       Guitar Hero: Van Halen
## 6223                                                                                                     Dynasty Warriors: Gundam
## 6224                                                                                                                   Madagascar
## 6225                                                                                           Transformers: Cybertron Adventures
## 6226                                                                                         Indiana Jones and the Staff of Kings
## 6227                                                                                                               F-1 Grand Prix
## 6228                                                                                                                Mass Effect 3
## 6229                                                                                                                 Pinkalicious
## 6230                                                                                                                 SimCity 2000
## 6231                                                                                                                  Deer Hunter
## 6232                                                                                                 Pokemon Box: Ruby & Sapphire
## 6233                                                                                                  Puyo Puyo! 15th Anniversary
## 6234                                                                                     Yu-Gi-Oh! Monster Capsule Breed & Battle
## 6235                                                                                                               FIFA Soccer 07
## 6236                                                                                                          Mass Effect Trilogy
## 6237                                                                                                   Dave Mirra Freestyle BMX 2
## 6238                                                                                             AC/DC LIVE: Rock Band Track Pack
## 6239                                                                                                            My Japanese Coach
## 6240                                                                                                                    Puppeteer
## 6241                                                                                                       Warpath: Jurassic Park
## 6242                                                                                               Tak and the Guardians of Gross
## 6243                                                                                                    True Crime: New York City
## 6244                                                                                                 Summer Heat Beach Volleyball
## 6245                                                                                                           NCAA Basketball 09
## 6246                                                                 One Piece Unlimited Cruise 1: The Treasure Beneath the Waves
## 6247                                                                               Marvel Super Hero Squad: The Infinity Gauntlet
## 6248                                                                                                Dead Rising 2: Off the Record
## 6249                                                                                                       Power Pro Kun Pocket 3
## 6250                                                                                                              Myst III: Exile
## 6251                                                                                                  Castlevania: Aria of Sorrow
## 6252                                                                                                                     NBA 2K12
## 6253                                                                                                                     R.U.S.E.
## 6254                                                                            Mobile Suit Gundam Side Story I: Senritsu no Blue
## 6255                                                                                              Armored Core: Project Phantasma
## 6256                                                                                      Donkey Kong GB: Dinky Kong & Dixie Kong
## 6257                                                                                            Kobitodzukan: Kobito Kansatsu Set
## 6258                                                                                                     ExciteBots: Trick Racing
## 6259                                                                                                    Pro Evolution Soccer 2013
## 6260                                                                                                                     Deadpool
## 6261                                                                                                   Nichibutsu Arcade Classics
## 6262                                                                                                  Kenka Bancho: Badass Rumble
## 6263                                                                                                        Cabela's Trophy Bucks
## 6264                                                                    Moero! Nekketsu Rhythm Damashii: Osu! Tatakae! Ouendan! 2
## 6265                                                                                                     Q-Ball: Billiards Master
## 6266                                                                                                                      Mr. Do!
## 6267                                                                                                   How to Train Your Dragon 2
## 6268                                                                                                                       Boogie
## 6269                                                                                                  Tao Feng: Fist of the Lotus
## 6270                                                                                                 Rapala Pro Bass Fishing 2010
## 6271                                                                                 Shin Nippon Pro Wrestling: Toukon Retsuden 2
## 6272                                                                                                     Dragon Ball Z: Budokai 2
## 6273                                                                                                 Mobile Ops: The One Year War
## 6274                                                                                                    Motocross Maniacs Advance
## 6275                                                                                          Resident Evil 2: Dual Shock Edition
## 6276                                                                                                             Dynasty Warriors
## 6277                                                                                                                 M&M's Blast!
## 6278                                                                                                   Zumba Fitness: World Party
## 6279                                                                                                  Need for Speed: Most Wanted
## 6280                                                                                                Final Fantasy X International
## 6281                                                                                 Tiny Toon Adventures: Plucky's Big Adventure
## 6282                                                                                                               NHL Hitz 20-02
## 6283                                                                                                                   Iron Man 2
## 6284                                                                                      Tom Clancy's Rainbow Six: Critical Hour
## 6285                                                                                             Littlest Pet Shop: Beach Friends
## 6286                                                                                                              Trivial Pursuit
## 6287                                                                                                           Suikoden Tierkreis
## 6288                                                                                                  Evil Dead: Hail to the King
## 6289                                                                                                   Dragon Ball GT: Final Bout
## 6290                                                                                                   Burstrick: Wake Boarding!!
## 6291                                                                                      Dave Mirra Freestyle BMX: Maximum Remix
## 6292                                                                                                       Divinity: Original Sin
## 6293                                                                                                                     R.U.S.E.
## 6294                                                                                                 Hatsune Miku: Project Diva f
## 6295                                                                                                Resident Evil: Deadly Silence
## 6296                                                                                                                      Pac-Pix
## 6297                                                                                                                    Beamrider
## 6298                                                                                                                       EyePet
## 6299                                                                                                              The Evil Within
## 6300                                                                                                                  Athens 2004
## 6301                                                                                                                      Gunship
## 6302                                                                                       Jikkyou Powerful Pro Yakyuu Portable 4
## 6303                                                                                              SD Gundam G Generation Portable
## 6304                                                                                                                  Sydney 2000
## 6305                                                                                                              Pro Race Driver
## 6306                                                                               Baten Kaitos: Eternal Wings and the Lost Ocean
## 6307                                                                                                 Bishoujo Senshi Sailormoon R
## 6308                                                                                                                     The Club
## 6309                                                                                                 Slam Dunk: Yonkyo Taiketsu!!
## 6310                                                                                        Rhythm Thief & the Emperor's Treasure
## 6311                                                                                                               Rocky: Legends
## 6312                                                                                                            NickToons: Racing
## 6313                                                                                                     MotionSports: Adrenaline
## 6314                                                                                                      Tiger Woods PGA Tour 07
## 6315                                                                                                                         GRID
## 6316                                                                                                                       NHL 07
## 6317                                                                             Mega Man Battle Network: Operation Shooting Star
## 6318                                                                                                                       Bridge
## 6319                                                                                                                      G-Force
## 6320                                                                                                 LEGO Harry Potter: Years 5-7
## 6321                                                                                           The Adventures of Tintin: The Game
## 6322                                                                                                       RalliSport Challenge 2
## 6323                                                           Fushigi no Dungeon: Fuurai no Shiren GB: Tsukikagemura no Kaibutsu
## 6324                                                                                                                   Wave Rally
## 6325                                                                                                               Over the Hedge
## 6326                                                                                             Disgaea 5: Alliance of Vengeance
## 6327                                                                                                      Disney's Chicken Little
## 6328                                                                                             Battle of Giants: Mutant Insects
## 6329                                                                                                       Ty the Tasmanian Tiger
## 6330                                                                                                             Sengoku Basara 4
## 6331                                                                                 Yu-Gi-Oh! The Sacred Cards (JP weekly sales)
## 6332                                                                                                  WWE Road to WrestleMania X8
## 6333                                                                                         Medarot 3: Kabuto / Kuwagata Version
## 6334                                                                           Fullmetal Alchemist 2: Curse of the Crimson Elixir
## 6335                                                                                        Sherlock Holmes: Crimes & Punishments
## 6336                                                                                                NASCAR 06: Total Team Control
## 6337                                                                                                             Bratz: The Movie
## 6338                                                                                                                 BloodRayne 2
## 6339                                                                                                   Spider-Man: Web of Shadows
## 6340                                                                                                                     NHL 2002
## 6341                                                                                                   Reader Rabbit Kindergarten
## 6342                                                                                                                    Tropico 4
## 6343                                                                                                          NBA In The Zone '98
## 6344                                                                                                Jikkyou Powerful Pro Yakyuu 5
## 6345                                                                                                                   NBA Jam 99
## 6346                                                                                                                   Shadow Man
## 6347                                                                                                            Command & Conquer
## 6348                                                                                                   Call of Juarez: The Cartel
## 6349                                                                                                               Shadow of Rome
## 6350 Tohoku Daigaku Karei Igaku Kenkyuusho - Kawashima Ryuuta Kyouju Kanshuu - Mono Sugoku Nou o Kitaeru 5-Funkan no Oni Training
## 6351                                                                                                             Tales of Eternia
## 6352                                                                                    Harry Potter and the Order of the Phoenix
## 6353                                                                                                           Ben 10 Triple Pack
## 6354                                                                                                        Need for Speed Rivals
## 6355                                                                                                           Stuntman: Ignition
## 6356                                                                                                                  Fantastic 4
## 6357                                                                                                        Mat Hoffman's Pro BMX
## 6358                                                                                                                       MotoGP
## 6359                                                                                                   The Penguins of Madagascar
## 6360                                                                          Summer Athletics: The Ultimate Challenge (US sales)
## 6361                                                                                                              Rock Revolution
## 6362                                                                                         Etrian Odyssey II: Heroes of Lagaard
## 6363                                                                                                              LEGO The Hobbit
## 6364                                                                                                Jikkyou Powerful Pro Yakyuu 2
## 6365                                                                                                          The Incredible Hulk
## 6366                                                                                                   Resident Evil: Revelations
## 6367                                                                                                   Major League Baseball 2K10
## 6368                                                                                                        NASCAR 2011: The Game
## 6369                                                                                                      Thoroughbred Breeder II
## 6370                                                                                           Shin Megami Tensei: Devil Survivor
## 6371                                                                                                             Magical Vacation
## 6372                                                                                                      XGIII: Extreme G Racing
## 6373                                                                                                                NBA Live 2004
## 6374                                                                                                       Dragon Ball: XenoVerse
## 6375                                                                                                          NASCAR Thunder 2003
## 6376                                                                                                                    Section 8
## 6377                                                                                                               Superbike 2000
## 6378                                                                                    America's Test Kitchen: Let's Get Cooking
## 6379                                                                                        Final Fantasy XI: Ultimate Collection
## 6380                                                                    Fire Emblem: Shin Monshou no Nazo Hikari to Kage no Eiyuu
## 6381                                                                                                        F1 2016 (Codemasters)
## 6382                                                                                          Connect Four / Perfection / Trouble
## 6383                                                                                                                    Wipeout 2
## 6384                                                                                                                  Ratatouille
## 6385                                                                                                          The Incredible Hulk
## 6386                                                                            Dora the Explorer: Dora Saves the Crystal Kingdom
## 6387                                                                                               Alundra 2: A New Legend Begins
## 6388                                                                                                                Reign of Fire
## 6389                                                                                             Scooby-Doo! and the Spooky Swamp
## 6390                                                                                    Jikkyou Powerful Pro Yakyuu '98 Ketteiban
## 6391                                                                                                               Ace Attorney 6
## 6392                                                                                                             The Sims 2: Pets
## 6393                                                                                         Cake Mania 2: Jill's Next Adventure!
## 6394                                                                                             Batman: Arkham Origins Blackgate
## 6395                                                                                                                     The BIGS
## 6396                                                                                                     Initial D: Special Stage
## 6397                                                                                                                Madden NFL 08
## 6398                                                                                             Jurassic Park: Operation Genesis
## 6399                                                                                                    Family Feud: 2010 Edition
## 6400                                                                                                                   Final Doom
## 6401                                                                                                           Deadly Premonition
## 6402                                                                                                              Rock Revolution
## 6403                                                                                 Are You Smarter than a 5th Grader? Game Time
## 6404                                                                                                            NBA ShootOut 2001
## 6405                                                                                                          Knockout Kings 2002
## 6406                                                                                                                    Wipeout 2
## 6407                                                                                                                     Payday 2
## 6408                                                                                                           Ultimate NES Remix
## 6409                                                                                                  Megamind: The Blue Defender
## 6410                                                                                                                 NFL Street 3
## 6411                                                                                                     Battle Arena Toshinden 3
## 6412                                                                             Teenage Mutant Ninja Turtles: Danger of the Ooze
## 6413                                                                                           Jade Cocoon: Story of the Tamamayu
## 6414                                                                                                Super Nazo Puyo: Ruruu no Ruu
## 6415                                                                                                Cabela's Big Game Hunter 2010
## 6416                                                                                                      InuYasha: Feudal Combat
## 6417                                                                                                                 Duel Masters
## 6418                                                                                                           Ninja Gaiden Sigma
## 6419                                                                                                            Super Collapse! 3
## 6420                                                                                                             Superman Returns
## 6421                                                                                                               The Dog Island
## 6422                                                                    My Virtual Tutor: Reading Adventure Kindergarten to First
## 6423                                                                                                        Dynasty Warriors Next
## 6424                                                                                                    Major League Baseball 2K9
## 6425                                                                                             Jikkyou Powerful Pro Yakyuu 2010
## 6426                                                                                                    Operation Armored Liberty
## 6427                                                                                                        Rory McIlroy PGA Tour
## 6428                                                                                           Dynasty Warriors 7: Xtreme Legends
## 6429                                                                                         Summer Sports 2: Island Sports Party
## 6430                                                                                                       Imagine: Fashion Party
## 6431                                                                                                                  Fish Tycoon
## 6432                                                                                                           Scene It? Twilight
## 6433                                                                                                              And1 Streetball
## 6434                                                                                                              Don King Boxing
## 6435                                                                                        Atelier Ayesha: The Alchemist of Dusk
## 6436                                                                                                          Angry Birds Trilogy
## 6437                                                                                            Dragon Ball Z: Tenkaichi Tag Team
## 6438                                                                                     Sonic X: Game Boy Advance Video Volume 1
## 6439                                                                                                          ESPN NBA Basketball
## 6440                                                                                 Gallop Racer 2: One and Only Road to Victory
## 6441                                                                                                                       NBA 07
## 6442                                                                                                                     Lowrider
## 6443                                                                                                          Reload: Target Down
## 6444                                                                                                         All-Pro Football 2K8
## 6445                                                                                      Dungeons & Dragons: Eye of the Beholder
## 6446                                                                                                                     The Crew
## 6447                                                                                                    Barbie: Jet, Set & Style!
## 6448                                                                                                       Battlestations: Midway
## 6449                                                                                                                    Rayman DS
## 6450                                                                                                               Gundam Breaker
## 6451                                                                                                      The House of the Dead 2
## 6452                                                                                                                       Create
## 6453                                                                                          A.C.E.: Another Century's Episode R
## 6454                                                                                                   Littlest Pet Shop: Friends
## 6455                                                                                                         Rune: Viking Warlord
## 6456                                                                                                          Panzer Dragoon Orta
## 6457                                                                                    Jikkyou Powerful Pro Yakyuu '99 Ketteiban
## 6458                                                                                                Dragon Age Origins: Awakening
## 6459                                                                                                              King's Field II
## 6460                                                                                               Danganronpa 2: Goodbye Despair
## 6461                                                                                                Aikatsu! 2-nin no My Princess
## 6462                                                                                                       Beyblade: Metal Fusion
## 6463                                                                                                             NCAA Gamebreaker
## 6464                                                                                                               Petz: Horsez 2
## 6465                                                                                            NPPL: Championship Paintball 2009
## 6466                                                                                                    Skylanders: SuperChargers
## 6467                                                                                            Zoo Tycoon 2: Ultimate Collection
## 6468                                                                                                                       Tomba!
## 6469                                                                                                                    Love Plus
## 6470                                                                                                           Tales of Innocence
## 6471                                                                                                            MLB SlugFest 2006
## 6472                                                                                                          J Stars Victory Vs.
## 6473                                                                                                    Rugrats: I Gotta Go Party
## 6474                                                                                                                Virtua Racing
## 6475                                                                                                        Crash Tag Team Racing
## 6476                                                                                                 Prison Break: The Conspiracy
## 6477                                                                                                                         Bolt
## 6478                                                                                                           DS Bungaku Zenshuu
## 6479                                                                                                                   We Cheer 2
## 6480                                                                           Nancy Drew: The Mystery of the Clue Bender Society
## 6481                                                                                                  Inazuma Eleven GO 3: Galaxy
## 6482                                                                                                                Ford Racing 3
## 6483                                                                                              Michael Jackson: The Experience
## 6484                                                                            Phantasy Star Universe: Ambition of the Illuminus
## 6485                                                                                                               Project Runway
## 6486                                                                                             Jikkyou Powerful Pro Yakyuu 2013
## 6487                                                                The Adventures of Jimmy Neutron Boy Genius vs. Jimmy Negatron
## 6488                                                                                                             Sengoku Basara 2
## 6489                                                                                                Naruto: Ultimate Ninja Heroes
## 6490                                                                                                      Inazuma Eleven Strikers
## 6491                                                                                                        Hey Arnold! The Movie
## 6492                                                                                                      Final Fantasy V Advance
## 6493                                                                                                  Need for Speed: Most Wanted
## 6494                                                                                                 Lumines: Electronic Symphony
## 6495                                                                                                          Star Trek: Invasion
## 6496                                                                             Final Fantasy Crystal Chronicles: Echoes of Time
## 6497                                                                                                               Smashing Drive
## 6498                                                                                                            Babysitting Mania
## 6499                                                                                                     Star Wars: Bounty Hunter
## 6500                                                                                         Tom and Jerry in War of the Whiskers
## 6501                                                                                                Ace Attorney Investigations 2
## 6502                                                                                                             Minute to Win It
## 6503                                                                                                       Smart Girl's Playhouse
## 6504                                                                                                               Racquet Sports
## 6505                                                                                                  TouchMaster 3(Others sales)
## 6506                                                                                               The Elder Scrolls IV: Oblivion
## 6507                                                                                             Jikkyou Powerful Pro Yakyuu 2011
## 6508                                                                                                              Madden NFL 2005
## 6509                                                                                                        Skylanders: Trap Team
## 6510                                                               Yu-Gi-Oh! Ultimate Masters: World Championship Tournament 2006
## 6511                                                                                                       Power Pro Kun Pocket 5
## 6512                                                                                      Konjiki no Gashbell!! Makai no Bookmark
## 6513                                                                                                           Plants vs. Zombies
## 6514                                                                                                               Riding Spirits
## 6515                                                                                                     Disney Sing It: Pop Hits
## 6516                                                                                         Indiana Jones and the Staff of Kings
## 6517                                                                                   Etrian Odyssey Untold: The Millennium Girl
## 6518                                                                                                              Bust A Groove 2
## 6519                                                                                                   Hatsune Miku: Project Diva
## 6520                                                                                                  Juiced 2: Hot Import Nights
## 6521                                                                                                       Gundam Battle Universe
## 6522                                                                                                Sengoku Basara: Battle Heroes
## 6523                                                                                                          Nightmare Creatures
## 6524                                                                                        Star Wars Episode I: Battle for Naboo
## 6525                                                                                                        Duke Nukem: Zero Hour
## 6526                                                                                                Armorines: Project S.W.A.R.M.
## 6527                                                                                                        NCAA March Madness 08
## 6528                                                                                                          Armored Core: Nexus
## 6529                                                                                                      Evolution Skateboarding
## 6530                                                                      Dora the Explorer: The Search for Pirate Pig's Treasure
## 6531                                                                                                    Muramasa: The Demon Blade
## 6532                                                                                                                Yakuza: Ishin
## 6533                                                                                         Indiana Jones and the Staff of Kings
## 6534                                                                                                             Tony Hawk: Shred
## 6535                                                                                                            Outlaw Volleyball
## 6536                                                                                                            Batman: Vengeance
## 6537                                                                                              The Amazing Spider-Man 2 (2014)
## 6538                                                                                                          RealSports Football
## 6539                                                                                                      Tiger Woods PGA Tour 10
## 6540                                                                                          SD Gundam G Generation: Cross Drive
## 6541                                                                                     Tom Clancy's Splinter Cell: Double Agent
## 6542                                                                                                          Monsters vs. Aliens
## 6543                                                                                                    Dungeons & Dragons Heroes
## 6544                                                                                             The Testament of Sherlock Holmes
## 6545                                                                                                              Game of Thrones
## 6546                                                                                       Loving Life with Hello Kitty & Friends
## 6547                                                                                     McGrath Vs. Pastrana Freestyle Motocross
## 6548                                                                                                          Legaia 2: Duel Saga
## 6549                                                                                                             Crash Nitro Kart
## 6550                                                                                                         Karaoke Joysound Wii
## 6551                                                                                                             MLB 09: The Show
## 6552                                                                                                                     Polarium
## 6553                                                                                                           Samurai Warriors 4
## 6554                                                                                                                      F1 2014
## 6555                                                                                                Classic NES Series: Bomberman
## 6556                                                                               Avatar: The Last Airbender - The Burning Earth
## 6557                                                                    Peter Jackson's King Kong: The Official Game of the Movie
## 6558                                                                                                                Bratz Ponyz 2
## 6559                                                                                            A.C.E.: Another Century's Episode
## 6560                                                                                       Frogger's Journey: The Forgotten Relic
## 6561                                                                                                     X-Men vs. Street Fighter
## 6562                                                                                              Army of Two: The Devil's Cartel
## 6563                                                                           Dora the Explorer: Game Boy Advance Video Volume 1
## 6564                                                                                                   Oddworld: Stranger's Wrath
## 6565                                                                                                              Sega Rally Revo
## 6566                                                                                             King of Fighters: Maximum Impact
## 6567                                                                                       Marvel Super Heroes vs. Street Fighter
## 6568                                                                                                                    Legendary
## 6569                                                                                        J-League Pro Soccer Club wo Tsukurou!
## 6570                                                                                                        Daisy Fuentes Pilates
## 6571                                                                                                          Star Trek: The Game
## 6572                                                                                                  Drakan: The Ancients' Gates
## 6573                                                                                                       Dead or Alive Xtreme 2
## 6574                                                                                                          Petz: Crazy Monkeyz
## 6575                                                                                SpongeBob SquarePants: Lights, Camera, Pants!
## 6576                                                                                                                     Choro Q3
## 6577                                                                                                                 Tokyo Jungle
## 6578                                                                                                    Hunted: The Demon's Forge
## 6579                                                                              Lemony Snicket's A Series of Unfortunate Events
## 6580                                                                                   Pirates of the Caribbean: Dead Man's Chest
## 6581                                                                                                 Bionicle: Matoran Adventures
## 6582                                                                                                Armored Core: Master of Arena
## 6583                                                                                                     Fire Emblem: Thracia 776
## 6584                                                                                                                Desert Falcon
## 6585                                                                                                                    NASCAR 09
## 6586                                                                     Tengai Makyou: Daishi no Mokushiroku - The Apocalypse IV
## 6587                                                                               A.C.E.: Another Century's Episode 3: The Final
## 6588                                                                                                       ATV: Quad Power Racing
## 6589                                                                                  Mario & Sonic at the Rio 2016 Olympic Games
## 6590                                                                                                            The Backyardigans
## 6591                                                                                                        Backyard NFL Football
## 6592                                                                                                       All-Star Baseball 2003
## 6593                                                                                      Silent Hunter 5: Battle of the Atlantic
## 6594                                                                                                                 MTX Mototrax
## 6595                                                                                       Tomb Raider: Underworld (Others sales)
## 6596                                                                                                            NHL Rock the Rink
## 6597                                                                                           LEGO Star Wars III: The Clone Wars
## 6598                                                                                                            NBA ShootOut 2004
## 6599                                                                                TOCA Race Driver 2: Ultimate Racing Simulator
## 6600                                                                                                         Super Robot Taisen R
## 6601                                                                                           Castlevania: Harmony of Dissonance
## 6602                                                                                                        Metroid Prime Pinball
## 6603                                                                                                             Formula One 2001
## 6604                                                                                                            Nickelodeon Dance
## 6605                                                                                                                Doukyuusei if
## 6606                                                                                              Baldur's Gate: Dark Alliance II
## 6607                                                                                                            MVP Baseball 2004
## 6608                                                                                       Super Street Fighter II: Turbo Revival
## 6609                                                                                                 Secret Weapons Over Normandy
## 6610                                                       Combination Pro Soccer: J-League no Kantoku ni Natte Sekai wo Mezase!!
## 6611                                                                                                                       NHL 08
## 6612                                                                                          Kidou Senshi Gundam: Giren no Yabou
## 6613                                                                                                         Imagine: Ballet Star
## 6614                                                                                                                  Teen Titans
## 6615                                                                         Percy Jackson and the Olympians: The Lightning Thief
## 6616                                                                                                Spelling Challenges and more!
## 6617                                                                                                 Crusaders of Might and Magic
## 6618                                                                                                                      Journey
## 6619                                                                                                            Tearaway Unfolded
## 6620                                                                                    Star Wars The Clone Wars: Republic Heroes
## 6621                                                                                                         Bomberman Generation
## 6622                                                                                                                    NASCAR 09
## 6623                                                                                                                  Surfing H3O
## 6624                                                                                             Romance of the Three Kingdoms II
## 6625                                                                            The Chronicles of Riddick: Assault on Dark Athena
## 6626                                                                                   Resident Evil Archives: Resident Evil Zero
## 6627                                                                                                                Zoo Resort 3D
## 6628                                                                                                      Ice Age 2: The Meltdown
## 6629                                                                                The Suite Life of Zack & Cody: Tipton Trouble
## 6630                                                                                                        World Series of Poker
## 6631                                                                                             Hatsune Miku: Project Diva F 2nd
## 6632                                                                                                              Galactic Attack
## 6633                                                                                                       Power Pro Kun Pocket 2
## 6634                                                                                                              Game of Thrones
## 6635                                                                                                                   Happy Feet
## 6636                                                                               Walt Disney's The Jungle Book: Rhythm N'Groove
## 6637                                                                                                             Triple Play 2002
## 6638                                                                                                                     Scrabble
## 6639                                                                                                                    Evil Zone
## 6640                                                                                                          Spy Kids Challenger
## 6641                                                                                                         K-ON! Houkago Live!!
## 6642                                                                                          A. IV Evolution: A Ressha de Ikou 4
## 6643                                                                                                                   Exhibition
## 6644                                                                                                                     Scrabble
## 6645                                                                                                   Tony Hawk's Proving Ground
## 6646                                                                                                                      Amped 2
## 6647                                                                                               Blaster Master: Blasting Again
## 6648                                                                                                             Dream Trigger 3D
## 6649                                                                  Cartoon Network Collection: Game Boy Advance Video Volume 1
## 6650                                                                                                                         Cars
## 6651                                                                                           Family Guy: Back to the Multiverse
## 6652                                                                                                              Kung Fu Panda 2
## 6653                                                                                                                           Up
## 6654                                                                                                               Birds of Steel
## 6655                                                                                                  Madagascar: Escape 2 Africa
## 6656                                                                                                                   WipEout XL
## 6657                                                                                                              Animal Paradise
## 6658                                                                                     The Powerpuff Girls: Chemical X-Traction
## 6659                                                                                                                       NHL 08
## 6660                                                                                                Dynasty Warriors 6 (JP sales)
## 6661                                                                                                            Just Dance Kids 2
## 6662                                                                                                                      FIFA 14
## 6663                                                                                                                 Men of Valor
## 6664                                                                                                         Bomberman Tournament
## 6665                                                                                              Medal of Honor European Assault
## 6666                                                                                                   Spider-Man: Web of Shadows
## 6667                                                                                              Billy Hatcher and the Giant Egg
## 6668                                                                                                Midway's Greatest Arcade Hits
## 6669                                                                                       SpongeBob's Truth or Square (US sales)
## 6670                                                                                                             Final Fantasy II
## 6671                                                                                                               WipEout Fusion
## 6672                                                                                                     Spider-Man: Edge of Time
## 6673                                                                                           UEFA Euro 2008 Austria-Switzerland
## 6674                                                                                  Marie no Atelier: Salburg no Renkinjutsushi
## 6675                                                                                                                   The Outfit
## 6676                                                                                                         Golden Nugget Casino
## 6677                                                                                                                       NHL 06
## 6678                                                                                                              Atari Anthology
## 6679                                                                                               Ultimate Fighting Championship
## 6680                                                                                                                         XIII
## 6681                                                                                                                   MotoGP '07
## 6682                                                                                                           Samurai Shodown II
## 6683                                                                                                    Mortal Kombat: Armageddon
## 6684                                                                                              Don King Presents: Prizefighter
## 6685                                                                                                                Hybrid Heaven
## 6686                                                                                                     NBA Showtime: NBA on NBC
## 6687                                                                                                 Fox Sports College Hoops '99
## 6688                                                                                                             Wheel of Fortune
## 6689                                                                                               MRC: Multi-Racing Championship
## 6690                                                                                                          F1 Pole Position 64
## 6691                                                                                                      Gex 64: Enter the Gecko
## 6692                                                                                                Wayne Gretzky's 3D Hockey '98
## 6693                                                                                        NBA Courtside 2 featuring Kobe Bryant
## 6694                                                                                                          J Stars Victory Vs.
## 6695                                                                                                          U-Sing: Girls Night
## 6696                                                                                        The Mummy: Tomb of the Dragon Emperor
## 6697                                                                                                             Def Jam Vendetta
## 6698                                                                                                         Scooby-Doo! Unmasked
## 6699                                                                                                                 Penny Racers
## 6700                                                                                                                   The Sims 2
## 6701                                                                                                            Caesars Palace II
## 6702                                                                                                         Final Fantasy Type-0
## 6703                                                                                                    World Series Baseball 2K3
## 6704                                                                                      Freshly-Picked: Tingle's Rosy Rupeeland
## 6705                                                                                                  Pro Yakyuu Team o Tsukurou!
## 6706                                                                                             L.A. Noire: The Complete Edition
## 6707                                                                                                         Sentimental Graffiti
## 6708                                                                                                           Hitman: Absolution
## 6709                                                                                                                         Bolt
## 6710                                                                                                  Marvel: Ultimate Alliance 2
## 6711                                                                                                         The Legend of Legacy
## 6712                                                                                                    Disgaea 2: Dark Hero Days
## 6713                                                                                                                  Devil Kings
## 6714                                                                                                                Ultimate Band
## 6715                                                                                                   NBA Jam Tournament Edition
## 6716                                                                                                   Far Cry Instincts Predator
## 6717                                                                                                         Medabots AX: Metabee
## 6718                                                                                      Tennis no Oji-Sama: Genius Boys Academy
## 6719                                                                                                               X-Men: Destiny
## 6720                                                                                                                   Shadow Man
## 6721                                                                                                     X-Men Origins: Wolverine
## 6722                                                                                                   Netsu Chu! Pro Yakyuu 2002
## 6723                                                                                                               Ninja Gaiden 3
## 6724                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 6725                                                                                               Yakuza Zero: The Place of Oath
## 6726                                                                                        Prince of Persia: The Forgotten Sands
## 6727                                                                                                           Dynasty Warriors 6
## 6728                                                                                                           Imagine: Zookeeper
## 6729                                                                                                                      Porky's
## 6730                                                                                            America's Army: Rise of a Soldier
## 6731                                                                                                                      Grandia
## 6732                                                                                                                TV Superstars
## 6733                                                                                                               Armored Core 4
## 6734                                                                                                                      F1 2000
## 6735                                                                                           Littlest Pet Shop: Country Friends
## 6736                                                                                                         Dood's Big Adventure
## 6737                                                                         Pirates of the Caribbean: The Legend of Jack Sparrow
## 6738                                                                                                                We Love Golf!
## 6739                                                                                                WRC: World Rally Championship
## 6740                                                                                           Ed, Edd n Eddy: The Mis-Edventures
## 6741                                                                                            Cars: Mater-National Championship
## 6742                                                                                                  Dreamworks Madagascar Kartz
## 6743                                                                                    Harry Potter and the Order of the Phoenix
## 6744                                                                                                                    Anno 2205
## 6745                                                                                                                    Dune 2000
## 6746                                                                                                               Cradle of Rome
## 6747                                                                                                             Monster Hunter G
## 6748                                                                                                                         Fuel
## 6749                                                                                                   Hasbro Family Game Night 3
## 6750                                                                                                    Pro Evolution Soccer 2014
## 6751                                                                                                             Project Overkill
## 6752                                                                                                             Jumping Flash! 2
## 6753                                                                                                      Nickelodeon Party Blast
## 6754                                                                                             SBK Superbike World Championship
## 6755                                                                                        Final Fantasy XI: Chains of Promathia
## 6756                                                                                                                     Choro Q2
## 6757                                                                                                   Disney's A Christmas Carol
## 6758                                                                                           Butt Ugly Martians: B.K.M. Battles
## 6759                                                                                                    Major League Baseball 2K7
## 6760                                                                                         X-Men Legends II: Rise of Apocalypse
## 6761                                                                                       Sorry! / Aggravation / Scrabble Junior
## 6762                                                                                                                   Driver '76
## 6763                                                                                               Turning Point: Fall of Liberty
## 6764                                                                                                           NBA Courtside 2002
## 6765                                                                                                   How to Train Your Dragon 2
## 6766                                                                                           The Adventures of Tintin: The Game
## 6767                                                                                               Classic NES Series: Excitebike
## 6768                                                                                                  Classic NES Series: Xevious
## 6769                                                                                Avatar: The Last Airbender - Into the Inferno
## 6770                                                                                                              Disney's Planes
## 6771                                                                              Dora the Explorer: Journey to the Purple Planet
## 6772                                                                                                              Tales of Hearts
## 6773                                                                                                    Digimon World: Data Squad
## 6774                                                                                                           Dynasty Warriors 7
## 6775                                                                                                                         Catz
## 6776                                                                                             Jikkyou Powerful Pro Yakyuu 2001
## 6777                                                                                 Transformers: War for Cybertron (DS Version)
## 6778                                                                                                                      Tornado
## 6779                                                                                                                Trials Fusion
## 6780                                                                                                LEGO Ninjago: Shadow of Ronin
## 6781                                                                                                                  Avalon Code
## 6782                                                                                        That's So Raven: Psychic on the Scene
## 6783                                                                                             Monster Jam: Path of Destruction
## 6784                                                                                     Tongari Boushi to Oshare na Mahou Tsukai
## 6785                                                                                                               Panzer General
## 6786                                                                    Broken Sword: Shadow of the Templars - The Director's Cut
## 6787                                                                                                            Gallop Racer (JP)
## 6788                                                                                                            Spawn the Eternal
## 6789                                                                                                                          MLB
## 6790                                                                                                   Army Men: Sarge's Heroes 2
## 6791                                                                                            Command & Conquer 3: Kane's Wrath
## 6792                                                                                                         Dreamcast Collection
## 6793                                                                                                                Madden NFL 13
## 6794                                                                                                    Corpse Party: Blood Drive
## 6795                                                                                                                    Homefront
## 6796                                                                                                            Disney Stitch Jam
## 6797                                                                                                     Bakugan: Battle Brawlers
## 6798                                                                                                         Britney's Dance Beat
## 6799                                                                                                                Guitar Freaks
## 6800                                                                                                World Soccer Winning Eleven 7
## 6801                                                                                           Ace Combat: Assault Horizon Legacy
## 6802                                                                                           Cabela's Outdoor Adventures (2009)
## 6803                                                                                                 SRS: Street Racing Syndicate
## 6804                                                                                                     Namco Tennis Smash Court
## 6805                                                                                                                         Vexx
## 6806                                                                                                          The Incredible Hulk
## 6807                                                                                                    McFarlane's Evil Prophecy
## 6808                                                                                                    Marvel vs. Capcom Origins
## 6809                                                                                                       Pro Yaky? Spirits 2011
## 6810                                                                                                  Imagine: Teacher Class Trip
## 6811                                                                                                TimeSplitters: Future Perfect
## 6812                                                                                          Final Fantasy Fables: Chocobo Tales
## 6813                                                                                                 Harvest Moon: Magical Melody
## 6814                                                                                                               Genma Onimusha
## 6815                                                                                                            DK: King of Swing
## 6816                                                                                                                  K-1 Revenge
## 6817                                                                                                                     G-Police
## 6818                                                                                                                  Pure Futbol
## 6819                                                                                             Spider-Man: Shattered Dimensions
## 6820                                                                                                                     Corvette
## 6821                                                                                        Atelier Meruru: Alchemist of Arland 3
## 6822                                                                                             AC/DC LIVE: Rock Band Track Pack
## 6823                                                                                                                Deca Sports 3
## 6824                                                                                          Harry Potter and the Goblet of Fire
## 6825                                                                                       Midway Arcade Treasures: Extended Play
## 6826                                                                                                                      F1 2015
## 6827                                                                                                        Skylanders SWAP Force
## 6828                                                                                                     Bass Pro Shops: The Hunt
## 6829                                                                                   What Did I Do to Deserve This, My Lord!? 2
## 6830                                                                                                             Boogie SuperStar
## 6831                                                                                                   Burnout 2: Point of Impact
## 6832                                                                                                Rock Band Track Pack Volume 1
## 6833                                                                                                      Drake of the 99 Dragons
## 6834                                                                                                     Super Monkey Ball Deluxe
## 6835                                                                                                      Street Fighter X Tekken
## 6836                                                                                                                  Kill.Switch
## 6837                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 6838                                                                                                                   Metro 2033
## 6839                                                                    Peter Jackson's King Kong: The Official Game of the Movie
## 6840                                                                                                                  Stella Glow
## 6841                                                                                                       Dancing With The Stars
## 6842                                                                                                               Summon Night 3
## 6843                                                                                                       Pro Yaky? Spirits 2010
## 6844                                                                                                      The Simpsons: Road Rage
## 6845                                                                                                    Megamind: Mega Team Unite
## 6846                                                                                            PDC World Championship Darts 2008
## 6847                                                                               Jissen Pachi-Slot Hisshouhou! Hokuto no Ken SE
## 6848                                                                                                     Azurik: Rise of Perathia
## 6849                                                                                                                 Luminous Arc
## 6850                                                                               All Grown Up!: Game Boy Advance Video Volume 1
## 6851                                                                                       The Lord of the Rings: Aragorn's Quest
## 6852                                                                                                         Dragon Ball Z: Sagas
## 6853                                                                                                     Paws & Claws: Pet Resort
## 6854                                                                                                          Grand Slam Tennis 2
## 6855                                                                                               Sakura Wars: Atsuki Chishio Ni
## 6856                                                                                    Ms. Pac-Man: Maze Madness / Pac-Man World
## 6857                                                                                                NHRA Championship Drag Racing
## 6858                                                                                              The Price is Right 2010 Edition
## 6859                                                                                                                  Monster Jam
## 6860                                                                                                             Valhalla Knights
## 6861                                                                                         Harvest Moon: Another Wonderful Life
## 6862                                                                                                                  NBA Live 10
## 6863                                                                                            The Godfather (US & Others sales)
## 6864                                                                                               Jikkyou Powerful Pro Yakyuu 15
## 6865                                                                                                            MX vs. ATV Reflex
## 6866                                                                                                     Bakugan: Battle Brawlers
## 6867                                                                                                                   Front Line
## 6868                                                                                                                     Paperboy
## 6869                                                                                                 South Park: Chef's Luv Shack
## 6870                                                                                       Midway's Greatest Arcade Hits Volume 1
## 6871                                                                                                                 Road Rash 64
## 6872                                                                                               Ready 2 Rumble Boxing: Round 2
## 6873                                                                                                         Army Men: Air Combat
## 6874                                                                                                Rock Band Track Pack Volume 2
## 6875                                                                                                  NCAA College Basketball 2K3
## 6876                                                                               Mobile Suit Gundam Battlefield Record U.C.0081
## 6877                                                                                Harry Potter and the Deathly Hallows - Part 2
## 6878                                                                                                      NCAA March Madness 2004
## 6879                                                                                                                   Lucky Luke
## 6880                                                                                                                  Fantastic 4
## 6881                                                                                                           Ashes Cricket 2009
## 6882                                                                                                                  Ghost Rider
## 6883                                                                                                 Tony Hawk's American Sk8land
## 6884                                                                                                  Juiced 2: Hot Import Nights
## 6885                                                                                 Are You Smarter than a 5th Grader? Game Time
## 6886                                                                                      Amazing Adventures: The Forgotten Ruins
## 6887                                                                                                          Densetsu no Stafi 3
## 6888                                                                                                                     Forsaken
## 6889                                                                            Ratchet & Clank: Going Commando (JP weekly sales)
## 6890                                                                                                 Pictionary: Ultimate Edition
## 6891                                                                                                              LEGO The Hobbit
## 6892                                                                                                           Samurai Warriors 4
## 6893                                                                                                                   The Hobbit
## 6894                                                                               Dance Dance Revolution: Disney Channel Edition
## 6895                                                                                                                DiRT Showdown
## 6896                                                                                                    Divinity II: Ego Draconis
## 6897                                                                                                                     Checkers
## 6898                                                                                                    Front Mission: Gun Hazard
## 6899                                                                                                               X-Men: Destiny
## 6900                                                                                                          Hello Kitty Seasons
## 6901                                                                                                         Chibi-Robo! Zip Lash
## 6902                                                                                                                    4x4 EVO 2
## 6903                                                                                                            XS Airboat Racing
## 6904                                                                                                   Lunar: Silver Star Harmony
## 6905                                                                             Sherlock Holmes and the Mystery of Osborne House
## 6906                                                                                                             Grand Theft Auto
## 6907                                                                                     Dora the Explorer: Super Star Adventures
## 6908                                                                                                   Viva Pinata: Party Animals
## 6909                                                                                                      Scrabble (Others sales)
## 6910                                                                                                                Asura's Wrath
## 6911                                                                                            Lego Star Wars: The Force Awakens
## 6912                                                                                                   Dynasty Warriors 6 Empires
## 6913                                                                                                                    My Street
## 6914                                                                                                                       Wild 9
## 6915                                                                                                      Shadow Hearts: Covenant
## 6916                                                                                                      Tiger Woods PGA Tour 10
## 6917                                                                                           Shrek's Carnival Craze Party Games
## 6918                                                                                                                  Angry Birds
## 6919                                                                                                         Risen 2: Dark Waters
## 6920                                                                                                                Port Royale 3
## 6921                                                                                                             Guitar Hero Live
## 6922                                                                                                                 Game & Wario
## 6923                                                                                                                  PGA Tour 96
## 6924                                                                                                        Onechanbara Z2: Chaos
## 6925                                                                   Fallout 3 Game Add-On Pack: Broken Steel and Point Lookout
## 6926                                                                                                     Covert Ops: Nuclear Dawn
## 6927                                                                                     Build-A-Bear Workshop: Friendship Valley
## 6928                                                                                                 Pictionary: Ultimate Edition
## 6929                                                                                                 LEGO Harry Potter: Years 5-7
## 6930                                                                                                    TrackMania: Build to Race
## 6931                                                                                      Nintendo Presents: Crossword Collection
## 6932                                                                                                    Galaga: Destination Earth
## 6933                                                                                                  G.I. Joe: The Rise of Cobra
## 6934                                                                                           Ar tonelico Qoga: Knell of Ar Ciel
## 6935                                                                                                  FIFA World Cup Germany 2006
## 6936                                                                                            Polly Pocket: Super Splash Island
## 6937                                                                                                                  God Eater 2
## 6938                                                                                                     Alex Rider: Stormbreaker
## 6939                                                                                         Sesame Street: Elmo's Number Journey
## 6940                                                                                                                      Rampage
## 6941                                                                                                                  Dark Cavern
## 6942                                                                                           Jewels of the Tropical Lost Island
## 6943                                                                                                                 Afro Samurai
## 6944                                                                                                The Bureau: XCOM Declassified
## 6945                                                                                                         Sands of Destruction
## 6946                                                                                                        NASCAR 2011: The Game
## 6947                                                                                                Silent Hill: Book of Memories
## 6948                                                                                                                Lunar Knights
## 6949                                                                                                 The Walking Dead: Season Two
## 6950                                                                                              Epic Mickey 2: The Power of Two
## 6951                                                                                                           DC Universe Online
## 6952                                                                                                                    NASCAR 08
## 6953                                                                                                  Madagascar: Escape 2 Africa
## 6954                                                                                                           New Carnival Games
## 6955                                                                                                   Need For Speed: Undercover
## 6956                                                                                                       LEGO Marvel's Avengers
## 6957                                                                                                  Naruto: Path of the Ninja 2
## 6958                                                                                              Wallace & Gromit in Project Zoo
## 6959                                                                                                  Karaoke Revolution Volume 2
## 6960                                                                                         Wizards of Waverly Place: Spellbound
## 6961                                                                                                                  Love Plus +
## 6962                                                                                                       Etrian Mystery Dungeon
## 6963                                                                                              Mobile Suit Gundam: Climax U.C.
## 6964                                                                                                      Street Fighter EX2 Plus
## 6965                                                                                                                 The Smurfs 2
## 6966                                                                                                             Big Family Games
## 6967                                                                                                               Yoostar on MTV
## 6968                                                                                                       Hot Wheels: Beat That!
## 6969                                                                                                                 Rayman Arena
## 6970                                                                                                         Super Robot Taisen D
## 6971                                                                                                          NASCAR Thunder 2004
## 6972                                                                                                     Buffy the Vampire Slayer
## 6973                                                                                                       LEGO Marvel's Avengers
## 6974                                                                                            Star Wars: The Force Unleashed II
## 6975                                                                                          Harry Potter and the Goblet of Fire
## 6976                                                                                                   Zumba Fitness: World Party
## 6977                                                                                                Saint Seiya: Sanctuary Battle
## 6978                                                                                                  Girls Mode 3: Kirakira Code
## 6979                                                                                                                       Meteos
## 6980                                                                                                              Virtua Tennis 4
## 6981                                                                                                              Kung Fu Panda 2
## 6982                                                                                                                   Cross Edge
## 6983                                                                                                               Hotel for Dogs
## 6984                                                                                                Cabela's Big Game Hunter 2012
## 6985                                                                                                  Pro Yakyuu Team o Tsukurou!
## 6986                                                                                                             Me & My Katamari
## 6987                                                                                                           Asphalt: Injection
## 6988                                                                                                            Total War: Attila
## 6989                                                                                                                  SSX On Tour
## 6990                                                         Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 6991                                                                                                        World Series Baseball
## 6992                                                                                                         SingStar Pop Edition
## 6993                                                                                               Test Drive: Eve of Destruction
## 6994                                                                                                              Starsky & Hutch
## 6995                                                                                              Dynasty Warriors: Gundam Reborn
## 6996                                                                                                 Hatsune Miku: Project Diva f
## 6997                                                                                                                     The Club
## 6998                                                                                                              Carnival Island
## 6999                                                                                              Jeremy McGrath Supercross World
## 7000                                                                                                            M&M's Kart Racing
## 7001                                                                                           Rock Band Track Pack: Classic Rock
## 7002                                                                                      The Scorpion King: Rise of the Akkadian
## 7003                                                                                                    Let's Make a Soccer Team!
## 7004                                                                                                   Looney Tunes: Acme Arsenal
## 7005                                                                                                             Monster Hunter G
## 7006                                                                                                       All-Star Baseball 2001
## 7007                                                                                Pinball Hall of Fame: The Gottlieb Collection
## 7008                                                                                                  Sword Art Online: Lost Song
## 7009                                                                                       Star Wars Jedi Knight II: Jedi Outcast
## 7010                                                                                                   Tom Clancy's Splinter Cell
## 7011                                                                                                   Pitfall: The Big Adventure
## 7012                                                                                                 Rock Band Country Track Pack
## 7013                                                                                                        Worms: Battle Islands
## 7014                                                                                                              ESPN NHL Hockey
## 7015                                                                                                              Harvest Moon GB
## 7016                                                                                                           Imagine: Detective
## 7017                                                                                    The Incredible Hulk: Ultimate Destruction
## 7018                                                                                                    Hannah Montana: The Movie
## 7019                                                                                                        NCAA GameBreaker 2003
## 7020                                                                                                    Skylanders: SuperChargers
## 7021                                                                                                        Gundam Battle Assault
## 7022                                                                                                          Virtua Fighter Kids
## 7023                                                                                                     Lunar: Silver Star Story
## 7024                                                                                                  Rocket Power: Beach Bandits
## 7025                                                                                                     Shaun White Snowboarding
## 7026                                                                                                              LEGO The Hobbit
## 7027                                                                                                                Ultimate Band
## 7028                                                                                                                      NBA 2K6
## 7029                                                                                             Age of Empires: The Age of Kings
## 7030                                                                                                 What's Cooking? Jamie Oliver
## 7031                                                                                        Tom Clancy's Rainbow Six: Rogue Spear
## 7032                                                                                                             NHL FaceOff 2001
## 7033                                                                            Ultimate Duck Hunting: Hunting & Retrieving Ducks
## 7034                                                                                                   Yu-Gi-Oh! GX: Duel Academy
## 7035                                                                                                                      FIFA 14
## 7036                                                                                               National Geographic Challenge!
## 7037                                                                                                       Colony Wars: Vengeance
## 7038                                                                                         Last Window: The Secret of Cape West
## 7039                                                                                                    Yu-Gi-Oh! GX: Tag Force 3
## 7040                                                                                                Dynasty Warriors: Strikeforce
## 7041                                                                            Naruto Shippuden: Ultimate Ninja Storm Revolution
## 7042                                                                                                                I Love Horses
## 7043                                                                                                                Madden NFL 06
## 7044                                                                                 Karaoke Revolution Glee 2: Road to Regionals
## 7045                                                                                                                    NASCAR 08
## 7046                                                                                                The King of Fighters '95 (CD)
## 7047                                                                                                               Perfect Weapon
## 7048                                                                                                               Luminous Arc 2
## 7049                                                                                                                 Project CARS
## 7050                                                                                                   Major League Baseball 2K10
## 7051                                                                                                    Call of Duty: Black Ops 3
## 7052                                                                                                                        Mafia
## 7053                                                                                                     Spider-Man: Edge of Time
## 7054                                                                                                             Deadly Creatures
## 7055                                                                                                                     Airblade
## 7056                                                                                           Cabela's Outdoor Adventures (2009)
## 7057                                                                                                              Mega Man & Bass
## 7058                                                                                                                  NBA Live 15
## 7059                                                                                                     Neopets Puzzle Adventure
## 7060                                                                                                         Risen 2: Dark Waters
## 7061                                                                    Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 7062                                                                                                                Puss in Boots
## 7063                                                                                            Family Fest presents: Movie Games
## 7064                                                                                                      AKB1/149: Love Election
## 7065                                                                                                   Tony Hawk's Proving Ground
## 7066                                                                                                   Tetris 2 (weekly jp sales)
## 7067                                                                                                Pro Yakyuu Team o Tsukurou! 2
## 7068                                                                                                               Musou Orochi Z
## 7069                                                                         World Series of Poker 2008: Battle for the Bracelets
## 7070                                                                                                                WWE All Stars
## 7071                                                                                            Naruto Shippuden: Ninja Council 4
## 7072                                                                                                   Genji: Dawn of the Samurai
## 7073                                                                                                                Rocket League
## 7074                                                                                                                    Wipeout 2
## 7075                                                               The Idolm@ster SP: Wandering Star / Perfect Sun / Missing Moon
## 7076                                                                                                               Critical Depth
## 7077                                                                                                Barbie as The Island Princess
## 7078                                                                                                    Petz Rescue: Wildlife Vet
## 7079                                                                                                                 Tales of VS.
## 7080                                                                                              Saka-Tsuku DS: Touch and Direct
## 7081                                                                                                             Super Swing Golf
## 7082                                                                                                              The Italian Job
## 7083                                                                           Mega Man Battle Network 5: Team Colonel / Protoman
## 7084                                                                                              Barbie and the Three Musketeers
## 7085                                                                                                                   Star Ocean
## 7086                                                                                                             Freedom Fighters
## 7087                                                                                     Naruto: Ninja Council 2 European Version
## 7088                                                                                          Soldier of Fortune II: Double Helix
## 7089                                                                                                    pro evolution soccer 2011
## 7090                                                                                           Disney Princess: Enchanted Journey
## 7091                                                                                    Final Fantasy XI: Treasures of Aht Urhgan
## 7092                                                                                                                      Alundra
## 7093                                                                    World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 7094                                                                                                     Bratz: Girlz Really Rock
## 7095                                                                                                                 Super R-Type
## 7096                                                                                                    Rampage 2: Universal Tour
## 7097                                                                                             Super Robot Taisen F Kanketsuhen
## 7098                                                                                                    Tiger Woods PGA Tour 2003
## 7099                                                                                                                      BlowOut
## 7100                                                                                                                NFL Blitz Pro
## 7101                                                                                                                 MySims Party
## 7102                                                                                               TRON: Evolution - Battle Grids
## 7103                                                                                                           The Raiden Project
## 7104                                                                                                  Hooked! Real Motion Fishing
## 7105                                                                                                               Pocket Fighter
## 7106                                                                                                          Bicycle Casino 2005
## 7107                                                                                                           Valhalla Knights 2
## 7108                                                                                                 .hack//G.U. Vol.2//Reminisce
## 7109                                                                                               Disgaea: Afternoon of Darkness
## 7110                                                                                        Ratchet & Clank: Full Frontal Assault
## 7111                                                                                                             NCAA Football 09
## 7112                                                                                      Family Party: 30 Great Games Winter Fun
## 7113                                                                                                        NCAA GameBreaker 2004
## 7114                                                                                                   101-in-1 Party Megamix Wii
## 7115                                                                                                            The Polar Express
## 7116                                                                                                                Dinosaur King
## 7117                                                                                                        Buzz! Junior: RoboJam
## 7118                                                                                                                Child of Eden
## 7119                                                                                                              All Star Karate
## 7120                                                                                             AC/DC LIVE: Rock Band Track Pack
## 7121                                                                                                                Tetris Attack
## 7122                                                                                                            NBA ShootOut 2003
## 7123                                                                                                 The Magic School Bus: Oceans
## 7124                                                                                 Shin Nippon Pro Wrestling: Toukon Retsuden 3
## 7125                                                                                                Senran Kagura: Estival Versus
## 7126                                                                                                  Digimon World DS (JP sales)
## 7127                                                                                                             NHL FaceOff 2003
## 7128                                                                                                                 Jersey Devil
## 7129                                                                                                                    Rogue Ops
## 7130                                                                                                         NBA Street: Showdown
## 7131                                                                                            3rd Super Robot Wars Z Jigoku Hen
## 7132                                                                                                                       Cars 2
## 7133                                                                                                           Petz Monkeyz House
## 7134                                                                                                           Spec Ops: The Line
## 7135                                                                                              Legion: The Legend of Excalibur
## 7136                                                                                                       FaceBreaker K.O. Party
## 7137                                                                                                        Justice League Heroes
## 7138                                                                      Gekijouban Macross F: Sayonara no Tsubasa - Hybrid Pack
## 7139                                                                                                                  TNA iMPACT!
## 7140                                                                                 Yu-Gi-Oh! GX: Spirit Caller (American Sales)
## 7141                                                                                                        Def Jam: Fight for NY
## 7142                                                                                            Sword Art Online: Infinity Moment
## 7143                                                                                                       Spartan: Total Warrior
## 7144                                                                                                               Killer is Dead
## 7145                                                                                                                  EX Monopoly
## 7146                                                                                                          Star Trek: The Game
## 7147                                                                           64 de Hakken! Tamagotchi Minna de Tamagotchi World
## 7148                                                                           Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7149                                                                                                                  Deadly Duck
## 7150                                                                                                                      Assault
## 7151                                                                                                                      Reactor
## 7152                                                                                                                     Ys Seven
## 7153                                                                               Marvel Super Hero Squad: The Infinity Gauntlet
## 7154                                                                                                      Gundam Battle Chronicle
## 7155                                                                                                                      G-Force
## 7156                                                                                                          Danball Senki Boost
## 7157                                                                                         Kidz Bop Dance Party! The Video Game
## 7158                                                                                                            Conflict: Vietnam
## 7159                                                                                                                   Whirl Tour
## 7160                                                                                                     Time Crisis: Crisis Zone
## 7161                                                                                                        Momotarou Dentetsu 15
## 7162                                                                                                                Dark Souls II
## 7163                                                                                            Discovery Kids: Dolphin Discovery
## 7164                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 7165                                                                                                Hatsune Miku: Project Mirai 2
## 7166                                                                                                     Skies of Arcadia Legends
## 7167                                                                                            Cloudy With a Chance of Meatballs
## 7168                                                                                                                    MotoGP 08
## 7169                                                                                                                Madden NFL 12
## 7170                                                                                                       Sengoku Basara 3 Utage
## 7171                                                                                                               Breath of Fire
## 7172                                                                                                                  Ragnarok DS
## 7173                                                                                                               Ford vs. Chevy
## 7174                                                                                                           NCAA Football 2005
## 7175                                                                                                       Hamtaro: Ham-Ham Games
## 7176                                                                                            Danny Phantom: The Ultimate Enemy
## 7177                                                                                             Petz Rescue: Endangered Paradise
## 7178                                                                                                                 MotoGP 09/10
## 7179                                                                                               Rune Factory: Tides of Destiny
## 7180                                                                                                           A Boy and His Blob
## 7181                                                                                                                   Battleborn
## 7182                                                                                                                Port Royale 3
## 7183                                                                             Atelier Escha & Logy: Alchemists of the Dusk Sky
## 7184                                                                                          Hidden Mysteries: Buckingham Palace
## 7185                                                                                                                Crazy Climber
## 7186                                                                                                       Super Adventure Island
## 7187                                                                                                                Bust-A-Move 4
## 7188                                                                                       The Legend of Spyro: The Eternal Night
## 7189                                                                                                      NFL Quarterback Club 97
## 7190                                                                                                   Rampage: Total Destruction
## 7191                                                                                Galactic Wrestling: Featuring Ultimate Muscle
## 7192                                                                                                             Petz: Horse Club
## 7193                                                                                                                 Dino Stalker
## 7194                                                                                                      Rapala's Fishing Frenzy
## 7195                                                                                                      Mobile Suit Gundam Seed
## 7196                                                                                                                      Shinobi
## 7197                                                                                                                Puss in Boots
## 7198                                                                                                     Tony Hawk's Downhill Jam
## 7199                                                                                                              Mega Man Zero 3
## 7200                                                                                                   LEGO The Lord of the Rings
## 7201                                                                                                           Hitman: HD Trilogy
## 7202                                                                                                  Aliens vs Predator: Requiem
## 7203                                                                                               Castlevania: Lords of Shadow 2
## 7204                                                                                                  Barbie: Groom and Glam Pups
## 7205                                                                                                       KORG DS-10 Synthesizer
## 7206                                                                                                     Tenchu: Shadow Assassins
## 7207                                                                                                          Barbie Super Sports
## 7208                                                                                                        CSI: Fatal Conspiracy
## 7209                                                                        Nicktoons Collection: Game Boy Advance Video Volume 2
## 7210                                                                                                             Jackass the Game
## 7211                                                                                   The Legend of Heroes: Trails of Cold Steel
## 7212                                                                                              Tom Clancy's Rainbow Six: Siege
## 7213                                                                                                      Dungeon Hunter Alliance
## 7214                                                                                                 LEGO Harry Potter: Years 5-7
## 7215                                                                                               Duel Masters: Kaijudo Showdown
## 7216                                                                                                      Imagine: Boutique Owner
## 7217                                                                                                 The Walking Dead: Season Two
## 7218                                                                                         The Lord of the Rings: The Third Age
## 7219                                                                                                              Cursed Mountain
## 7220                                                                                                                The Suffering
## 7221                                                                                       Dragon Quest Builders: Revive Alefgard
## 7222                                                                                                                Tetris Worlds
## 7223                                                                             Teenage Mutant Ninja Turtles: Danger of the Ooze
## 7224                                                                                                      ECW Hardcore Revolution
## 7225                                                                                                                  Mega Man 64
## 7226                                                                           Chou-Kuukan Night Pro Yakyuu King(higher JP sales)
## 7227                                                                                                    Rampage 2: Universal Tour
## 7228                                                                                                    Ms. Pac-Man: Maze Madness
## 7229                                                                                                              Tales of Graces
## 7230                                                                                                  Age of Empires: Mythologies
## 7231                                                                                                              Viewtiful Joe 2
## 7232                                                                                         Where's Waldo? The Fantastic Journey
## 7233                                                                                                               ATV Quad Kings
## 7234                                                                           Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 7235                                                                                                     Jewel Quest: Expeditions
## 7236                                                                                                              NBA Jam Extreme
## 7237                                                                              Dragon Ball: Origins (JP & incomplete US sales)
## 7238                                                                                                               Touch the Dead
## 7239                                                                                                                    Tropico 3
## 7240                                                                                                      Nickelodeon Party Blast
## 7241                                                                                           Ben 10 Alien Force: Vilgax Attacks
## 7242                                                                                                        NHL Championship 2000
## 7243                                                                                                  G.I. Joe: The Rise of Cobra
## 7244                                                                                                          Shellshock: Nam '67
## 7245                                                                                                    Hunted: The Demon's Forge
## 7246                                                                                                     Kartia: The Word of Fate
## 7247                                                                                                            Tales of Berseria
## 7248                                                                                                       All-Star Baseball 2002
## 7249                                                                                                  Magna Carta: Tears of Blood
## 7250                                                                                            Lethal Skies Elite Pilot: Team SW
## 7251                                                                                                               Capcom vs. SNK
## 7252                                                                                                         NBA Live 09 All-Play
## 7253                                                                                                               Infinite Space
## 7254                                                                                                                     Yoostar2
## 7255                                                                                                    Transformers: Devastation
## 7256                                                                                             Tamagotchi no KiraKira Omisecchi
## 7257                                                                                                        From Russia With Love
## 7258                                                                                                          You Don't Know Jack
## 7259                                                                                                              Just Dance 2016
## 7260                                                                                Pinball Hall of Fame: The Williams Collection
## 7261                                                                                                      Guitar Hero: Smash Hits
## 7262                                                                                                    NFL Quarterback Club 2002
## 7263                                                                                                         Kirby's Star Stacker
## 7264                                                                                                           NCAA Basketball 09
## 7265                                                                                                                    Full Auto
## 7266                                                                                                                  Dead Island
## 7267                                                                                                  Growlanser: Heritage of War
## 7268                                                                                                     Hasbro Family Game Night
## 7269                                                                                             Shin Megami Tensei x Fire Emblem
## 7270                                                                                                                   Rugby 2004
## 7271                                                                            Disney's Magical Quest Starring Mickey and Minnie
## 7272                                                                                             Spirit Camera: The Cursed Memoir
## 7273                                                                                                                       NBA 06
## 7274                                                                                                        Naruto: Ninja Council
## 7275                                                                                                  Shin Megami Tensei: Persona
## 7276                               DS Nishimura Kyotaro Suspense Shin Tantei Series: Kyoto Atami Zekkai no Kotou - Satsui no Wana
## 7277                                                                                               Wreckless: ThE YaKuza MisSiOns
## 7278                                                                                                                Madden NFL 07
## 7279                                                                                                Jikkyou Powerful Major League
## 7280                                                                                                                      NFL 2K3
## 7281                                                                                                                Darksiders II
## 7282                                                                                                       Saltwater Sportfishing
## 7283                                                                                                  Yoshi Touch & Go (JP sales)
## 7284                                                                                             Samurai Jack: The Amulet of Time
## 7285                                                                                                                Pass the Pigs
## 7286                                                                              J-League Winning Eleven 2008: Club Championship
## 7287                                                                                                     Jackie Chan: Stuntmaster
## 7288                                                                                                                Sports Car GT
## 7289                                                                                                                Lost Planet 3
## 7290                                                                                                                    Order Up!
## 7291                                                                                                        Code Name: S.T.E.A.M.
## 7292                                                                                          SBK X: Superbike World Championship
## 7293                                                                                                                  NBA Live 14
## 7294                                                                                                   Scooby-Doo! Mystery Mayhem
## 7295                                                                                       Kanzen Chuuki Pro Yakyuu Greatest Nine
## 7296                                                                                                                American Idol
## 7297                                                                      Summer Athletics: The Ultimate Challenge (Others sales)
## 7298                                                                                                         Britney's Dance Beat
## 7299                                                                                                              Shrek SuperSlam
## 7300                                                                                                      Sniper: Ghost Warrior 2
## 7301                                                                                                              Over G Fighters
## 7302                                                                                                                  Sailor Moon
## 7303                                                                                                          Apache: Air Assault
## 7304                                                                                                 One Piece: Pirate Warriors 3
## 7305                                                                                                                  Herdy Gerdy
## 7306                                                                                                               Armored Core V
## 7307                                                                                                                   EVE Online
## 7308                                                                                                    Digimon World Re:Digitize
## 7309                                                                                                   Ninja Gaiden: Dragon Sword
## 7310                                                                                                                         Ride
## 7311                                                                                                             Blue Dragon Plus
## 7312                                                                                                          Lords of the Fallen
## 7313                                                                                                         NBA in the Zone 2000
## 7314                                                                                                                  Dark Summit
## 7315                                                                                                                       Afrika
## 7316                                                                                 Cabela's Big Game Hunter: Ultimate Challenge
## 7317                                                                        The Legend of Heroes: Trails in the Sky First Chapter
## 7318                                                                            Are You Smarter Than a 5th Grader? Back to School
## 7319                                                                                                                  Steins;Gate
## 7320                                                                              The Dukes of Hazzard: Return of the General Lee
## 7321                                                                                                                 Pandemonium!
## 7322                                                                                                    SingStar: Back to the 80s
## 7323                                                                                               Namco Museum: 50th Anniversary
## 7324                                                                                                               Crash 'N' Burn
## 7325                                                                                                                          NBA
## 7326                                                                                       Teenage Mutant Ninja Turtles: Smash-Up
## 7327                                                                                                 Pro Yakyuu Greatest Nine '97
## 7328                                                                                               Transformers: Dark of the Moon
## 7329                                                                                      Final Fantasy Fables: Chocobo's Dungeon
## 7330                                                                                            Lunar: Silver Star Story Complete
## 7331                                                                                                Dorabase DS: Dramatic Stadium
## 7332                                                                                                              Disaster Report
## 7333                                                                                                             EVE: burst error
## 7334                                                                                                      We Sing Robbie Williams
## 7335                                                                                                    Backyard NFL Football '09
## 7336                                                                                                    Pro Evolution Soccer 2012
## 7337                                                                                             Akiba's Trip: Undead & Undressed
## 7338                                                                                                   Speed Racer: The Videogame
## 7339                                                                                                            College Hoops 2K7
## 7340                                                                                              The Amazing Spider-Man 2 (2014)
## 7341                                                                                                            Big League Sports
## 7342                                                                                                      Bratz: Forever Diamondz
## 7343                                                                                                        WCW Backstage Assault
## 7344                                                                                                          UFC Undisputed 2010
## 7345                                                                                                        Baja: Edge of Control
## 7346                                                                                                             Wild Wild Racing
## 7347                                                                                              Magician's Quest: Town of Magic
## 7348                                                                                                              The Bard's Tale
## 7349                                                                                                        NCAA March Madness 08
## 7350                                                                                                        Momotarou Dentetsu 16
## 7351                                                                                                   Robotech: The Macross Saga
## 7352                                                                                            Charm Girls Club: My Fashion Show
## 7353                                                                                                     MTV Celebrity Deathmatch
## 7354                                                                       Gekijouban Macross F: Itsuwarino Utahime - Hybrid Pack
## 7355                                                                                                                Conflict Zone
## 7356                                                                                                 Tony Hawk's American Sk8land
## 7357                                                                                                                    de Blob 2
## 7358                                                                                                                   The BIGS 2
## 7359                                                                                                                   BloodRayne
## 7360                                                                                                    Hannah Montana: The Movie
## 7361                                                                                                   50 Cent: Blood on the Sand
## 7362                                                                                                     Bratz: Girlz Really Rock
## 7363                                                                                                                      NHL 2K6
## 7364                                                                                                 Tenchu: Return From Darkness
## 7365                                                                                                             World Poker Tour
## 7366                                                                                                 Prison Break: The Conspiracy
## 7367                                                                                                                   Neo Contra
## 7368                                                                                                                 MVP Baseball
## 7369                                                                                                               GRID Autosport
## 7370                                                                                                           Get Fit with Mel B
## 7371                                                                                                    Face Racers: Photo Finish
## 7372                                                                                                          RealSports Baseball
## 7373                                                                                  Now! That's What I Call Music: Dance & Sing
## 7374                                                                       Yu-Gi-Oh! 5D's World Championship 2011: Over the Nexus
## 7375                                                                                         Metal Gear Solid V: The Phantom Pain
## 7376                                                                                                   Hasbro Family Game Night 3
## 7377                                                                                                  G.I. Joe: The Rise of Cobra
## 7378                                                                                                        Rayman Raving Rabbids
## 7379                                                                                                              Viewtiful Joe 2
## 7380                                                                                                        Quake III: Revolution
## 7381                                                                                                              Pac-Man World 3
## 7382                                                                                            Naruto: Clash of Ninja (JP sales)
## 7383                                                                                                     Zero: Tsukihami no Kamen
## 7384                                                                                                            NOëL: NOT DiGITAL
## 7385                                                                                          Transformer: Rise of the Dark Spark
## 7386                                                                                                Dragon Ball Z Hyper Dimension
## 7387                                                                    Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 7388                                                                                                Senran Kagura 2: Deep Crimson
## 7389                                                                                                      Marvel Super Hero Squad
## 7390                                                                                     The Chronicles of Narnia: Prince Caspian
## 7391                                                                                    Champion Jockey: G1 Jockey & Gallop Racer
## 7392                                                                                                                   HBO Boxing
## 7393                                                                                                                     Yoga Wii
## 7394                                                                                                                    Darkwatch
## 7395                                                                                         Cabela's Survival: Shadows of Katmai
## 7396                                                                                                Prince of Persia: Revelations
## 7397                                                                                                   Bass Pro Shops: The Strike
## 7398                                                                                            Front Mission 5: Scars of the War
## 7399                                                                                                        Maximo vs Army of Zin
## 7400                                                                                     The Fairly OddParents: Breakin' Da Rules
## 7401                                                                                                         Namco Museum Megamix
## 7402                                                                                                                 Wedding Dash
## 7403                                                                                                 Hot Shots Tennis: Get a Grip
## 7404                                                                                                                   Summoner 2
## 7405                                                                                    The Land Before Time: Big Water Adventure
## 7406                                                                                                            Shadow of Destiny
## 7407                                                                                                                   The Hidden
## 7408                                                                                              Cabela's Deer Hunt: 2004 Season
## 7409                                                                                                              Disney's Planes
## 7410                                                                                                        Brunswick Pro Bowling
## 7411                                                                                                        World Series of Poker
## 7412                                                                                                           ClayFighter 63 1/3
## 7413                                                                                                                     Monopoly
## 7414                                                                                                                    WCW Nitro
## 7415                                                                                                              Cruis'n Exotica
## 7416                                                                                                      Gex 3: Deep Cover Gecko
## 7417                                                                                                   WinBack: Covert Operations
## 7418                                                                                                               Heroes of Ruin
## 7419                                                                                                           WipeOut 3 The Game
## 7420                                                                                     Bastard!! Utsuro Naru Kamigami no Utsuwa
## 7421                                                                                             SBK Superbike World Championship
## 7422                                                                                                     The King of Fighters '96
## 7423                                                                                                                     Bionicle
## 7424                                                                                                         Dead Island: Riptide
## 7425                                                                                             Angel Blade: Neo Tokyo Guardians
## 7426                                                                                                              Threads of Fate
## 7427                                                                                                    PoPoLoCrois Monogatari II
## 7428                                                                               Famicom Mini: Ganbare Goemon! Karakuri Douchuu
## 7429                                                                                                                 Vampire Rain
## 7430                                                                                                         Way of the Samurai 3
## 7431                                                                                                      Deus Ex: The Conspiracy
## 7432                                                                                                     Unreal II: The Awakening
## 7433                                                                                                                Rumble Racing
## 7434                                                                                                   Spider-Man: Web of Shadows
## 7435                                                                                              Disgaea D2: A Brighter Darkness
## 7436                                                                                                                Batman Begins
## 7437                                                                                                    Just Dance: Greatest Hits
## 7438                                                                             J-League Winning Eleven 10 + Europa League 06-07
## 7439                                                                                                         Shrek: Reekin' Havoc
## 7440                                                                                                   Solatorobo: Red the Hunter
## 7441                                                                                       Tales of Phantasia: Narikiri Dungeon X
## 7442                                                                                                   JSRF: Jet Set Radio Future
## 7443                                                                                                               NHL Hitz 20-02
## 7444                                                                                                           The Last Airbender
## 7445                                                                                                           NCAA Football 2003
## 7446                                                                                                                       StokEd
## 7447                                                                                                                     Rollcage
## 7448                                                                                       ESPN Winter X Games: Snowboarding 2002
## 7449                                                                                                           Project: Snowblind
## 7450                                                                                                           Tony Hawk's Motion
## 7451                                                                                                         Super Robot Taisen K
## 7452                                                                                                Mortal Kombat: Special Forces
## 7453                                                                                                              LEGO The Hobbit
## 7454                                                                                                               Rayman Legends
## 7455                                                                                           Dragon Ball Z: Harukanaru Densetsu
## 7456                                                                                                    Wacky Races: Crash & Dash
## 7457                                                                                                                I Spy: Castle
## 7458                                                                                     Shin Megami Tensei: Persona 3 (jp sales)
## 7459                                                                                                    Greg Hastings Paintball 2
## 7460                                                                                                      Evil Dead: Regeneration
## 7461                                                                                                  Dead to Rights: Retribution
## 7462                                                                                                        NCAA March Madness 07
## 7463                                                                                                                     NHL 2003
## 7464                                                                                        Marvel Super Hero Squad: Comic Combat
## 7465                                                                                                  X-Men: Children of the Atom
## 7466                                                                                        Barbie Fashion Show: An Eye for Style
## 7467                                                                                                         Tiger Woods PGA Tour
## 7468                                                                               Yarudora Series Vol. 2: Kisetsu wo Dakishimete
## 7469                                                                                                                      NHL 2K3
## 7470                                                                                                     Heisei Kyouiku linkai DS
## 7471                                                                       SpongeBob SquarePants: Game Boy Advance Video Volume 3
## 7472                                                                                                       Pro Yaky? Spirits 2010
## 7473                                                                                      The Naked Brothers Band: The Video Game
## 7474                                                                                                              Final Fight One
## 7475                                                                                               Rune Factory: Tides of Destiny
## 7476                                                                                     The Amazing Spider-Man (Console Version)
## 7477                                                                                                             NCAA Football 10
## 7478                                                                                               Gallop Racer 2003: A New Breed
## 7479                                                                                                            Dawn of Discovery
## 7480                                                                                     BeyBlade VForce: Super Tournament Battle
## 7481                                                                                                                Outlaw Golf 2
## 7482                                                                                       Little Battlers eXperience: Baku Boost
## 7483                                                                                                               Anarchy Reigns
## 7484                                                                                                           CSI: Deadly Intent
## 7485                                                                                                                     Defiance
## 7486                                                                             J-League Pro Soccer Club o Tsukurou! 7 Euro Plus
## 7487                                                                                                LEGO Ninjago: Shadow of Ronin
## 7488                                                                                               Bugs Bunny & Taz: Time Busters
## 7489                                                                                          Need for Speed Carbon: Own the City
## 7490                                                                                                         Dragon Ball Z: Sagas
## 7491                                                                                                                Kung Fu Rider
## 7492                                                                                             Jikkyou Powerful Pro Yakyuu 2012
## 7493                                                                                                      X2: Wolverine's Revenge
## 7494                                                                                                    Power Rangers: Wild Force
## 7495                                                                                                            The Wolf Among Us
## 7496                                                                                                                  Thrillville
## 7497                                                                                           Battle of Giants: Dinosaurs Strike
## 7498                                                                                                       Attack on Titan (KOEI)
## 7499                                                                                                     The King of Fighters '95
## 7500                                                                                                Discovery Kids: Pony Paradise
## 7501                                                                                        Mary-Kate and Ashley: Girls Night Out
## 7502                                                                                           Cabela's North American Adventures
## 7503                                                                                                               Enchanted Arms
## 7504                                                                                                        Beyblade G-Revolution
## 7505                                                                                                                WWE All Stars
## 7506                                                                                                    Trade & Battle: Card Hero
## 7507                                                                                                     World Championship Cards
## 7508                                                                                                          You Don't Know Jack
## 7509                                                                           Chronicles of Mystery: Curse of the Ancient Temple
## 7510                                                                                                                  NBA Live 15
## 7511                                                                                                    Capcom Fighting Evolution
## 7512                                                                                                                   Frogger 3D
## 7513                                                                                                              SD Gundam GNext
## 7514                                                                                                   Backyard NFL Football 2006
## 7515                                                                                                             NASCAR Heat 2002
## 7516                                                                                                                    Planet 51
## 7517                                                                                      Sloane to MacHale no Nazo no Monogatari
## 7518                                                                                                DarkStar One: Broken Alliance
## 7519                                                                                   My Fitness Coach 2: Exercise and Nutrition
## 7520                                                                                                      Sengoku Basara 2 Heroes
## 7521                                                                                                       Buzz! The Schools Quiz
## 7522                                                                                                                Two Worlds II
## 7523                                                                                                             Suikoden Tactics
## 7524                                                                                                        NCAA March Madness 06
## 7525                                                                                                   Major League Baseball 2K11
## 7526                                                                                                Mobile Suit Gundam: Crossfire
## 7527                                                                                                         Phantasy Star Online
## 7528                                                                                                    Crazy Taxi 3: High Roller
## 7529                                                                                     Dark Messiah of Might and Magic Elements
## 7530                                                                                                    Just Dance 2: Extra Songs
## 7531                                                                                           Midnight Club 3: DUB Edition Remix
## 7532                                                                                          International Superstar Soccer 2000
## 7533                                                                                               Warhammer 40,000: Space Marine
## 7534                                                                                        CandyLand / Chutes & Ladders / Memory
## 7535                                                                                                               The Bible Game
## 7536                                                                                               Drift King Shutokou Battle '94
## 7537                                                                                                                Shining Blade
## 7538                                                                                                               Fairy Fencer F
## 7539                                                                                  Atelier Shallie: Alchemists of the Dusk Sea
## 7540                                                                                              The Ultimate Red Ball Challenge
## 7541                                                                                                        PBR: Out of the Chute
## 7542                                                                             The King of Fighters Collection: The Orochi Saga
## 7543                                                                 Jikkyou Powerful Pro Yakyuu 10 Chou Ketteiban: 2003 Memorial
## 7544                                                                                                               Arcana Heart 3
## 7545                                                                                                     Tekken 3D: Prime Edition
## 7546                                                                                         Deal or No Deal: The Banker is Back!
## 7547                                                                                          Jillian Michaels' Fitness Adventure
## 7548                                                                                                             MLB 10: The Show
## 7549                                                                                                               State of Decay
## 7550                                                                                                           Ashes Cricket 2009
## 7551                                                                                                      Saturday Night Speedway
## 7552                                                                                                           Bratz: Rock Angelz
## 7553                                                                                                               Langrisser III
## 7554                                                                                                         Samurai Spirits (CD)
## 7555                                                                                                           MLB SlugFest 20-03
## 7556                                                                                         Dragon Ball: Revenge of King Piccolo
## 7557                                                                                                          Spectrobes: Origins
## 7558                                                                                       Earth Defense Force: Insect Armageddon
## 7559                                                                                                 Pitfall: The Lost Expedition
## 7560                                                                                                  Marvel: Ultimate Alliance 2
## 7561                                                                                 From TV Animation One Piece: Grand Battle! 3
## 7562                                                                                                   Assassin's Creed Syndicate
## 7563                                                                                              Rocket Power: Zero Gravity Zone
## 7564                                                                                                             Le Mans 24 Hours
## 7565                                                                                                                       XCOM 2
## 7566                                                                                                   International Cricket 2010
## 7567                                                                                                            ESPN MLB Baseball
## 7568                                                                                                           Neighborhood Games
## 7569                                                                                                       All Star Pro-Wrestling
## 7570                                                                                                         Way of the Samurai 4
## 7571                                                                                                       Clive Barker's Jericho
## 7572                                                                                   Harvest Moon: More Friends of Mineral Town
## 7573                                                                                               Captain America: Super Soldier
## 7574                                                                                                             MLB 12: The Show
## 7575                                                                                      The Fairly Odd Parents: Shadow Showdown
## 7576                                                                                                                       NHL 17
## 7577                                                                        Mobile Suit Gundam Side Story II: Aoi o Uketsugu Mono
## 7578                                                                                             Camping Mama: Outdoor Adventures
## 7579                                                                                         Kurohyou 2: Ryu ga Gotoku Ashura Hen
## 7580                                                                                                                      NBA 2K2
## 7581                                                                                                      X2: Wolverine's Revenge
## 7582                                                                                                              7th Dragon 2020
## 7583                                                                                                                         Cars
## 7584                                                                                   Taiko no Tatsujin: Waku Waku Anime Matsuri
## 7585                                                                                                       Imagine: Babyz Fashion
## 7586                                                                                                                   Spy Hunter
## 7587                                                                                                              Warriors Orochi
## 7588                                                                                                            Dead to Rights II
## 7589                                                                                                     Super Dodge Ball Advance
## 7590                                                                  Ogre Battle Saga Episode Five: The March of the Black Queen
## 7591                                                                                                                Ridge Racer 6
## 7592                                                                                                        Angry Birds Star Wars
## 7593                                                                                      Ni Hao, Kai-lan: New Year's Celebration
## 7594                                                                                                 Press Your Luck 2010 Edition
## 7595                                                                                                               Treasure World
## 7596                                                                                                        Front Mission Evolved
## 7597                                                                                                    Body and Brain Connection
## 7598                                                                                                                          MDK
## 7599                                                                                                                  Monster Jam
## 7600                                                                                                                 Afro Samurai
## 7601                                                                                           Rock Band Track Pack: Classic Rock
## 7602                                                                                             Zone of the Enders HD Collection
## 7603                                                                                        Ty the Tasmanian Tiger 2: Bush Rescue
## 7604                                                                                                                  Speed Punks
## 7605                                                                                  The Legend of Heroes VII: The Trail of Blue
## 7606                                                                                             No More Heroes: Heroes' Paradise
## 7607                                                                                            Mahjongg Mysteries: Ancient Egypt
## 7608                                                                                                                Saints Row IV
## 7609                                                                                                     Injustice: Gods Among Us
## 7610                                                                                                            MVP Baseball 2003
## 7611                                                                                                               CSI: Unsolved!
## 7612                                                                                                       Star Wars: Battlefront
## 7613                                                                                                         NCAA Final Four 2004
## 7614                                                               The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 7615                                                                                                          Tigger's Honey Hunt
## 7616                                                                                                             Egg Monster Hero
## 7617                                                                                                                 Roadsters 99
## 7618                                                                                                     Magical Tetris Challenge
## 7619                                                                                            Twisted Edge Extreme Snowboarding
## 7620                                                                                                              Disney's Tarzan
## 7621                                                                                                             South Park Rally
## 7622                                                                                                                 Body Harvest
## 7623                                                                                                      San Francisco Rush 2049
## 7624                                                                                                        Super Robot Taisen 64
## 7625                                                                                                               Snowboard Kids
## 7626                                                                                                                       NBA 07
## 7627                                                                                                        IHRA Drag Racing 2004
## 7628                                                                                                               Shining Hearts
## 7629                                                                                 Magical ZhuZhu Princess: Carriages & Castles
## 7630                                                                                                             Code of Princess
## 7631                                                                                                      Tomb Raider: Underworld
## 7632                                                                                                                      The Con
## 7633                                                                                                     Tony Hawk's Pro Skater 5
## 7634                                                                                      Jissen Pachi-Slot Hisshouhou! Aladdin A
## 7635                                                                                               Namco Museum: 50th Anniversary
## 7636                                                                                                         Ford Racing Off Road
## 7637                                                                                             The Witch and the Hundred Knight
## 7638                                                                                                 Nobunaga no Yabou: Reppuuden
## 7639                                                                                                     Hot Wheels: Track Attack
## 7640                                                                                                              Schlag den Raab
## 7641                                                                            UFC Personal Trainer: The Ultimate Fitness System
## 7642                                                                                    Total War: Shogun 2 - Fall of the Samurai
## 7643                                                                                                                   The BIGS 2
## 7644                                                                                                      Mat Hoffman's Pro BMX 2
## 7645                                                                                                            Treasure Hunter G
## 7646                                                                                                 Untold Legends: Dark Kingdom
## 7647                                                                                                        From Russia With Love
## 7648                                                                                                                    Wing Arms
## 7649                                                                                                    Samurai Shodown Anthology
## 7650                                                                                                       Pro Yaky? Spirits 2013
## 7651                                                                                                We Wish You A Merry Christmas
## 7652                                                                                                      BioShock The Collection
## 7653                                                                                                         DanceDanceRevolution
## 7654                                                                                              Cabela's Big Game Hunter (2008)
## 7655                                                                                                                   Grandia II
## 7656                                                                                                           Namco Museum Vol.4
## 7657                                                                                       The Cheetah Girls: Passport to Stardom
## 7658                                                                            UFC Personal Trainer: The Ultimate Fitness System
## 7659                                                                                                   How to Train Your Dragon 2
## 7660                                                                                                                   Shark Tale
## 7661                                                                                                                 NFL Street 2
## 7662                                                                                                       Pro Yaky? Spirits 2013
## 7663                                                                             Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 7664                                                                                                   My Secret World by Imagine
## 7665                                                                                                  Soldier of Fortune: Payback
## 7666                                                                                                                  Ridge Racer
## 7667                                                                                                      Bleach: The 3rd Phantom
## 7668                                                                                                                      Gladius
## 7669                                                                                                    Family Feud: 2012 Edition
## 7670                                                                                                   Dave Mirra Freestyle BMX 2
## 7671                                                                                                             Spore Hero Arena
## 7672                                                                                                       Pro Yaky? Spirits 2012
## 7673                                                                             Puzzle & Dragons X: God Chapter / Dragon Chapter
## 7674                                                                        SpongeBob SquarePants: Revenge of the Flying Dutchman
## 7675                                                                                                        Record of Agarest War
## 7676                                                                                                        Baja: Edge of Control
## 7677                                                                                                         Sid Meier's Pirates!
## 7678                                                                                           Taiko no Tatsujin: Go! Go! Godaime
## 7679                                                                                                            Taiko Drum Master
## 7680                                                                                    High School Musical 3: Senior Year DANCE!
## 7681                                                                                          Harry Potter and the Goblet of Fire
## 7682                                                                                                 Bust-A-Move 2 Arcade Edition
## 7683                                                                                               South Park: The Stick of Truth
## 7684                                                                                       Tom Clancy's Splinter Cell: Essentials
## 7685                                                                                               Tetris Worlds (Online Edition)
## 7686                                                                                                               Armored Core 4
## 7687                                                                                                                Sleeping Dogs
## 7688                                                                                                Forgotten Realms: Demon Stone
## 7689                                                                                               Super Baseball Simulator 1.000
## 7690                                                                                         Barbie Horse Adventures: Riding Camp
## 7691                                                                                                   Resident Evil: Revelations
## 7692                                                                                                         Go Play: Lumberjacks
## 7693                                                                                                     Looney Tunes: Space Race
## 7694                                                                                       Puzzle Challenge: Crosswords and More!
## 7695                                                                                                             NASCAR Unleashed
## 7696                                                                                                              Backyard Hockey
## 7697                                                                                                         Playboy: The Mansion
## 7698                                                                                             Jikkyou Powerful Pro Yakyuu 2010
## 7699                                                                                                          Shiren the Wanderer
## 7700                                                                                                Ore no Shikabane o Koete Yuke
## 7701                                                                                               Shaman King: Spirit of Shamans
## 7702                                                                                                      Tiger Woods PGA Tour 06
## 7703                                                                                                                        Conan
## 7704                                                                                                                  Ratatouille
## 7705                                                                                      The Fairly Odd Parents: Enter the Cleft
## 7706                                                                                                              Warriors Orochi
## 7707                                                                                                        MC Groovz Dance Craze
## 7708                                                                                                                    The Thing
## 7709                                                                                                  Tom and Jerry in House Trap
## 7710                                                                                                    Power Rangers: Time Force
## 7711                                                                                                   101-in-1 Explosive Megamix
## 7712                                                                                                     X-Men Origins: Wolverine
## 7713                                                                                             Jikkyou Powerful Pro Yakyuu 2011
## 7714                                                           DS Kageyama Method: Dennou Hanpuku - Masu x Masu Hyaku Masu Keisan
## 7715                                                                                                 Baldur's Gate: Dark Alliance
## 7716                                                                                                                   Family Guy
## 7717                                                                                             Prince of Persia: Warrior Within
## 7718                                                                                                                  UFC: Tapout
## 7719                                                                                                   Aikatsu! Cinderella Lesson
## 7720                                                                                        Marvel Super Hero Squad: Comic Combat
## 7721                                                                                                                  Demon Chaos
## 7722                                                                                                   Mega Man Legacy Collection
## 7723                                                                                                    Predator: Concrete Jungle
## 7724                                                                                     Beyblade: Metal Fusion - Battle Fortress
## 7725                                                                                                           WipeOut 3 The Game
## 7726                                                                                                         Big Mutha Truckers 2
## 7727                                                                                                               Shutter Island
## 7728                                                                                      The Naked Brothers Band: The Video Game
## 7729                                                                                                                   Demon Gaze
## 7730                                                                                                          Zombie Army Trilogy
## 7731                                                                                                             NHL FaceOff 2001
## 7732                                                                                               Mana Khemia 2: Fall of Alchemy
## 7733                                                                                                             The Great Escape
## 7734                                                                                                 Dexter's Lab Chess Challenge
## 7735                                                                                                                    Nostalgia
## 7736                                                                                                                DiRT Showdown
## 7737                                                                                           Iron Chef America: Supreme Cuisine
## 7738                                                                                                      Arcade Shooting Gallery
## 7739                                                                                                    The Rise of the Argonauts
## 7740                                                                                                           Big Mutha Truckers
## 7741                                                                                                   ESA Foundation Compilation
## 7742                                                                                                                   The Hobbit
## 7743                                                                                                      The King of Fighters XI
## 7744                                                                                                               Ninja Gaiden 3
## 7745                                                                                                            Metro: Last Light
## 7746                                                                                 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 7747                                                                                                    Silent Hill HD Collection
## 7748                                                                                                               Bound By Flame
## 7749                                                                                                         Conflict: Denied Ops
## 7750                                                                                                        Saw II: Flesh & Blood
## 7751                                                                                               Ice Age: Dawn of the Dinosaurs
## 7752                                                                                                                 Sniper Elite
## 7753                                                                                                            Arc Rise Fantasia
## 7754                                                                                              Ni Hao, Kai-lan: Super Game Day
## 7755                                                                     Kouchuu Ouja Mushi King: Greatest Champion e no Michi DS
## 7756                                                                                                   Dynasty Warriors: Gundam 2
## 7757                                                                                                    Petz Pony: Beauty Pageant
## 7758                                                                                                               Parlor! Mini 4
## 7759                                                                                                            Breath of Fire II
## 7760                                                                                                    The Spiderwick Chronicles
## 7761                                                                                               Danganronpa 2: Goodbye Despair
## 7762                                                                                                           Aliens vs Predator
## 7763                                                                                                      Ice Age 2: The Meltdown
## 7764                                                                                                                  Steins;Gate
## 7765                                                                                                               Enchanted Arms
## 7766                                                                                             Dinotopia: The Timestone Pirates
## 7767                                                                                                      Power Pro Kun Pocket 12
## 7768                                                                                            J-League Jikkyou Winning Eleven 3
## 7769                                                                                                     The Sims 4: Get Together
## 7770                                                                                                 Jissen Pachi-Slot Hisshouhou
## 7771                                                                                                  Pac-Man & Galaga Dimensions
## 7772                                                                                                               Quantum Theory
## 7773                                                                                                                      Manhunt
## 7774                                                                                                         NCAA Final Four 2003
## 7775                                                                                                   Air Conflicts: Secret Wars
## 7776                                                                                                                          Rio
## 7777                                                                                                                  Dream Salon
## 7778                                                                                                           Scene It? Twilight
## 7779                                                                                                                   Disgaea DS
## 7780                                                                    Peter Jackson's King Kong: The Official Game of the Movie
## 7781                                                                                                     Space Invaders Extreme 2
## 7782                                                                                                     X-Men Origins: Wolverine
## 7783                                                          Great Phoenix Wright: Ace Attorney - Naruhodou Ryuunosuke no Bouken
## 7784                                                                                                 Mystery Tales of Time Travel
## 7785                                                                                                    J-League Excite Stage '96
## 7786                                                                                                                        Risen
## 7787                                                                                            Hidden Mysteries: Vampire Secrets
## 7788                                                                                                                New Love Plus
## 7789                                                                                                             Final Fantasy XI
## 7790                                                                                               Breath of Fire: Dragon Quarter
## 7791                                                                                             Jikkyou J-League Perfect Striker
## 7792                                                                                                              Dante's Inferno
## 7793                                                                                                         Shrek: Forever After
## 7794                                                                                                 Rock Band Country Track Pack
## 7795                                                                                       Super Robot Taisen: Scramble Commander
## 7796                                                                                                                      Re-Volt
## 7797                                                                                   Conception II: Children of the Seven Stars
## 7798                                                                                                                      Descent
## 7799                                                                                                          Supreme Commander 2
## 7800                                                                                                                 DanceMasters
## 7801                                                                                                   50 Cent: Blood on the Sand
## 7802                                                                                Disney's Magical Mirror Starring Mickey Mouse
## 7803                                                                                                      Need for Speed: The Run
## 7804                                                                                                                 Jeep Thrills
## 7805                                                                                                         Conflict: Denied Ops
## 7806                                                                                                                  FaceBreaker
## 7807                                                                                                   Major League Baseball 2K12
## 7808                                                                                               Might & Magic: Clash of Heroes
## 7809                                                                                Avatar: The Last Airbender - Into the Inferno
## 7810                                                                                           IHRA Professional Drag Racing 2005
## 7811                                                                                                  Mace Griffin: Bounty Hunter
## 7812                                                                                                     Legacy of Kain: Defiance
## 7813                                                                         Story of Seasons: Good Friends of the Three Villages
## 7814                                                                                                     Chaotic: Shadow Warriors
## 7815                                                                                               Majin and the Forsaken Kingdom
## 7816                                                                                                     Trivial Pursuit unhinged
## 7817                                                                                       Tales of the World: Narikiri Dungeon 2
## 7818                                                                                             Spider-Man: Shattered Dimensions
## 7819                                                                                           Aliens versus Predator: Extinction
## 7820                                                                                                           Plants vs. Zombies
## 7821                                                                                                                  NBA Live 14
## 7822                                                                                              Silent Scope 2: Dark Silhouette
## 7823                                                                                                   Dave Mirra Freestyle BMX 2
## 7824                                                                                   Jikkyou Powerful Pro Yakyuu '96 Kaimakuban
## 7825                                                                                      Tokimeki Memorial Girl's Side 3rd Story
## 7826                                                                                                                 NHL Hitz Pro
## 7827                                                                                        Tom Clancy's Splinter Cell: Blacklist
## 7828                                                                                                               Allied General
## 7829                                                                                                          Fire ProWrestling G
## 7830                                                                                                    Kamen Rider: Battride War
## 7831                                                                                                                Binary Domain
## 7832                                                                                                IL-2 Sturmovik: Birds of Prey
## 7833                                                                                                       Farming Simulator 2015
## 7834                                                                                                     Armored Core: For Answer
## 7835                                                                                             Mahjong: Journey Quest for Tikal
## 7836                                                                                                 uDraw Studio: Instant Artist
## 7837                                                                                                        Naruto: Ninja Destiny
## 7838                                                                                                                   GunGriffon
## 7839                                                                                                           SingStar Pop Vol.2
## 7840                                                                                                   SNK Arcade Classics Vol. 1
## 7841                                                                                                               Darkstalkers 3
## 7842                                                                                            SpongeBob's Surf & Skate Roadtrip
## 7843                                                                                                                    Frequency
## 7844                                                                                                                    Death Jr.
## 7845                                                                                                            Cars: Race-O-Rama
## 7846                                                                                          Inazuma Eleven Strikers 2012 Xtreme
## 7847                                                                                                            The Polar Express
## 7848                                                                                                          2002 FIFA World Cup
## 7849                                                                                                                Kan Colle Kai
## 7850                                                                                                   SpongeBob SquigglePants 3D
## 7851                                                                                                  Jampack: Summer 2003 (RP-T)
## 7852                                                                                            Need for Speed: Shift 2 Unleashed
## 7853                                                                                                     Monster 4x4: Stunt Racer
## 7854                                                                                        Frogger's Adventures 2: The Lost Wand
## 7855                                                                                                                       Sudeki
## 7856                                                                                                        Rango: The Video Game
## 7857                                                                                     The Amazing Spider-Man (Console Version)
## 7858                                                 Boku no Natsuyasumi 4: Seitouchi Shounen Tanteidan, Boku to Himitsu no Chizu
## 7859                                                                                     Hyperdevotion Noire: Goddess Black Heart
## 7860                                                                                                                        Hexen
## 7861                                                                                                           Mace: The Dark Age
## 7862                                                                                                         AeroFighters Assault
## 7863                                                                                                             Puyo Puyo Sun 64
## 7864                                                                          Chou-Kuukan Night Pro Yakyuu King (weekly JP sales)
## 7865                                                                                                                        Quake
## 7866                                                                                         Sesame Street: Elmo's Number Journey
## 7867                                                                                                         Disney Magic World 2
## 7868                                                                                                             Squeeballs Party
## 7869                                                                                         Tottadoo! Yoiko no Mujintou Seikatsu
## 7870                                                                                         Where's Waldo? The Fantastic Journey
## 7871                                                                                           Family Game Night 4: The Game Show
## 7872                                                                                 Teenage Mutant Ninja Turtles 2: Battle Nexus
## 7873                                                                                                                Saints Row IV
## 7874                                                                                                               Fighter Within
## 7875                                                                                         Barbie Horse Adventures: Riding Camp
## 7876                                                                                                                   SSX Tricky
## 7877                                                                                              Kenka Banchou 4: Ichinen Sensou
## 7878                                                                                          Warhammer: Shadow of the Horned Rat
## 7879                                                                                                        Shadows of the Damned
## 7880                                                                                                                     NBA 2K11
## 7881                                                                                                  Pro Yakyuu Team o Tsukurou!
## 7882                                                                                                    Warriors: Legends of Troy
## 7883                                                                                                                    Jeopardy!
## 7884                                                                                             ESPN International Track & Field
## 7885                                                                                                                 Lunar Legend
## 7886                                                                                                      Conflict: Global Terror
## 7887                                                                                                           Valhalla Knights 3
## 7888                                                                                                         Tamagotchi Party On!
## 7889                Hisshou Pachinko*Pachi-Slot Kouryaku Series Vol. 5: CR Shinseiki Evangelion * Pachi-Slot Shinseiki Evangelion
## 7890                                                                                                        Brunswick Pro Bowling
## 7891                                                                                                    Shaun White Skateboarding
## 7892                                                                                                                         Hulk
## 7893                                                                              The Heavy Rain and Beyond: Two Souls Collection
## 7894                                                                                         Cabela's Survival: Shadows of Katmai
## 7895                                                                                                    Shaun White Skateboarding
## 7896                                                                                                                       Boogie
## 7897                                                                                                                     Gungrave
## 7898                                                                                                       Phantasy Star Universe
## 7899                                                                                                              Transworld Surf
## 7900                                                                                                       God Eater Resurrection
## 7901                                                                                                        Tenchu: Fatal Shadows
## 7902                                                                                           Active Health with Carol Vorderman
## 7903                                                                                                            Escape The Museum
## 7904                                                                                         The Legend of Spyro: A New Beginning
## 7905                                                                                                         International Soccer
## 7906                                                                                                      Sing4: The Hits Edition
## 7907                                                                                               Jewel Master: Cradle of Athena
## 7908                                                                                               Princess Maker: Yumemiru Yosei
## 7909                                                                                                 Action Man-Operation Extreme
## 7910                                                                                                                      Big Air
## 7911                                                                                                             Shining Force II
## 7912                                                                                                                 Gallop Racer
## 7913                                                                                     Harry Potter and the Prisoner of Azkaban
## 7914                                                                                                             NASCAR Unleashed
## 7915                                                                                            3rd Super Robot Wars Z Jigoku Hen
## 7916                                                                                                 Sudoku Gridmaster (JP sales)
## 7917                                                                                                      Dynasty Warriors Gundam
## 7918                                                                                            Taiko no Tatsujin: Wii U Version!
## 7919                                                                                                          Monsters vs. Aliens
## 7920                                                                                                        CSI: Fatal Conspiracy
## 7921                                                                                                                 College Slam
## 7922                                                                                                            Arcania: Gothic 4
## 7923                                                                                                 Mushroom Men: The Spore Wars
## 7924                                                                                                           Zumba Fitness Rush
## 7925                                                                                                          Pro Yaky? Spirits 4
## 7926                                                                                                                   Pictionary
## 7927                                                                                                          SoulCalibur Legends
## 7928                                                                                                      Daigasso! Band Brothers
## 7929                                                                                                            Rise of the Kasai
## 7930                                                                                                         Thoroughbred Breeder
## 7931                                                                                                                      F1 2011
## 7932                                                                                                     Momotarou Dentetsu World
## 7933                                                                                                    Nobunaga no Yabou: Souzou
## 7934                                                                                                  Doctor Who: Return to Earth
## 7935                                                                                                               The Munchables
## 7936                                                                                                                     We Dance
## 7937                                                                                                      Chibi-Robo! Park Patrol
## 7938                                                                                                                         Bolt
## 7939                                                                                                     Singstar: Ultimate Party
## 7940                                                                                                           Mathews Bowhunting
## 7941                                                                                          3rd Super Robot Wars Z: Tengoku-Hen
## 7942                                                                                               One Piece: Unlimited Adventure
## 7943                                                                                  Remington Super Slam Hunting: North America
## 7944                                                                                                      Crash & Spyro Superpack
## 7945                                                                                       Earth Defense Force: Insect Armageddon
## 7946                                                                                                                Face Training
## 7947                                                                                                      Super Puzzle Fighter II
## 7948                                                                                                              ThunderStrike 2
## 7949                                                                                                  Disney's Meet the Robinsons
## 7950                                                                                                   Call of Duty: World at War
## 7951                                                                                                       Pro Yaky? Spirits 2012
## 7952                                                                                                                    Kuma-Tomo
## 7953                                                                                                       Super Real Mahjong P V
## 7954                                                                                             Thomas the Tank Engine & Friends
## 7955                                                                                                          Grand Slam Tennis 2
## 7956                                                                                      Penguin no Mondai X: Tenkuu no 7 Senshi
## 7957                                                                                           The Scorpion King: Sword of Osiris
## 7958                                                                                                                     Bubsy 3D
## 7959                                                                                                     Reel Fishing Paradise 3D
## 7960                                                                                                         NCAA Final Four 2001
## 7961                                                                                                                    Farmtopia
## 7962                                                                                            Robin Hood: Defender of the Crown
## 7963                                                                                                                 SD Gundam GX
## 7964                                                                                                                 R-Type Final
## 7965                                                                              Jackie Chan Adventures: Legend of the Dark Hand
## 7966                                                                                                                       MotoGP
## 7967                                                                                                                 Sega GT 2002
## 7968                                                                               Ty the Tasmanian Tiger 3: Night of the Quinkan
## 7969                                                                                                   WWE SmackDown vs. Raw 2009
## 7970                                                                                                    Pro Evolution Soccer 2014
## 7971                                                                                                  Samurai Warriors 2: Empires
## 7972                                                                                                                 Blood Omen 2
## 7973                                                                                                         Jurassic: The Hunted
## 7974                                                                                       J-League Pro Soccer Club o Tsukurou! 5
## 7975                                                                                            Harry Potter: Quidditch World Cup
## 7976                                                                                                     Dance Central: Spotlight
## 7977                                                                                                 Little Battlers eXperience W
## 7978                                                                                                  Magical Starsign (US sales)
## 7979                                                                                                      Tekken Tag Tournament 2
## 7980                                                                                                   Hot Wheels: Battle Force 5
## 7981                                                                                                  Dragon Blade: Wrath of Fire
## 7982                                                                                                          La Pucelle: Tactics
## 7983                                                                                                           Phantasy Star Nova
## 7984                                                                                          SBK X: Superbike World Championship
## 7985                                                                                               Samurai Warriors: State of War
## 7986                                                                                                      Tiger Woods PGA Tour 07
## 7987                                                                                                               Call of Juarez
## 7988                                                                                    Star Wars: The Clone Wars & Tetris Worlds
## 7989                                                                                                                 The Bee Game
## 7990                                                                                       EverQuest Online Adventures: Frontiers
## 7991                                                                                         Cabela's Survival: Shadows of Katmai
## 7992                                                                                                      NBA Ballers: Chosen One
## 7993                                                                                                                WWE All Stars
## 7994                                                                                                        Treasures of the Deep
## 7995                                                                                                  Phantasy Star Online Ver. 2
## 7996                                                                                                             EyePet & Friends
## 7997                                                                                      The Lord of the Rings: War in the North
## 7998                                                                                                   Major League Baseball 2K10
## 7999                                                                                                                   Fight Club
## 8000                                                                                             Hello Kitty: Birthday Adventures
## 8001                                                                                                                    Syndicate
## 8002                                                                                       Dance Dance Revolution: Disney Grooves
## 8003                                                                                                                  Pure Futbol
## 8004                                                                               Harvest Moon: A Wonderful Life Special Edition
## 8005                                                                                        Sports Illustrated for Kids: Football
## 8006                                                                                                           The Last Airbender
## 8007                                                                                                                Happy Cooking
## 8008                                                                                  .hack//Quarantine Part 4: The Final Chapter
## 8009                                                                                                 Close Combat: First to Fight
## 8010                                                                                                                    MotoGP 14
## 8011                                                                                         Indiana Jones and the Emperor's Tomb
## 8012                                                                                                                  NBA Live 08
## 8013                                                                                       Buffy the Vampire Slayer: Chaos Bleeds
## 8014                                                                                                             Half-Minute Hero
## 8015                                                                                                Rock Band Track Pack Volume 2
## 8016                                                                                                              Reel Fishing II
## 8017                                                                                    Ringling Bros. and Barnum & Bailey Circus
## 8018                                                                                                 The Walking Dead: Season One
## 8019                                                                                                       Ty the Tasmanian Tiger
## 8020                                                                                                                Dead or Alive
## 8021                                                                                                       Driving Emotion Type-S
## 8022                                                                                                                        Siren
## 8023                                                               The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 8024                                                                                                                         NARC
## 8025                                                                                    Naruto Shippuden: Dragon Blade Chronicles
## 8026                                                                                                  Dynasty Warriors 8: Empires
## 8027                                                                                                         Super Robot Taisen J
## 8028                                                                                                                       Evolve
## 8029                                                                                                                Nep League DS
## 8030                                                                                          Ar tonelico 2: Melody of Metafalica
## 8031                                                                                                                    de Blob 2
## 8032                                                                                                         Lips: Party Classics
## 8033                                                                                             Casper: Friends Around the World
## 8034                                                                                                                  Borderlands
## 8035                                                                                             Jurassic Park III: Island Attack
## 8036                                                                                                     Chaotic: Shadow Warriors
## 8037                                                                                                 Ghostbusters: The Video Game
## 8038                                                                                                                 GameBoy Wars
## 8039                                                                                                                    Amplitude
## 8040                                                                                                            Alone in the Dark
## 8041                                                                                                 Company of Heroes: Anthology
## 8042                                                                                                                     Shape Up
## 8043                                                                                                      Gauntlet: Seven Sorrows
## 8044                                                                                                         AirForce Delta Storm
## 8045                                                                                                               Happy Feet Two
## 8046                                                                                                               Monopoly Party
## 8047                                                                                                   Fear Effect 2: Retro Helix
## 8048                                                                                                     How to Train Your Dragon
## 8049                                                                                                                  Remember Me
## 8050                                                                        International Superstar Soccer 2000 (JP weekly sales)
## 8051                                                                                    Chocobo no Fushigi Dungeon for WonderSwan
## 8052                                                                                                   Klonoa: Door to Phantomile
## 8053                                                                                                        Vietcong: Purple Haze
## 8054                                                                                                           Hitman: HD Trilogy
## 8055                                                                                                    Atari Anniversary Advance
## 8056                                                                                     Summer Athletics: The Ultimate Challenge
## 8057                                                                                                        Driver: San Francisco
## 8058                                                                                                            Metal Gear Ac!d 2
## 8059                                                                                 Hatsune Miku and Future Stars: Project Mirai
## 8060                                                                                                                    Let's TAP
## 8061                                                                                                     X-Men Origins: Wolverine
## 8062                                                                                                              TalkMan (Japan)
## 8063                                                                                                      Cabela's Adventure Camp
## 8064                                                                                                       LEGO Marvel's Avengers
## 8065                                                                                                     Bloody Roar: Primal Fury
## 8066                                                                                                              Shrek SuperSlam
## 8067                                                                                                              We Sing UK Hits
## 8068                                                                                                              Mega Man Soccer
## 8069                                                                                     The Chronicles of Narnia: Prince Caspian
## 8070                                                                                                               ZhuZhu Puppies
## 8071                                                                                                     Rabbids Party Collection
## 8072                                                                                                             Trinity Universe
## 8073                                                                                                                  Jewel Match
## 8074                                                                                                               FIFA Soccer 07
## 8075                                                                    Dungeon Travelers 2: The Royal Library & The Monster Seal
## 8076                                                                                                                  Dying Light
## 8077                                                                                          Vampire Savior: The Lord of Vampire
## 8078                                                                 Pokémon I Choose You / Squirtle Squad Game Boy Advance Video
## 8079                                                                                                        Super Robot Taisen UX
## 8080                                                                                                           Six Flags Fun Park
## 8081                                                                                                Test Drive Off-Road Wide Open
## 8082                                                                                                        Guilty Gear Xrd: Sign
## 8083                                                                                                       Pro Yaky? Spirits 2011
## 8084                                                                                    Ben 10 Ultimate Alien: Cosmic Destruction
## 8085                                                                                                Dengeki Bunko Fighting Climax
## 8086                                                                                 Battle Commander: Hachibushu Shura no Heihou
## 8087                                                                                                               Happy Feet Two
## 8088                                                                                                     Odin Sphere: Leifthrasir
## 8089                                                                                                     Bad Boys: Miami Takedown
## 8090                                                                                                               Jampack Vol. 1
## 8091                                                                                                    Spider-Man: Friend or Foe
## 8092                                                                                                  Mega Man X: Command Mission
## 8093                                                                                                     Tokyo Xtreme Racer DRIFT
## 8094                                                                                                                         Moon
## 8095                                                                                                               FIFA Soccer 11
## 8096                                                                                                     LEGO Marvel Super Heroes
## 8097                                                                                     Cabela's Big Game Hunter 2005 Adventures
## 8098                                                                                                               Disney Friends
## 8099                                                                                       Sesame Street: Elmo's Letter Adventure
## 8100                                                                                                                      Re-Volt
## 8101                                                                                                             Gokujou Parodius
## 8102                                                                                                      Hyperdimension Neptunia
## 8103                                                                                                        Gauntlet: Dark Legacy
## 8104                                                                                          A.C.E.: Another Century's Episode 2
## 8105                                                                                                             Guitar Hero Live
## 8106                                                                                                          Shadow The Hedgehog
## 8107                                                                                                        Ridge Racer Unbounded
## 8108                                                                                                              Burnout Legends
## 8109                                                                                           Horrid Henry: Missions of Mischief
## 8110                                                                                                            Batman: Vengeance
## 8111                                                                                                     Full Auto 2: Battlelines
## 8112                                                                Soccer Tsuku Tokudai Gou: J-League Pro Soccer Club o Tsukurou
## 8113                                                                                             The Adventures of Cookie & Cream
## 8114                                                                                                                  Van Helsing
## 8115                                                                                                     Aliens: Colonial Marines
## 8116                                                                                                                Splatterhouse
## 8117                                                                                                                     MindJack
## 8118                                                                                                                Dark Souls II
## 8119                                                                                                    Daigasso! Band Brothers P
## 8120                                                                                                                          Gun
## 8121                                                                                                World of Outlaws: Sprint Cars
## 8122                                                                                        Marvel Super Hero Squad: Comic Combat
## 8123                                                                                                              SingStar Motown
## 8124                                                                                                Cabela's Legendary Adventures
## 8125                                                                                                                 F1 Challenge
## 8126                                                                                               Transformers: Dark of the Moon
## 8127                                                                                                               Shadow Madness
## 8128                                                                                     Tom Clancy's Ghost Recon: Future Soldier
## 8129                                                                                                    Tiger Woods PGA Tour 2004
## 8130                                                                                                          Aliens: Infestation
## 8131                                                                                                                        Brink
## 8132                                                                                          The Game of Life / Yahtzee / Payday
## 8133                                                                                            American Chopper 2: Full Throttle
## 8134                                                                                                   Dynasty Warriors: Gundam 3
## 8135                                                                                                                      FIFA 16
## 8136                                                                                                      Silent Hill 4: The Room
## 8137                                                                                                      Heavy Fire: Afghanistan
## 8138                                                                                                  Commandos 2: Men of Courage
## 8139                                                                                                                  Doom (2016)
## 8140                                                                                                Chuck E. Cheese's Party Games
## 8141                                                                                                    Pro Evolution Soccer 2013
## 8142                                                                                         Pirates: Hunt For Blackbeard's Booty
## 8143                                                                                                             FIFA Soccer 2002
## 8144                                                                                                              Godzilla (2015)
## 8145                                                                                                                     Race Pro
## 8146                                                                                              Atari Anniversary Edition Redux
## 8147                                                                                                  Toukiden: The Age of Demons
## 8148                                                                                                                    Fireblade
## 8149                                                                                                  Mercury Meltdown Revolution
## 8150                                                                                                      Disney's Tarzan Untamed
## 8151                                                                                                               WordJong Party
## 8152                                                                                                Brunswick Circuit Pro Bowling
## 8153                                                                                                Cabela's Dangerous Hunts 2009
## 8154                                                                                                              Velvet Assassin
## 8155                                                                                                                Ball Breakers
## 8156                                                                          Mobile Suit Gundam Seed Destiny: Generation of C.E.
## 8157                                                                                                               EyeToy: Groove
## 8158                                                                                       Atsumare! Power Pro Kun no DS Koushien
## 8159                                                                                             Disgaea 4: A Promise Unforgotten
## 8160                                                                                            Charlie and the Chocolate Factory
## 8161                                                                                                     Armored Core: Last Raven
## 8162                                                                                                      Tomb Raider: Underworld
## 8163                                                                                               All Grown Up! Express Yourself
## 8164                                                                                                            College Hoops 2K7
## 8165                                                                                                         K-1 World Grand Prix
## 8166                                                                                                                     Skate it
## 8167                                                                               Kidou Senshi Gundam: Senjou no Kizuna Portable
## 8168                                                                                                     My Healthy Cooking Coach
## 8169                                                                                                Super Robot Taisen A Portable
## 8170                                                                                                                       Juiced
## 8171                                                                                                 Looney Tunes: Back in Action
## 8172                                                                                                                Virtua Tennis
## 8173                                                                                                         Tales of the Tempest
## 8174                                                                                                   SimCity Creator (JP sales)
## 8175                                                                                                 Biohazard: Revival Selection
## 8176                                                                                                   Sonic Riders: Zero Gravity
## 8177                                                                                                        Driver: San Francisco
## 8178                                                                                                           UFC: Sudden Impact
## 8179                                                                                                     Shawn Johnson Gymnastics
## 8180                                                                                                                    NBA Hoopz
## 8181                                                                                               Captain America: Super Soldier
## 8182                                                                                                              TRON: Evolution
## 8183                                                                                                              Pac-Man World 3
## 8184                                                                                                   ESPN X Games Skateboarding
## 8185                                                                                             Nancy Drew: The Hidden Staircase
## 8186                                                                                                     Brunswick Cosmic Bowling
## 8187                                                                                                    Star Wars: Battlefront II
## 8188                                                                                                               Speedball 2100
## 8189                                                                                       LEGO Island 2: The Brickster's Revenge
## 8190                                                                                                            College Hoops 2K8
## 8191                                                                                                                      FIFA 17
## 8192                                                                                                 Fancy Nancy: Tea Party Time!
## 8193                                                                                                          Backyard Basketball
## 8194                                                                                                                Madden NFL 09
## 8195                                                                                                         Scooby-Doo! Unmasked
## 8196                                                                                                               Summon Night 4
## 8197                                                                                                          Pro Yaky? Spirits 5
## 8198                                                                                                                     NHL 2004
## 8199                                                                                               Namco Museum: 50th Anniversary
## 8200                                                                                                          You Don't Know Jack
## 8201                                                                               Marvel Super Hero Squad: The Infinity Gauntlet
## 8202                                                                                                                      NFL 2K2
## 8203                                                                                                              My French Coach
## 8204                                                                                                     Camp Rock: The Final Jam
## 8205                                                                                                               Happy Feet Two
## 8206                                                                                                         Castlevania Judgment
## 8207                                                                                                       Dead or Alive Paradise
## 8208                                                                                                The Suffering: Ties That Bind
## 8209                                                                                                  Disney Sing It: Family Hits
## 8210                                                                                                           Ashes Cricket 2009
## 8211                                                                                                              EyeToy: Kinetic
## 8212                                                                                                        Petz: Horseshoe Ranch
## 8213                                                                                                   Army Men: Sarge's Heroes 2
## 8214                                                                                                                    Stormrise
## 8215                                                                                          Yu-Gi-Oh! Zexal World Duel Carnival
## 8216                                                                                    Winning Eleven: Pro Evolution Soccer 2007
## 8217                                                                                        Green Lantern: Rise of the Manhunters
## 8218                                                                                    Monkey Island: Special Edition Collection
## 8219                                                                   Broken Sword: Shadows of the Templars - The Director's Cut
## 8220                                                                                      The Wild Thornberrys: Animal Adventures
## 8221                                                                                                                 MotoGP 10/11
## 8222                                                                                           Jikkyou Powerful Pro Baseball 2016
## 8223                                                                                                       SEGA Bass Fishing Duel
## 8224                                                                                                    Luminous Arc 2 (JP sales)
## 8225                                                                                  Hyperdimension Neptunia U: Action Unleashed
## 8226                                                                                        Sports Illustrated for Kids: Baseball
## 8227                                                                                                             Fairytale Fights
## 8228                                                                                                Mark Davis Pro Bass Challenge
## 8229                                                                                                        Rugrats: Royal Ransom
## 8230                                                                                                  Warriors of Might and Magic
## 8231                                                                                                                  Open Season
## 8232                                                                                     The Chronicles of Narnia: Prince Caspian
## 8233                                                                                                 Back to the Future: The Game
## 8234                                                                                                                Project Spark
## 8235                                                                                        Backyard Sports Football: Rookie Rush
## 8236                                                                                                    Street Fighter: The Movie
## 8237                                                                                                               Lost in Blue 3
## 8238                                                                                                     World Championship Poker
## 8239                                                                                                         Global Defence Force
## 8240                                                                                                   Rapala Fishing Frenzy 2009
## 8241                                                                                                    Major League Baseball 2K6
## 8242                                                                                                    Major League Baseball 2K9
## 8243                                                                                  SaGa 2: Hihou Densetsu - Goddess of Destiny
## 8244                                                                                            Smash Court Tennis Pro Tournament
## 8245                                                                                                           The Cursed Crusade
## 8246                                                                                                         Super Robot Taisen L
## 8247                                                                                         The Grim Adventures of Billy & Mandy
## 8248                                                                                                        NBA Inside Drive 2004
## 8249                                                                                                     The King of Fighters '97
## 8250                                                                                                            Dungeon Siege III
## 8251                                                                                      Cabela's Big Game Hunter: Hunting Party
## 8252                                                                                                                Time Commando
## 8253                                                                           Professional Fisherman's Tour: Northern Hemisphere
## 8254                                                                                           Iron Chef America: Supreme Cuisine
## 8255                                                                                         Kekkaishi: Karasumori Ayakashi Kidan
## 8256                                                                                                             Gretzky NHL 2005
## 8257                                                                                                                  FaceBreaker
## 8258                                                                                                             Squeeballs Party
## 8259                                                                                                    NCAA Football 09 All-Play
## 8260                                                                                               Yakuza Zero: The Place of Oath
## 8261                                                                                                                   The Hobbit
## 8262                                                                                                             The Secret World
## 8263                                                                                                                      NHL 2K9
## 8264                                                                                                     X-Men: The Official Game
## 8265                                                                                                    True Crime: New York City
## 8266                                                                                             Metal Arms: Glitch in the System
## 8267                                                                                                      PlayStation Move Heroes
## 8268                                                         The Idolm@ster: Shiny Festa - Honey Sound / Funky Note / Groovy Tune
## 8269                                                                                               Ice Age: Dawn of the Dinosaurs
## 8270                                                                                                   ESPN Final Round Golf 2002
## 8271                                                                                                              MDK2 Armageddon
## 8272                                                                                                         Exhibition Volume 02
## 8273                                                                          Watchmen: The End is Nigh - The Complete Experience
## 8274                                                                                                          Fight Night Round 2
## 8275                                                                                                            Sudoku Gridmaster
## 8276                                                                                           Disney's Atlantis: The Lost Empire
## 8277                                                                                                         Power Pro Kun Pocket
## 8278                                                                                                     The King of Fighters '97
## 8279                                                                                             Tamagotchi no Narikiri Challenge
## 8280                                                                                                        Goosebumps HorrorLand
## 8281                                                                                               One Piece: Unlimited World Red
## 8282                                                                           Space Battleship Yamato: Harukanaru Hoshi Iscandar
## 8283                                                                                Sound Novel Evolution 1: Otogirisou Sosei-Hen
## 8284                                                                                                          Dementium: The Ward
## 8285                                                                                             Psi-Ops: The Mindgate Conspiracy
## 8286                                                                                                     SWAT: Global Strike Team
## 8287                                                                                                      Despicable Me: The Game
## 8288                                                                                         MX World Tour Featuring Jamie Little
## 8289                                                                                          Goblin Commander: Unleash the Horde
## 8290                                                                                                Hello Kitty: Happy Party Pals
## 8291                                                                           Ringling Bros. and Barnum & Bailey: Circus Friends
## 8292                                                                                                    Backyard NFL Football '09
## 8293                                                                                      World Destruction League: Thunder Tanks
## 8294                                                                                                 Shin Megami Tensei IV: Final
## 8295                                                                                      Age of Empires III: Complete Collection
## 8296                                                                                         Finding Nemo: Escape to the Big Blue
## 8297                                                                                                        Backyard Baseball '10
## 8298                                                                             Resident Evil Director's Cut: Dual Shock Edition
## 8299                                                                                       The Lord of the Rings: Aragorn's Quest
## 8300                                                                                                                   Top Spin 2
## 8301                                                                                                    N3 II: Ninety-Nine Nights
## 8302                                                                                                     The King of Fighters '95
## 8303                                                                                                                     RoadKill
## 8304                                                                                                         Hanjuku Eiyuu Tai 3D
## 8305                                                                                                .hack//G.U. Vol.3//Redemption
## 8306                                                                                                Chuck E. Cheese's Party Games
## 8307                                                                                        Super Robot Taisen Compact 2 Dai-1-Bu
## 8308                                                                                                 Looney Tunes: Back in Action
## 8309                                                                                                Tak: The Great Juju Challenge
## 8310                                                                                                    Macross Ultimate Frontier
## 8311                                                                                                Cabela's Legendary Adventures
## 8312                                                                                      Jillian Michaels Fitness Ultimatum 2011
## 8313                                                                                               Pursuit Force: Extreme Justice
## 8314                                                                                                    The Daring Game for Girls
## 8315                                                                                               Hunter: The Reckoning Redeemer
## 8316                                                                                                    The Rise of the Argonauts
## 8317                                                                                                                       NHL 07
## 8318                                                                                                    Pro Evolution Soccer 2014
## 8319                                                                                                           Tokyo Xtreme Racer
## 8320                                                                                                                Fighter Maker
## 8321                                                                                                               Bee Movie Game
## 8322                                                                                                    Backyard NFL Football '10
## 8323                                                                                              Professor Heinz Wolff's Gravity
## 8324                                                                                                        Thief: Deadly Shadows
## 8325                                                                                                        Buzz! Brain of the UK
## 8326                                                                                                           NBA 09: The Inside
## 8327                                                                                                          Transformers: Prime
## 8328                                                                                                                Batman Begins
## 8329                                                                                          Transformer: Rise of the Dark Spark
## 8330                                                                                                                       Glover
## 8331                                                                              Dragon Ball GT: Game Boy Advance Video Volume 1
## 8332                                                                                                                      Luxor 3
## 8333                                                                                                                   Bratz Kidz
## 8334                                                                                                             Fairytale Fights
## 8335                                                                                                          Star Trek: Conquest
## 8336                                                                                                                 MotoGP 09/10
## 8337                                                                                                           Mahjong Fight Club
## 8338                                                                                                    World Driver Championship
## 8339                                                                                             Bomberman 64: The Second Attack!
## 8340                                                                                                  Turok 3: Shadow of Oblivion
## 8341                                                                                                            Spawn: Armageddon
## 8342                                                                    Codename: Kids Next Door: Game Boy Advance Video Volume 1
## 8343                                                                                                                 Zoo Hospital
## 8344                                              Pokémon Beach Blank-out Blastoise / Go West Young Meowth Game Boy Advance Video
## 8345                                                                                                            Time and Eternity
## 8346                                                                                                    Major League Baseball 2K9
## 8347                                                                                                       Gundam Assault Survive
## 8348                                                                              Disney TH!NK Fast: The Ultimate Trivia Showdown
## 8349                                                                                                 Fate/Stay Night [Réalta Nua]
## 8350                                                                                                   Disney's Home on the Range
## 8351                                                                                                  Sid Meier's Civilization IV
## 8352                                                                                             Jikkyou Powerful Pro Yakyuu 2013
## 8353                                                                                                           Space Griffon VF-9
## 8354                                                                                                          Family Feud Decades
## 8355                                                                                                                  NBA Live 16
## 8356                                                                                                        CSI: Fatal Conspiracy
## 8357                                                                                                      Solitaire Overload Plus
## 8358                                                                                                   .hack//G.U. Vol.1//Rebirth
## 8359                                                                                                            Gyakuten Saiban 3
## 8360                                                                                                            Tak: Mojo Mistake
## 8361                                                                                                            Gallop Racer 2001
## 8362                                                                                                       Nightmare Creatures II
## 8363                                                                                                       Marble Saga: Kororinpa
## 8364                                                                                                              Fuzion Frenzy 2
## 8365                                                                                                                     Catwoman
## 8366                                                                                                          Monsters vs. Aliens
## 8367                                                                                                     Country Dance: All Stars
## 8368                                                                                                 Garfield: Lasagna World Tour
## 8369                                                                Teenage Mutant Ninja Turtles: Game Boy Advance Video Volume 1
## 8370                                                                                                              Disney's Planes
## 8371                                                                                                               Bomberman Land
## 8372                                                                                                            Bomberman B-Daman
## 8373                                                                                                 Terminator 3: The Redemption
## 8374                                                                                      World Destruction League: Thunder Tanks
## 8375                                                                                                Beat Down: Fists of Vengeance
## 8376                                                                                                                     Reloaded
## 8377                                                                                                                      GiFTPiA
## 8378                                                                                                                    MotoGP 15
## 8379                                                                                                                  SSX On Tour
## 8380                                                                                                       Hot Wheels: Beat That!
## 8381                                                                                                                      G-Force
## 8382                                                                                        James Bond 007: Everything or Nothing
## 8383                                                                                           Naruto Shippuden: Ultimate Ninja 5
## 8384                                                                                                            Shrek Extra Large
## 8385                                                                                                              Final Fantasy V
## 8386                                                                                                       World Tour Soccer 2006
## 8387                                                                                                                  Gunvalkyrie
## 8388                                                                                                            NickToons: Racing
## 8389                                                                                                                  VR Golf '97
## 8390                                                                                           Michael Jackson: The Experience 3D
## 8391                                                                                                           State of Emergency
## 8392                                                                                                  Digimon Story: Cyber Sleuth
## 8393                                                                                                Off-World Interceptor Extreme
## 8394                                                                               Bakugan Battle Brawlers: Defenders of the Core
## 8395                                                                                                                  Disney Golf
## 8396                                                                                      The Naked Brothers Band: The Video Game
## 8397                                                                                                            Custom Robo Arena
## 8398                                                                                          Clock Tower II: The Struggle Within
## 8399                                                                                           Batman Beyond: Return of the Joker
## 8400                                                                                                                    Surf's Up
## 8401                                                                                           Jikkyou Powerful Pro Baseball 2016
## 8402                                                                                                Mega Man Network Transmission
## 8403                                                                                         I'm A Celebrity: Get Me Out of Here!
## 8404                                                                                                                Pursuit Force
## 8405                                                                                                          Densetsu no Stafi 4
## 8406                                           Shin Megami Tensei: Devil Summoner 2 - Raidou Kuzunoha vs. King Abaddon (JP sales)
## 8407                                                                                              Naval Assault: The Killing Tide
## 8408                                                                                        Tokimeki Memorial: Private Collection
## 8409                                                                                                               RC Revenge Pro
## 8410                                                                                                          Valkyria Chronicles
## 8411                                                                                                 Hellboy: The Science of Evil
## 8412                                                                                   Backyard Wrestling: Don't Try This at Home
## 8413                                                                                                                   Zoo Keeper
## 8414                                                                                                        Gauntlet: Dark Legacy
## 8415                                                                                                              Toukiden Kiwami
## 8416                                                                                              Far East of Eden II: Manji Maru
## 8417                                                                                                                Lost Kingdoms
## 8418                                                                                          WRC 2: FIA World Rally Championship
## 8419                                                                                                                   Blood Bowl
## 8420                                                                                                   Matchbox Cross Town Heroes
## 8421                                                                                                               Wolfenstein 3D
## 8422                                                                                                  Nobunaga no Yabou: Tenshoki
## 8423                                                                                                            Learning to Spell
## 8424                                                                                                 Go, Diego, Go! Safari Rescue
## 8425                                                                                                           Super Power League
## 8426                                                                                                                   Easy Piano
## 8427                                                                                                       Street Fighter Alpha 2
## 8428                                                                                                               Dragon Quest X
## 8429                                                                                                                     Payday 2
## 8430                                                                                                                   25 to Life
## 8431                                                                                      Sumikko Gurashi: Koko ga Ochitsukundesu
## 8432                                                                                                                   NASCAR '15
## 8433                                                                                              TransFormers Animated: The Game
## 8434                                                                                                                     Fracture
## 8435                                                                                                              Sega Superstars
## 8436                                                                                                      Midway Arcade Treasures
## 8437                                                                                          Leisure Suit Larry: Magna Cum Laude
## 8438                                                                                                Mousetrap / Operation / Simon
## 8439                                                                                                                       Klonoa
## 8440                                                                                       Disney's Chicken Little: Ace In Action
## 8441                                                                                                           NBA 09: The Inside
## 8442                                                                                                         Spyro: Shadow Legacy
## 8443                                                                                                                Resident Evil
## 8444                                                                                                                     Wildstar
## 8445                                                                                                         Dragon Ball: Fusions
## 8446                                                                                                          Apache: Air Assault
## 8447                                                                                                       TOEIC Test Training DS
## 8448                                                                                             Jikkyou Powerful Pro Yakyuu 2014
## 8449                                                                                                Senran Kagura: Estival Versus
## 8450                                                                                           Itoi Shigesato no Bass Tsuri No. 1
## 8451                                                                                            Cubivore: Survival of the Fittest
## 8452                                                                                                          The Sims 3: Seasons
## 8453                                                                                                               Anarchy Reigns
## 8454                                                                                                                      FlatOut
## 8455                                                                                            Project X Zone 2: Brave New World
## 8456                                                                                                           NCAA Basketball 09
## 8457                                                                               Bakugan Battle Brawlers: Defenders of the Core
## 8458                                                                                                             Mr. Do!'s Castle
## 8459                                                                                                                   Death Trap
## 8460                                                                                                                 Armor Ambush
## 8461                                                                                                                     Parodius
## 8462                                                                                                   Thrillville: Off the Rails
## 8463                                                                                              Hyperdimension Neptunia Victory
## 8464                                                                                                                   Taz Wanted
## 8465                                                                                         Mobile Suit Gundam: Extreme VS Force
## 8466                                                                                                         Sid Meier's Pirates!
## 8467                                                                                                             MLB 16: The Show
## 8468                                                                                                       Phantasy Star Online 2
## 8469                                                                                Vehicular Combat League presents Motor Mayhem
## 8470                                                                                              PoPoLoCrois: Hajimari no Bouken
## 8471                                                                                               Star Wars: Super Bombad Racing
## 8472                                                                                                               Hamster Heroes
## 8473                                                                                                        Hot Wheels Velocity X
## 8474                                                                                            Ar Nosurge: Ode to an Unborn Star
## 8475                                                                                                     Chaotic: Shadow Warriors
## 8476                                                                                          Leisure Suit Larry: Box Office Bust
## 8477                                                                                                           Alien Resurrection
## 8478                                                                                                       World Tour Soccer 2005
## 8479                                                                                               Dungeon Siege: Throne of Agony
## 8480                                                                          Spider-Man: Web of Shadows - Amazing Allies Edition
## 8481                                                                                                                      F1 2011
## 8482                                                                                                                          Rio
## 8483                                                                                                                  Gunslingers
## 8484                                                                                                                       Create
## 8485                                                                                               Lufia: Curse of the Sinistrals
## 8486                                                                                        El Shaddai: Ascension of the Metatron
## 8487                                                                                                           ESPN College Hoops
## 8488                                                                                                         Thor: God of Thunder
## 8489                                                                                                  F1 Championship Season 2000
## 8490                                                                                                         Guilty Gear Judgment
## 8491                                                                                  Pen 1 Grand Prix: Penguin no Mondai Special
## 8492                                                                                                          Clash of the Titans
## 8493                                                                                                  Around the World in 80 Days
## 8494                                                                                                          Robotech: Battlecry
## 8495                                                                                                              True Swing Golf
## 8496                                                                                                  Zapper: One Wicked Cricket!
## 8497                                                                                                               Bomberman Land
## 8498                                                                                                     Paws & Claws: Pet Resort
## 8499                                                                                                            Kya: Dark Lineage
## 8500                                                                                           Dynasty Warriors 8: Xtreme Legends
## 8501                                                                                                               Curious George
## 8502                                                                                                                  Monster Jam
## 8503                                                                                                               Medieval Games
## 8504                                                                                                                 Stronghold 3
## 8505                                                                                     The Amazing Spider-Man (Console Version)
## 8506                                                                                                  Kid Adventures: Sky Captain
## 8507                                                                                                              Lethal Skies II
## 8508                                                                                     Doctor Lautrec and the Forgotten Knights
## 8509                                                                Disney's American Dragon Jake Long: Attack of the Dark Dragon
## 8510                                                                                                           Godzilla Unleashed
## 8511                                                                                                       Kamaitachi no Yoru × 3
## 8512                                                                                               Tom and Jerry: Infurnal Escape
## 8513                                                                                  The Legend of Heroes VII: The Trail of Zero
## 8514                                                                                                            Warriors Orochi 3
## 8515                                                                                                                 King's Field
## 8516                                                                                            Hannah Montana: Rock Out the Show
## 8517                                                                                                 Let's Ride: Sunshine Stables
## 8518                                                                                                              World Stadium 4
## 8519                                                                                                    Midway Arcade Treasures 2
## 8520                                                                                                        Hot Wheels World Race
## 8521                                                                                                       San Goku Shi Taisen DS
## 8522                                                                                                          Kawa no Nushi Tsuri
## 8523                                                                                                           N2O: Nitrous Oxide
## 8524                                                                                         Magic: The Gathering - Battlegrounds
## 8525                                                                                                           Heroes over Europe
## 8526                                                                                                       Dancing With The Stars
## 8527                                                                                                   Major League Baseball 2K12
## 8528                                                                                                    Pro Evolution Soccer 2015
## 8529                                                                                                        Bladestorm: Nightmare
## 8530                                                                                                                   Otogirisou
## 8531                                                                                                    SD Gundam G Generation 3D
## 8532                                                                                                        Crash Tag Team Racing
## 8533                                                                                                                 Grease Dance
## 8534                                                                                                    Ready 2 Rumble Revolution
## 8535                                                                                                          My Baby 3 & Friends
## 8536                                                                                                                   NASCAR '14
## 8537                                                                                                TimeSplitters: Future Perfect
## 8538                                                                                                    Midway Arcade Treasures 3
## 8539                                                                                                                     Dr. Muto
## 8540                                                                                                            Beowulf: The Game
## 8541                                                                                                      Puzzle Quest: Galactrix
## 8542                                                                                                            DS Rakubiki Jiten
## 8543                                                                         SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 8544                                                                                            Fatal Frame II: Crimson Butterfly
## 8545                                                                                                          Angry Birds Trilogy
## 8546                                                                                                             Dewy's Adventure
## 8547                                                                                                    Shadow Man: 2econd Coming
## 8548                                                                                                   Yu-Gi-Oh! 5D's Tag Force 6
## 8549                                                                                            NPPL: Championship Paintball 2009
## 8550                                                                                                           Dynasty Warriors 4
## 8551                                                                                Wakeboarding Unleashed Featuring Shaun Murray
## 8552                                                                                      The Incredibles: Rise of the Underminer
## 8553                                                                                       Jikkyou Powerful Pro Yakyuu 3 '97 Haru
## 8554                                                                                            Charm Girls Club: My Fashion Mall
## 8555                                                                                                                     The BIGS
## 8556                                                                                                                 Flushed Away
## 8557                                                                                                                       Eragon
## 8558                                                                                             Scarface: Money. Power. Respect.
## 8559                                                                                     Summon Night EX-Thesis: Yoake no Tsubasa
## 8560                                                                                                          Pro Yaky? Spirits 3
## 8561                                                                                                               Silent Scope 3
## 8562                                                                  World Series of Poker: Tournament of Champions 2007 Edition
## 8563                                                                                                             NASCAR Heat 2002
## 8564                                                                                             Namco Classic Fighter Collection
## 8565                                                                                        International Superstar Soccer Deluxe
## 8566                                                                                                                  TNA iMPACT!
## 8567                                                                                                         Intellivision Lives!
## 8568                                                                                                              Field Commander
## 8569                                                                                                                       Robots
## 8570                                                                                     Little League World Series Baseball 2009
## 8571                                                                                                     The King of Fighters XII
## 8572                                                                                                 Doctor Who: Evacuation Earth
## 8573                                                                                                       Murdered: Soul Suspect
## 8574                                                                                                          Ener-G: Dance Squad
## 8575                                                                                                                    Our House
## 8576                                                                                                  SimEarth: The Living Planet
## 8577                                                                                                   Major League Baseball 2K11
## 8578                                                                                             Sengoku Basara: Chronicle Heroes
## 8579                                                                                                                     NBA 2K12
## 8580                                                                                            The Wild Thornberrys: Chimp Chase
## 8581                                                                                                                 Power Stakes
## 8582                                                                                                             Fighters Destiny
## 8583                                                                                                           Asteroids Hyper 64
## 8584                                                                                     The Powerpuff Girls: Chemical X-Traction
## 8585                                                                                   Jikkyou Powerful Pro Yakyuu Basic-han 2001
## 8586                                                                                              Tom and Jerry in Fists of Furry
## 8587                                                                                                                Hydro Thunder
## 8588                                                                                                               Space Invaders
## 8589                                                                                                                 Starcraft 64
## 8590                                                                                                         Destruction Derby 64
## 8591                                                                                                                  Buck Bumble
## 8592                                                                                                             California Speed
## 8593                                                                                 Wonder Project J2: Koruro no Mori no Josette
## 8594                                                                                                                Culdcept SAGA
## 8595                                                                                                Take A Break's: Puzzle Master
## 8596                                                                                                       Dragon Ball: Origins 2
## 8597                                                                                     Minna no DS Seminar: Kanpeki Kanji Ryoku
## 8598                                                                                     Innocent Life: A Futuristic Harvest Moon
## 8599                                                                                                                     The Crew
## 8600                                                                                                         Macross Ace Frontier
## 8601                                                                                                              Black & Bruised
## 8602                                                                                          Sherlock Holmes vs. Jack the Ripper
## 8603                                                                                      .hack//G.U. Vol.2//Reminisce (jp sales)
## 8604                                                                                                           Rapala Pro Fishing
## 8605                                                                                                                    TimeShift
## 8606                                                                                                            Blitz: The League
## 8607                                                                                                         Scripps Spelling Bee
## 8608                                                                                                     MotionSports: Adrenaline
## 8609                                                                                                          Ener-G Horse Riders
## 8610                                                                                                                  Time Hollow
## 8611                                                                                                       Farming Simulator 2013
## 8612                                                                                               Rudolph the Red-Nosed Reindeer
## 8613                                                                                              Shinobido 2: Tales of the Ninja
## 8614                                                                                                  SpongeBob's Truth or Square
## 8615                                                                                      Ghost in the Shell: Stand Alone Complex
## 8616                                                                                                   Rondo of Swords (US sales)
## 8617                                                                                                                  Bulletstorm
## 8618                                                                                                Battle Soccer: Field no Hasha
## 8619                                                                                                    Shaun White Skateboarding
## 8620                                                                                                             MLB 11: The Show
## 8621                                                                                            WRC: FIA World Rally Championship
## 8622                                                                                                                      Amped 3
## 8623                                                                                     Family Party: 30 Great Games Outdoor Fun
## 8624                                                                                                                    FlatOut 2
## 8625                                                                       Naruto: Ultimate Ninja Heroes 2 - The Phantom Fortress
## 8626                                                                                                               FIFA Soccer 96
## 8627                                                                                                                Burger Island
## 8628                                                                                                           Dynasty Warriors 8
## 8629                                                                                                         NCAA Final Four 2001
## 8630                                                                                               Tak and the Guardians of Gross
## 8631                                                                                                     Just Dance: Disney Party
## 8632                                                                                                   LEGO The Lord of the Rings
## 8633                                                                                                Dengeki Bunko Fighting Climax
## 8634                                                                                         J-League Jikkyou Winning Eleven 2000
## 8635                                                                                                            Eve: The Lost One
## 8636                                                                                             Chessmaster: The Art of Learning
## 8637                                                                                                 Yu-Gi-Oh! 5D's: Duel Transer
## 8638                                                                                       LEGO Legends of Chima: Laval's Journey
## 8639                                                                                                          Konami Krazy Racers
## 8640                                                                                                  Saturday Night Slam Masters
## 8641                                                                                                         Blitz: The League II
## 8642                                                                                                            F-Zero: GP Legend
## 8643                                                                                                                Racing Lagoon
## 8644                                                                                             Victorious: Hollywood Arts Debut
## 8645                                                                                                                Mr. Driller 2
## 8646                                                                                                                   Just Sing!
## 8647                                                                                                                Darksiders II
## 8648                                                                                                        Dragon's Lair Trilogy
## 8649                                                                                             Trivial Pursuit: Bet You Know It
## 8650                                                                                                       Imagine: Ice Champions
## 8651                                                                           J-League Pro Soccer Club o Tsukurou! 6: Pride of J
## 8652                                                                                                               Nicktoons: MLB
## 8653                                                                                                        Sniper: Ghost Warrior
## 8654                                                                      Left Brain Right Brain: Use Both Hands Train Both Sides
## 8655                                                                                                                          Rio
## 8656                                                                                                    Power Rangers Double Pack
## 8657                                                                                                                  Mugen Souls
## 8658                                                                                                                Yakuza Kiwami
## 8659                                                              Pachi-Slot Kanzen Kouryaku 3: Universal Koushiki Gaido Volume 3
## 8660                                                        BCFX: The Black College Football Xperience, The Doug Williams Edition
## 8661                                                                                                               FIFA Soccer 97
## 8662                                                                                                        Saw II: Flesh & Blood
## 8663                                                                                                                Psychic Force
## 8664                                                                                                                  Trigger Man
## 8665                                                                                                      Bomberman Land Touch! 2
## 8666                                                                                              Michael Jackson: The Experience
## 8667                                                                                             The Godfather: Blackhand Edition
## 8668                                                                                                                  StarBlade α
## 8669                                                                          Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui
## 8670                                                                                                    Tiger Woods PGA Tour 2004
## 8671                                                                                                                Monster House
## 8672                                                                                                        Angry Birds Star Wars
## 8673                                                                                            Backyard Sports: Sandlot Sluggers
## 8674                                                                                                        Guilty Gear Xrd: Sign
## 8675                                                                                                                  Arcade Zone
## 8676                                                                                                     SpongeBob's Boating Bash
## 8677                                                                                                     7th Dragon III Code: VFD
## 8678                                                                                                                       DiRT 3
## 8679                                                                                                                     Culdcept
## 8680                                                                                                               Birds of Steel
## 8681                                                                                               Rudolph the Red-Nosed Reindeer
## 8682                                                                                                                      WWE '13
## 8683                                                                                           MX 2002 Featuring Ricky Carmichael
## 8684                                                                                                             Halo Triple Pack
## 8685                                                                                                                 Street Racer
## 8686                                                                                                                    Bomberman
## 8687                                                                                                                      NBA 2K3
## 8688                                                                                                                 Arcana Heart
## 8689                                                                                                                     NHL 2005
## 8690                                                                    World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 8691                                                                                                                     Infected
## 8692                                                                                                         Battlestar Galactica
## 8693                                                                                                 The Walking Dead: Season One
## 8694                                                                                   Kingdom Hearts: Birth by Sleep - Final Mix
## 8695                                                                                                            Bust-A-Move Bash!
## 8696                                                                                                                  Block Party
## 8697                                                                                                    Toriko: Gourmet Monsters!
## 8698                                                                                       The Incredible Hulk: The Pantheon Saga
## 8699                                                                                                                Darksiders II
## 8700                                                                                                  Megamind: Ultimate Showdown
## 8701                                                                                                             The Idolm@ster 2
## 8702                                                                                                                   Space Camp
## 8703                                                                                                          Imagine: Music Fest
## 8704                                                                                             AC/DC LIVE: Rock Band Track Pack
## 8705                                                                                         Senran Kagura: Sh?jo-tachi no Shinei
## 8706                                                                                                          Ultimate Spider-Man
## 8707                                                                                           Fist of the North Star: Ken's Rage
## 8708                                                                                                   Record of Agarest War Zero
## 8709                                                                                                   He-Man: Power of Grayskull
## 8710                                                                                                                     WordJong
## 8711                                                                                                                  Putty Squad
## 8712                                                                                                             Polaris SnoCross
## 8713                                                                                       Wing Commander III: Heart of the Tiger
## 8714                                                                                                                   Top Spin 4
## 8715                                                                                        Prince of Persia: The Forgotten Sands
## 8716                                                                                                      Mat Hoffman's Pro BMX 2
## 8717                                                                                                             Muppet RaceMania
## 8718                                                                                                           Namco Museum Vol.5
## 8719                                                                                                               Courier Crisis
## 8720                                                                                                           Bleach: Dark Souls
## 8721                                                                                                             The Oregon Trail
## 8722                                                                                                      Digimon Battle Spirit 2
## 8723                                                                                                               Winning Post 3
## 8724                                                                                              FIFA 06: Road to FIFA World Cup
## 8725                                                                                                                       Driven
## 8726                                                                                                                   F.E.A.R. 3
## 8727                                                                                                                    de Blob 2
## 8728                                                                                               Warhammer 40,000: Fire Warrior
## 8729                                                                                                   Hot Wheels: Battle Force 5
## 8730                                                                                                James Noir's Hollywood Crimes
## 8731                                                                                                           Deadly Premonition
## 8732                                                                                                                    Bomberman
## 8733                                                                                                        MTV Music Generator 2
## 8734                                                                                                               The Quest Trio
## 8735                                                                                                     Chaotic: Shadow Warriors
## 8736                                                                                                       Space Invaders Extreme
## 8737                                                                                                   Burnout 2: Point of Impact
## 8738                                                                                                            Paris-Dakar Rally
## 8739                                                                                                         All-Pro Football 2K8
## 8740                                                                                Dragon Ball Z: Harukanaru Densetsu (JP sales)
## 8741                                                                                                   Atelier Iris: Eternal Mana
## 8742                                                                                             Blinx 2: Masters of Time & Space
## 8743                                                                                                                    Stormrise
## 8744                                                                                                                     NHL 2K10
## 8745                                                                                                                FIFA Street 2
## 8746                                                                                                Tak: The Great Juju Challenge
## 8747                                                                                                                      Deponia
## 8748                                                                                                Harvest Moon: The Lost Valley
## 8749                                                                                                          Knockout Kings 2003
## 8750                                                                                                           NCAA Football 2004
## 8751                                                                                                      XGIII: Extreme G Racing
## 8752                                                                                                                       NHL 17
## 8753                                                                                                        Jewel Quest Solitaire
## 8754                                                                                            Metal Gear Solid V: Ground Zeroes
## 8755                                                                                                              Digimon World 4
## 8756                                                                                                            Cars: Race-O-Rama
## 8757                                                                                        Disney's Story Studio: Disney's Mulan
## 8758                                                                                                                         Klax
## 8759                                                                                                              Pressure Cooker
## 8760                                                                                                             Saturn Bomberman
## 8761                                                           Super Robot Wars OG Saga: Masou Kishin II - Revelation of Evil God
## 8762                                                                                         Jikkyou Powerful Pro Yakyuu Portable
## 8763                                                                                           The Adventures of Tintin: The Game
## 8764                                                                                                             American Chopper
## 8765                                                                                                          Sonny with a Chance
## 8766                                                                                                       Murdered: Soul Suspect
## 8767                                                                                                  Farm Frenzy: Animal Country
## 8768                                                                                                   Kingdom Under Fire: Heroes
## 8769                                                                                                   Wolfenstein: The Old Blood
## 8770                                                                                                 The Terminator: Dawn of Fate
## 8771                                                           Cartoon Network Collection: Game Boy Advance Video Special Edition
## 8772                                                                                   Naruto Shippuden: Legends: Akatsuki Rising
## 8773                                                                                                         Scooby-Doo! Unmasked
## 8774                                                                                                    Streak: Hoverboard Racing
## 8775                                                                                                     Samurai Warriors: Katana
## 8776                                                                                           Project Sylpheed: Arc of Deception
## 8777                                                                                                 Enthusia Professional Racing
## 8778                                                                                                        NCAA GameBreaker 2001
## 8779                                                                                                                Get On Da Mic
## 8780                                                                                                               Heroes of Mana
## 8781                                                                                                         Jurassic: The Hunted
## 8782                                                                                                        Army Men: Sarge's War
## 8783                                                                                                        Horse Life Adventures
## 8784                                                                                                                      Amagami
## 8785                                                                                                      Ice Age 2: The Meltdown
## 8786                                                                                             Jikkyou Powerful Pro Yakyuu 2009
## 8787                                                                                    Blazing Angels 2: Secret Missions of WWII
## 8788                                                                                                    Bigfoot: Collision Course
## 8789                                                                               Marvel Super Hero Squad: The Infinity Gauntlet
## 8790                                                                                                        Kidou Senkan Nadesico
## 8791                                                                                      Tears to Tiara II: Heir of the Overlord
## 8792                                                                                             Frogger's Adventures: The Rescue
## 8793                                                                                      The Incredibles: Rise of the Underminer
## 8794                                                                                                                   Darksiders
## 8795                                                                                  The Secret Saturdays: Beasts of the 5th Sun
## 8796                                                                                                          Countdown: The Game
## 8797                                                                                                         Active Life Explorer
## 8798                                                                                                          MLB Power Pros 2008
## 8799                                                                            The Fairly Odd Parents: Clash with the Anti-World
## 8800                                                                                                     Theatrhythm Dragon Quest
## 8801                                                                                                   Major League Baseball 2K10
## 8802                                                                                                   Naruto: Powerful Shippuden
## 8803                                                                             Disney's The Lion King: Simba's Mighty Adventure
## 8804                                                                                                    Family Party: Fitness Fun
## 8805                                                                                                         Thor: God of Thunder
## 8806                                                                                    Fantastic Four: Rise of the Silver Surfer
## 8807                                                                                                         Metal Slug Anthology
## 8808                                                                                                         GoldenEye 007 (2010)
## 8809                                                                                             Jikkyou Powerful Pro Yakyuu 2012
## 8810                                                                                     All Japan Pro Wrestling featuring Virtua
## 8811                                                                                                               Rudra no Hihou
## 8812                                                                                                             Gundam Breaker 2
## 8813                                                                                          Prince of Persia: The Sands of Time
## 8814                                                                                                      Cake Mania: In The Mix!
## 8815                                                                                                        Zoids: Battle Legends
## 8816                                                                                                    World Series Baseball 2K3
## 8817                                                                                                                  Serious Sam
## 8818                                                                                                               Kowloon's Gate
## 8819                                                                                                                      Killer7
## 8820                                                                                                          Kingdom of Paradise
## 8821                                                                       Hidden Mysteries: Salem Secrets - Witch Trials of 1692
## 8822                                                                                                         NBA Street Homecourt
## 8823                                                                                        The Sims Medieval: Pirates and Nobles
## 8824                                                                                                           The Cursed Crusade
## 8825                                                                                                  Super Monkey Ball Adventure
## 8826                                                                                                  Kids Learn Math: A+ Edition
## 8827                                                                                                             FIFA Soccer 2002
## 8828                                                                                  Build-A-Bear Workshop: Welcome to Hugsville
## 8829                                                                                        Street Fighter Anniversary Collection
## 8830                                                                                  Final Fantasy XI: Vana'diel Collection 2008
## 8831                                                                                                  Suzumiya Haruhi no Yakusoku
## 8832                                                                                                      Shadow Ops: Red Mercury
## 8833                                                                                                              Indigo Prophecy
## 8834                                                                                                                    Mind Zero
## 8835                                                                                                          World League Soccer
## 8836                                                                                                            NBA ShootOut 2001
## 8837                                                                                                     Earth Defense Force 2025
## 8838                                                                                                    Spider-Man: Friend or Foe
## 8839                                                                                               Ultimate Board Game Collection
## 8840                                                                                                                    Syndicate
## 8841                                                                                                    Samurai Shodown Anthology
## 8842                                                                                                           NBA 09: The Inside
## 8843                                                                                                      Musashi: Samurai Legend
## 8844                                                                                                  Saint Seiya: Soldiers' Soul
## 8845                                                                                                                     Terraria
## 8846                                                                                Castlevania: Lords of Shadow - Mirror of Fate
## 8847                                                                                          3rd Super Robot Wars Z: Tengoku-Hen
## 8848                                                                                                      Fantasia: Music Evolved
## 8849                                                                          Pokémon: Johto Photo Finish: Game Boy Advance Video
## 8850                                                                                                                      F1 2001
## 8851                                                                                The Legend of Heroes: Trails of Cold Steel II
## 8852                                                                                                        Top Gun: Combat Zones
## 8853                                                                                                        J-League Victory Goal
## 8854                                                                               Bakugan Battle Brawlers: Defenders of the Core
## 8855                                                                                                 Oreshika: Tainted Bloodlines
## 8856                                                                                             White Knight Chronicles: Origins
## 8857                                                                          Return to PopoloCrois: A Story of Seasons Fairytale
## 8858                                                                       Spongebob Squarepants / Fairly Odd Parents Double Pack
## 8859                                                                                           History Civil War: Secret Missions
## 8860                                                                                                                       NHL 09
## 8861                                                                                                       Mirror's Edge Catalyst
## 8862                                                                                                            Derby Stallion 64
## 8863                                                                                           Doraemon 3: Nobi Dai no Machi SOS!
## 8864                                                                                                 Space Station Silicon Valley
## 8865                                                                                                                    Dark Rift
## 8866                                                                                                                 Tokyo Xanadu
## 8867                                                                                                       All-Star Baseball 2003
## 8868                                                                                                                Burger Island
## 8869                                                                                                       Petz: Dogz Talent Show
## 8870                                                                                                  T'ai Fu: Wrath of the Tiger
## 8871                                                                                                                        Rocky
## 8872                                                                                                                Ford Racing 2
## 8873                                                                                                     Odin Sphere: Leifthrasir
## 8874                                                                                                        Sam & Max: Season One
## 8875                                                                                                              Virtua Tennis 4
## 8876                                                                                                                Tetris Attack
## 8877                                                                                                 Candace Kane's Candy Factory
## 8878                                                                                                                 BloodRayne 2
## 8879                                                                                                       Hot Wheels: Beat That!
## 8880                                                                                                  Soldier of Fortune: Payback
## 8881                                                                                                               Jaws Unleashed
## 8882                                                                                                          Pro Yaky? Spirits 6
## 8883                                                                                               Star Trek: Voyager Elite Force
## 8884                                                                                                     X-Men: The Official Game
## 8885                                                                                                      Brain Boost: Gamma Wave
## 8886                                                                                                 Scarface: The World is Yours
## 8887                                                                                                  Rock Band: Metal Track Pack
## 8888                                                                                                               Chessmaster II
## 8889                                                                                                       All-Star Baseball 2003
## 8890                                                                                                   Scooby-Doo! Mystery Mayhem
## 8891                                                                                                               Winning Post 4
## 8892                                                                                                   Major League Baseball 2K13
## 8893                                                                                                  DreamWorks Super Star Kartz
## 8894                                                                                                    Pro Baseball Spirits 2015
## 8895                                                                                                             187: Ride or Die
## 8896                                                                                                               Curious George
## 8897                                                                        Strawberry Shortcake: Game Boy Advance Video Volume 1
## 8898                                                                                                     Armored Core: For Answer
## 8899                                                                                                                        Geist
## 8900                                                                                               Saru! Get You! Million Monkeys
## 8901                                                                                                                 Cardinal Syn
## 8902                                                                                               Charm Girls Club: Pajama Party
## 8903                                                                                                       Street Fighter Alpha 3
## 8904                                                                               The Wizard of Oz: Beyond The Yellow Brick Road
## 8905                                                                          Mobile Suit Gundam Side Story III: Sabakareshi Mono
## 8906                                                                                                               Ridge Racer DS
## 8907                                                                                                            Warriors Orochi 3
## 8908                                                                                   Nancy Drew: The White Wolf of Icicle Creek
## 8909                                                                                                      Super Street Fighter II
## 8910                                                                                    Metal Gear Solid: Peace Walker HD Edition
## 8911                                                                                                         Battle Stadium D.O.N
## 8912                                                    No.1 Muscle Ranking - Kinniku Banzuke Vol. 2: Aratanarugenkai Enochousen!
## 8913                                                                                                       Brain Boost: Beta Wave
## 8914                                                                                                       Power Pro Kun Pocket 9
## 8915                                                                                                                Rubik's World
## 8916                                                                                                               Gallop & Ride!
## 8917                                                                                                                   Shenmue II
## 8918                                                                                                    Major League Baseball 2K8
## 8919                                                                                                   Capcom Classics Collection
## 8920                                                                                               Fugitive Hunter: War on Terror
## 8921                                                                                    The Incredible Hulk: Ultimate Destruction
## 8922                                                                                            Prince of Persia: The Two Thrones
## 8923                                                                        Ore no Imouto ga Konna ni Kawaii wake ga Nai Portable
## 8924                                                                                                              Baseball Blast!
## 8925                                                                                                              Pac-Man World 3
## 8926                                                                                                 The Walking Dead: Season Two
## 8927                                                                                            Harvest Moon: Hero of Leaf Valley
## 8928                                                                                          Phantasy Star Online Episode I & II
## 8929                                                                                                                      F1 2012
## 8930                                                                                                                 Street Hoops
## 8931                                                                                                        Rayman Raving Rabbids
## 8932                                                                                                         Kung-Fu: High Impact
## 8933                                                                                                   SNK Arcade Classics Vol. 1
## 8934                                                                                      Darkstalkers Chronicle: The Chaos Tower
## 8935                                                                                                                     NHL 2K10
## 8936                                                                                                                Batman Begins
## 8937                                                                                                              Toy Story Racer
## 8938                                                                                                                Yakuza: Ishin
## 8939                                                                                                                      F1 2011
## 8940                                                                                         Disney's Donald Duck: Goin' Quackers
## 8941                                                                                     Mobile Suit Gundam: Perfect One Year War
## 8942                                                                                                                    Galerians
## 8943                                                                                                            Crash: Twinsanity
## 8944                                                                                                                    DrumMania
## 8945                                                                                    Yu-Gi-Oh! Nightmare Troubadour (US sales)
## 8946                                                                                            Code:Realize - Sousei no Himegimi
## 8947                                                                                 Hoppechan: Tsukutte! Asonde! Punipuni Town!!
## 8948                                                                                                     Deus Ex: Mankind Divided
## 8949                                                                                                               Arena Football
## 8950                                                                                               Tamagotchi no Narikiri Channel
## 8951                                                                                                     Power Pro Kun Pocket 1+2
## 8952                                                                                                               Rayman Origins
## 8953                                                                                                         Thor: God of Thunder
## 8954                                                                                                  Medal of Honor: Infiltrator
## 8955                                                                                                         Risen 2: Dark Waters
## 8956                                                                                                              Blazing Dragons
## 8957                                                                                                      Geometry Wars: Galaxies
## 8958                                                                                                     Super Monkey Ball Deluxe
## 8959                                                                            Shin Megami Tensei: Devil Summoner - Soul Hackers
## 8960                                                                                               Shin Chan: ¡Aventuras de Cine!
## 8961                                                                                                             Alien: Isolation
## 8962                                                                                                        High Velocity Bowling
## 8963                                                                                                        Tamagotchi Collection
## 8964                                                                                                             Pac-Man Party 3D
## 8965                                                                         NewU Fitness First Mind Body, Yoga & Pilates Workout
## 8966                                                                                            Backyard Sports: Sandlot Sluggers
## 8967                                                                                                            Turbo Prop Racing
## 8968                                                                                Barbie Superpack: Secret Agent / Groovy Games
## 8969                                                                                                     Tom Clancy's Ghost Recon
## 8970                                                                                       Dance Dance Revolution (North America)
## 8971                                                                               Bakugan Battle Brawlers: Defenders of the Core
## 8972                                                                                                              Mad Dash Racing
## 8973                                                                                                 Dreamworks 2-in-1 Party Pack
## 8974                                                                                                               Summon Night 5
## 8975                                                                                         MotoGP 2: Ultimate Racing Technology
## 8976                                                                                               Black * Rock Shooter: The Game
## 8977                                                                                                     Travel Games For Dummies
## 8978                                                                                                                      BMX XXX
## 8979                                                                                   SafeCracker: The Ultimate Puzzle Adventure
## 8980                                                                                                         Tiger Woods PGA Tour
## 8981                                                                                 Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 8982                                                                               Sonic Advance & Sonic Pinball Party Combo Pack
## 8983                                                                                              Boktai: The Sun is in Your Hand
## 8984                                                                                            Cars: Mater-National Championship
## 8985                                                                                                Making History: The Great War
## 8986                                                                                                     Drawn to Life Collection
## 8987                                                                                                       Guilty Gear X2 #Reload
## 8988                                                                                               Wizardry VII: Gadeia no Houshu
## 8989                                                                                           Dynasty Warriors 8: Xtreme Legends
## 8990                                                                                            Moshi Monsters: Katsuma Unleashed
## 8991                                                                                                               Elf: The Movie
## 8992                                                                                                                 Metal Slug 7
## 8993                                                                                                           MLB SlugFest 20-03
## 8994                                                                                           Tamagotchi no Appare! Niji Venture
## 8995                                                                                                      Grabbed by the Ghoulies
## 8996                                                                                                     Ys: The Oath in Felghana
## 8997                                                                                            Shadow Hearts: From The New World
## 8998                                                                                                          Mega Man Powered Up
## 8999                                                                                                  CSI: 3 Dimensions of Murder
## 9000                                                                                                                    Barbarian
## 9001                                                                                                                    QuickSpot
## 9002                                                                                                     Deception IV: Blood Ties
## 9003                                                                                      Tennis no Oji-Sama: Aim at The Victory!
## 9004                                                                                                                    L.A. Rush
## 9005                                                                               Lunar 2: Eternal Blue(sales, but wrong system)
## 9006                                                                                                    Where the Wild Things Are
## 9007                                                                                                               Pipe Dreams 3D
## 9008                                                                                                          Derby Stallion Gold
## 9009                                                                    Adventure Time: Explore the Dungeon Because I Don't Know!
## 9010                                                                                                               Lost Dimension
## 9011                                                                                                          Fox Sports Golf '99
## 9012                                                                                                         Jurassic: The Hunted
## 9013                                                                                                 Power Rangers: Super Legends
## 9014                                                                                                               Sakura Wars GB
## 9015                                                                                                             Shining Force CD
## 9016                                                                                                                     Rayman 3
## 9017                                                                                                                  Fatal Frame
## 9018                                                                                                            The Fifth Element
## 9019                                                                                                              Kung Fu Panda 2
## 9020                                                                                                              Fast Food Panic
## 9021                                                                                                    Diner Dash: Flo on the Go
## 9022                                                                                                            Adrenalin Misfits
## 9023                                                                                     Okaeri! Chibi-Robo! Happy Richie Oosouji
## 9024                                                                                                                  Wild ARMs 4
## 9025                                                                                                                Haunted House
## 9026                                                                                                                  Ratatouille
## 9027                                                                                                  G.I. Joe: The Rise of Cobra
## 9028                                                                                                    Casper: Spirit Dimensions
## 9029                                                                      Super Robot Taisen OG Saga: Endless Frontier (JP sales)
## 9030                                                                                                      Sengoku Musou 3 Empires
## 9031                                                                                                             Dream Pinball 3D
## 9032                                                                                                          Thunder Truck Rally
## 9033                                                                                                                   Dishonored
## 9034                                                                                                     Klonoa: Empire of Dreams
## 9035                                                                                                  G.I. Joe: The Rise of Cobra
## 9036                                                                                       Dragon Age: Origins - Ultimate Edition
## 9037                                                                                                                  Balloon Pop
## 9038                                                                                     Disney Infinity 2.0: Marvel Super Heroes
## 9039                                                                                                                 Iron & Blood
## 9040                                                                                                          Asphalt: Urban GT 2
## 9041                                                                                Pinball Hall of Fame: The Gottlieb Collection
## 9042                                                                                                                 Second Sight
## 9043                                                                                                     Spider-Man: Edge of Time
## 9044                                                                                                                Monster House
## 9045                                                                                                                Phantom Brave
## 9046                                                                                                                   Just Cause
## 9047                                                                                                                      ArmA II
## 9048                                                                       Championship Motocross 2001 featuring Ricky Carmichael
## 9049                                                                                            Kenka Banchou 5: Otoko no Housoku
## 9050                                                                                Legend of the Guardians: The Owls of Ga'Hoole
## 9051                                                                                                             Doshin the Giant
## 9052                                                                                           Shrek 2 and Shark Tale 2-in-1 Pack
## 9053                                                                                                      Star Ocean: Blue Sphere
## 9054                                                                                                                        Mojo!
## 9055                                                                                      Destroy All Humans! Big Willy Unleashed
## 9056                                                                                          Age of Empires: Collector's Edition
## 9057                                                                                                         Ford Racing Off Road
## 9058                                                                                                            Kamen Rider Ryuki
## 9059                                                                                                    Front Mission Alternative
## 9060                                                                            World Championship Poker: Howard Lederer - All In
## 9061                                                                                                             FIFA Soccer 2005
## 9062                                                                                                                Cave Story 3D
## 9063                                                                                                               The Orange Box
## 9064                                                                                                     Super Dodgeball Brawlers
## 9065                                                                                                Victorious Boxers: Revolution
## 9066                                                                                                      Record of Agarest War 2
## 9067                                                                                   SBK 2011: FIM Superbike World Championship
## 9068                                                                                                                  Power Stone
## 9069                                                                                                       Jonny Moseley Mad Trix
## 9070                                                                                                                  Monster Lab
## 9071                                                                                                 Uta no * Prince-Sama: Repeat
## 9072                                                                                    Senran Kagura Burst: Guren no Sh?jo-tachi
## 9073                                                                                     MTV Music Generator 3: This Is the Remix
## 9074                                                                                                                 Cake Mania 3
## 9075                                                                                                                  .hack//Link
## 9076                                                                                           Terminator 3: Rise of the Machines
## 9077                                                                                       Star Wars: Knights of the Old Republic
## 9078                                                                                                                  SSX On Tour
## 9079                                                                                                  NCAA College Basketball 2K3
## 9080                                                                                                              Class of Heroes
## 9081                                                                                                    Yogi Bear: The Video Game
## 9082                                                                                         Godzilla: Destroy All Monsters Melee
## 9083                                                                     The Legend of Heroes II: Prophecy of the Moonlight Witch
## 9084                                                                                                             Cranium Kabookii
## 9085                                                                                                Hero's Saga Laevatein Tactics
## 9086                                                                                                                         Doom
## 9087                                                                                                             Gundam Breaker 2
## 9088                                                                                                  TRINITY: Souls of Zill O'll
## 9089                                                                                         Mary-Kate and Ashley: Winners Circle
## 9090                                                                                                         PaRappa The Rapper 2
##      Console Year        Genre                              Publisher NA_Sales
## 1        Wii 2006       Sports                               Nintendo    41.49
## 2        NES 1985     Platform                               Nintendo    29.08
## 3        Wii 2008       Racing                               Nintendo    15.85
## 4        Wii 2009       Sports                               Nintendo    15.75
## 5         GB 1996 Role-Playing                               Nintendo    11.27
## 6         GB 1989       Puzzle                               Nintendo    23.20
## 7         DS 2006     Platform                               Nintendo    11.38
## 8        Wii 2006         Misc                               Nintendo    14.03
## 9        Wii 2009     Platform                               Nintendo    14.59
## 10       NES 1984      Shooter                               Nintendo    26.93
## 11        DS 2005   Simulation                               Nintendo     9.07
## 12        DS 2005       Racing                               Nintendo     9.81
## 13        GB 1999 Role-Playing                               Nintendo     9.00
## 14       Wii 2007       Sports                               Nintendo     8.94
## 15       Wii 2009       Sports                               Nintendo     9.09
## 16      X360 2010         Misc                 Microsoft Game Studios    14.97
## 17       PS3 2013       Action                   Take-Two Interactive     7.01
## 18       PS2 2004       Action                   Take-Two Interactive     9.43
## 19      SNES 1990     Platform                               Nintendo    12.78
## 20        DS 2005         Misc                               Nintendo     4.75
## 21        DS 2006 Role-Playing                               Nintendo     6.42
## 22        GB 1989     Platform                               Nintendo    10.83
## 23       NES 1988     Platform                               Nintendo     9.54
## 24      X360 2013       Action                   Take-Two Interactive     9.63
## 25       PS2 2002       Action                   Take-Two Interactive     8.41
## 26       GBA 2002 Role-Playing                               Nintendo     6.06
## 27        DS 2010 Role-Playing                               Nintendo     5.57
## 28        DS 2005       Puzzle                               Nintendo     3.44
## 29       PS2 2001       Racing            Sony Computer Entertainment     6.85
## 30      X360 2011      Shooter                             Activision     9.03
## 31        GB 1998 Role-Playing                               Nintendo     5.89
## 32      X360 2010      Shooter                             Activision     9.67
## 33       3DS 2013 Role-Playing                               Nintendo     5.17
## 34       PS4 2015      Shooter                             Activision     5.77
## 35       PS3 2012      Shooter                             Activision     4.99
## 36      X360 2012      Shooter                             Activision     8.25
## 37      X360 2009      Shooter                             Activision     8.52
## 38       PS3 2011      Shooter                             Activision     5.54
## 39       PS2 2001       Action                   Take-Two Interactive     6.99
## 40       Wii 2008     Fighting                               Nintendo     6.75
## 41       PS3 2010      Shooter                             Activision     5.98
## 42        DS 2005   Simulation                               Nintendo     2.55
## 43       3DS 2011       Racing                               Nintendo     4.74
## 44      X360 2007      Shooter                 Microsoft Game Studios     7.97
## 45       PS4 2014       Action                   Take-Two Interactive     3.80
## 46        DS 2009       Action                               Nintendo     4.40
## 47       N64 1996     Platform                               Nintendo     6.91
## 48       PS2 2004       Racing            Sony Computer Entertainment     3.01
## 49       Wii 2007     Platform                               Nintendo     6.16
## 50       3DS 2014 Role-Playing                               Nintendo     4.23
## 51        GB 1992    Adventure                               Nintendo     6.16
## 52      X360 2008       Action                   Take-Two Interactive     6.76
## 53        PS 1997       Racing            Sony Computer Entertainment     4.02
## 54       3DS 2011     Platform                               Nintendo     4.89
## 55       PS3 2010       Racing            Sony Computer Entertainment     2.96
## 56       PS3 2009      Shooter                             Activision     4.99
## 57       PS3 2008       Action                   Take-Two Interactive     4.76
## 58      SNES 1993     Platform                               Nintendo     5.99
## 59       GBA 2004 Role-Playing                               Nintendo     4.34
## 60        DS 2004     Platform                               Nintendo     5.08
## 61       Wii 2011         Misc                                Ubisoft     6.05
## 62      X360 2013      Shooter                             Activision     6.72
## 63      X360 2010      Shooter                 Microsoft Game Studios     7.03
## 64       N64 1996       Racing                               Nintendo     5.55
## 65       3DS 2012     Platform                               Nintendo     3.66
## 66      X360 2012      Shooter                 Microsoft Game Studios     6.63
## 67        PS 1997 Role-Playing            Sony Computer Entertainment     3.01
## 68       PS3 2013      Shooter                             Activision     4.09
## 69       Wii 2010         Misc                                Ubisoft     5.84
## 70        PS 1999       Racing            Sony Computer Entertainment     3.88
## 71      X360 2007      Shooter                             Activision     5.91
## 72      SNES 1994     Platform                               Nintendo     4.36
## 73      X360 2013         Misc                 Microsoft Game Studios     5.58
## 74       3DS 2012   Simulation                               Nintendo     2.01
## 75        DS 2007         Misc                               Nintendo     4.46
## 76      X360 2011 Role-Playing                     Bethesda Softworks     5.03
## 77      SNES 1992       Racing                               Nintendo     3.54
## 78       PS4 2015       Sports                        Electronic Arts     1.11
## 79       Wii 2010         Misc                               Nintendo     1.79
## 80        XB 2004      Shooter                 Microsoft Game Studios     6.82
## 81       Wii 2007         Misc                               Nintendo     3.81
## 82        DS 2012 Role-Playing                               Nintendo     2.91
## 83       PS3 2012       Action                        Electronic Arts     1.06
## 84        PC 2009   Simulation                        Electronic Arts     0.98
## 85       N64 1997      Shooter                               Nintendo     5.80
## 86       Wii 2007       Sports                                   Sega     2.58
## 87       PS2 2001 Role-Playing            Sony Computer Entertainment     2.91
## 88        PS 1999 Role-Playing                             SquareSoft     2.28
## 89        DS 2008 Role-Playing                               Nintendo     2.82
## 90      2600 1982       Puzzle                                  Atari     7.28
## 91       PSP 2005       Action                   Take-Two Interactive     2.90
## 92       Wii 2010     Platform                               Nintendo     3.66
## 93       PS4 2015      Shooter                        Electronic Arts     2.93
## 94       PS4 2014      Shooter                             Activision     2.80
## 95       N64 1998       Action                               Nintendo     4.10
## 96        PS 1997     Platform            Sony Computer Entertainment     3.78
## 97       NES 1988     Platform                               Nintendo     5.39
## 98       3DS 2014     Fighting                               Nintendo     3.24
## 99      X360 2008      Shooter                             Activision     4.79
## 100     X360 2011      Shooter                        Electronic Arts     4.46
## 101      Wii 2006       Action                               Nintendo     3.83
## 102     XOne 2015      Shooter                             Activision     4.52
## 103      Wii 2009         Misc                                Ubisoft     3.51
## 104      PS3 2011      Shooter                        Electronic Arts     2.85
## 105      PS2 2003       Racing                        Electronic Arts     3.27
## 106       PS 1998     Fighting            Sony Computer Entertainment     3.27
## 107       PS 1998     Platform            Sony Computer Entertainment     3.68
## 108       GC 2001     Fighting                               Nintendo     4.41
## 109     WiiU 2014       Racing                               Nintendo     3.13
## 110      PS4 2015 Role-Playing                     Bethesda Softworks     2.47
## 111       GC 2003       Racing                               Nintendo     4.12
## 112      Wii 2012         Misc                                Ubisoft     4.14
## 113      PS3 2013       Sports                        Electronic Arts     0.78
## 114      PS2 2004       Racing                        Electronic Arts     2.71
## 115      PS2 2002      Shooter                        Electronic Arts     2.93
## 116      PS3 2011       Action            Sony Computer Entertainment     2.77
## 117       PS 1996     Platform            Sony Computer Entertainment     3.23
## 118      Wii 2010       Sports                              505 Games     3.50
## 119     X360 2008      Shooter                 Microsoft Game Studios     4.15
## 120      PS3 2009       Action            Sony Computer Entertainment     3.27
## 121      PS3 2007      Shooter                             Activision     3.10
## 122      PS3 2011       Sports                        Electronic Arts     0.84
## 123       DS 2005         Misc                               Nintendo     1.67
## 124      PS3 2010       Action                   Take-Two Interactive     2.79
## 125      PS4 2014       Sports                        Electronic Arts     0.79
## 126      Wii 2010     Platform                               Nintendo     3.25
## 127      PS3 2011 Role-Playing                     Bethesda Softworks     2.55
## 128      NES 1986       Action                               Nintendo     3.74
## 129      PS3 2012       Action                                Ubisoft     2.64
## 130       XB 2001      Shooter                 Microsoft Game Studios     4.98
## 131      GBA 2004 Role-Playing                               Nintendo     2.57
## 132      PS2 2002 Role-Playing            Sony Computer Entertainment     3.64
## 133       GB 2000 Role-Playing                               Nintendo     2.55
## 134     X360 2009      Shooter                 Microsoft Game Studios     4.34
## 135     X360 2010       Action                   Take-Two Interactive     3.70
## 136       GC 2002     Platform                               Nintendo     4.01
## 137     SNES 1992     Fighting                                 Capcom     2.47
## 138       PC 2004 Role-Playing                             Activision     0.07
## 139       PS 1999       Action                         GT Interactive     3.11
## 140     X360 2010       Sports                 Microsoft Game Studios     3.92
## 141     X360 2011      Shooter                 Microsoft Game Studios     4.05
## 142     X360 2006      Shooter                 Microsoft Game Studios     3.54
## 143      PS2 2001       Action           Konami Digital Entertainment     2.45
## 144      GEN 1992     Platform                                   Sega     4.47
## 145      PS3 2008       Action           Konami Digital Entertainment     2.63
## 146       PS 1998       Action           Konami Digital Entertainment     3.18
## 147      PS3 2013       Action     Sony Computer Entertainment Europe     2.41
## 148      PS2 2006 Role-Playing                            Square Enix     1.88
## 149      PS3 2008     Platform            Sony Computer Entertainment     2.80
## 150       DS 2009 Role-Playing                               Nintendo     0.66
## 151      Wii 2007       Action                              LucasArts     3.66
## 152       PS 1998       Action                     Virgin Interactive     1.88
## 153       PS 1996     Fighting            Sony Computer Entertainment     2.26
## 154       DS 2006   Simulation                              505 Games     3.13
## 155      PS4 2014      Shooter                             Activision     2.49
## 156      NES 1988       Puzzle                               Nintendo     2.97
## 157      PS3 2009       Action                                Ubisoft     2.54
## 158      N64 1999     Fighting                               Nintendo     2.95
## 159     X360 2007    Adventure                                Ubisoft     3.28
## 160      PS3 2011       Action Warner Bros. Interactive Entertainment     2.70
## 161     X360 2009       Racing                 Microsoft Game Studios     2.99
## 162      PSP 2008 Role-Playing                                 Capcom     0.47
## 163      GBA 2001     Platform                               Nintendo     3.14
## 164      GBA 2001       Racing                               Nintendo     2.62
## 165      GBA 2001     Platform                               Nintendo     3.21
## 166      N64 1999     Strategy                               Nintendo     3.18
## 167      PS3 2008      Shooter                             Activision     2.72
## 168      PS2 2001     Platform                  Universal Interactive     2.07
## 169      PS3 2014         Misc            Sony Computer Entertainment     1.97
## 170      PS3 2009 Role-Playing                            Square Enix     1.74
## 171       GB 1989       Puzzle                               Nintendo     2.18
## 172       GB 1999         Misc                               Nintendo     3.02
## 173     X360 2012       Action                                Ubisoft     3.13
## 174       PS 2000 Role-Playing                             SquareSoft     1.62
## 175      PS2 2003 Role-Playing                        Electronic Arts     1.92
## 176      N64 1999     Platform                               Nintendo     3.33
## 177     X360 2009       Action                                Ubisoft     3.10
## 178       DS 2007       Puzzle                               Nintendo     1.22
## 179       PS 1997       Action                      Eidos Interactive     2.30
## 180      PS2 2003       Sports                        Electronic Arts     4.26
## 181      PS2 2004 Role-Playing                            Square Enix     0.65
## 182       PC 2012 Role-Playing                             Activision     2.43
## 183      GBA 2003     Platform                               Nintendo     2.93
## 184     WiiU 2012     Platform                               Nintendo     2.32
## 185       GB 1994     Platform                               Nintendo     2.49
## 186     X360 2012       Action                        Electronic Arts     1.08
## 187       DS 2007       Action                               Nintendo     1.90
## 188     SNES 1995     Platform                               Nintendo     2.10
## 189      3DS 2013   Simulation                               Nintendo     0.96
## 190       DS 2008       Sports                                   Sega     1.64
## 191      PS2 2003      Shooter                        Electronic Arts     1.98
## 192       GB 1992     Platform                               Nintendo     2.71
## 193     X360 2010 Role-Playing                 Microsoft Game Studios     3.59
## 194     XOne 2014      Shooter                             Activision     3.21
## 195       PC 1996   Simulation                 Microsoft Game Studios     3.22
## 196      PS2 2006         Misc                              RedOctane     3.81
## 197      PS3 2009       Action                                 Capcom     1.96
## 198     XOne 2014       Action                   Take-Two Interactive     2.66
## 199      PSP 2006       Action                   Take-Two Interactive     1.70
## 200      PS3 2010       Sports                        Electronic Arts     0.60
## 201       GB 1999     Platform                               Nintendo     3.40
## 202       PS 1996       Action                     Virgin Interactive     2.05
## 203       PS 1999       Sports                             Activision     3.42
## 204     WiiU 2014     Fighting                               Nintendo     2.59
## 205       PS 1999     Strategy                      Eidos Interactive     2.79
## 206       PS 1998     Platform            Sony Computer Entertainment     3.36
## 207      Wii 2007      Shooter                               Nintendo     3.06
## 208      PS2 2007         Misc                             Activision     3.49
## 209     X360 2008 Role-Playing                     Bethesda Softworks     3.39
## 210       DS 2007 Role-Playing                               Nintendo     1.85
## 211      PS3 2007       Action            Sony Computer Entertainment     2.31
## 212      PS2 2005       Sports                        Electronic Arts     3.98
## 213       DS 2007       Action                              LucasArts     2.89
## 214      N64 1997       Racing                               Nintendo     2.91
## 215      PSP 2010 Role-Playing                                 Capcom     0.00
## 216      NES 1990       Puzzle                               Nintendo     2.62
## 217      PS3 2010       Action            Sony Computer Entertainment     2.74
## 218       PC 2010     Strategy                             Activision     2.56
## 219      PS3 2007    Adventure                                Ubisoft     1.91
## 220      PS3 2014       Sports                        Electronic Arts     0.57
## 221       PS 1999       Racing            Sony Computer Entertainment     2.57
## 222      PS4 2016       Sports                        Electronic Arts     0.28
## 223     X360 2011       Action Warner Bros. Interactive Entertainment     2.99
## 224       PS 2000       Action                                  Atari     2.36
## 225      PS2 2003       Racing                          Vivendi Games     1.73
## 226       PS 2000       Sports                             Activision     3.05
## 227      Wii 2008   Simulation                               Nintendo     1.87
## 228      PS2 2002       Action                        Electronic Arts     1.94
## 229     X360 2011       Racing                 Microsoft Game Studios     2.08
## 230       PS 1996       Action                      Eidos Interactive     2.29
## 231      Wii 2007         Misc                             Activision     3.06
## 232     SNES 1991       Action                               Nintendo     2.42
## 233       GC 2002       Action                               Nintendo     2.60
## 234      Wii 2009       Sports                                   Sega     1.89
## 235      3DS 2013       Action                               Nintendo     1.78
## 236     WiiU 2015      Shooter                               Nintendo     1.55
## 237      PS4 2014       Action            Sony Computer Entertainment     1.78
## 238     X360 2007         Misc                             Activision     3.19
## 239      PS2 2004       Sports                        Electronic Arts     4.18
## 240     2600 1981     Platform                             Activision     4.21
## 241      PS2 2006       Sports                        Electronic Arts     3.63
## 242      PS2 2002       Action                             Activision     2.71
## 243       PS 2000 Role-Playing                       Enix Corporation     0.20
## 244      PS4 2015       Action            Sony Computer Entertainment     1.96
## 245      PS3 2014      Shooter                             Activision     1.54
## 246      PS2 2005       Action            Sony Computer Entertainment     2.71
## 247     WiiU 2012         Misc                               Nintendo     2.55
## 248      Wii 2010         Misc                                Ubisoft     2.67
## 249      PS2 2001       Sports                             Activision     2.66
## 250      PS2 2006       Sports           Konami Digital Entertainment     0.10
## 251     X360 2006 Role-Playing                   Take-Two Interactive     2.82
## 252      NES 1987    Adventure                               Nintendo     2.19
## 253      PS2 2005       Racing                        Electronic Arts     2.03
## 254      PS3 2006      Shooter            Sony Computer Entertainment     1.73
## 255      GEN 1991     Platform                                   Sega     3.03
## 256      PS2 2005 Role-Playing                            Square Enix     2.20
## 257     X360 2013       Sports                        Electronic Arts     0.92
## 258     X360 2014      Shooter                             Activision     2.75
## 259     2600 1980      Shooter                                  Atari     4.00
## 260     X360 2008 Role-Playing                 Microsoft Game Studios     2.51
## 261     XOne 2015      Shooter                 Microsoft Game Studios     2.64
## 262     WiiU 2013     Platform                               Nintendo     2.11
## 263      PS3 2009       Action                      Eidos Interactive     2.23
## 264      PS3 2011       Action                                Ubisoft     1.41
## 265      GBA 2001         Misc                     Namco Bandai Games     3.00
## 266      PS2 2004       Action           Konami Digital Entertainment     1.46
## 267      PSP 2006     Platform            Sony Computer Entertainment     2.45
## 268       PC 1995     Strategy                             Activision     1.70
## 269      3DS 2011       Action                               Nintendo     2.03
## 270      PS2 2005       Sports                        Electronic Arts     0.78
## 271      PS2 2003         Misc            Sony Computer Entertainment     0.88
## 272      PS4 2016      Shooter            Sony Computer Entertainment     1.30
## 273      PS3 2007       Racing            Sony Computer Entertainment     1.28
## 274     X360 2011       Action                                Ubisoft     2.25
## 275      PS3 2009     Fighting                                 Capcom     2.02
## 276     X360 2011       Sports                        Electronic Arts     0.84
## 277      NES 1989       Action                                 Palcom     3.38
## 278      NES 1984       Racing                               Nintendo     2.04
## 279       PS 1997       Action                     Hasbro Interactive     3.79
## 280      PS2 2002       Sports                        Electronic Arts     3.36
## 281      PS4 2014       Action                                Ubisoft     1.40
## 282       PC 1997      Shooter                          Vivendi Games     4.03
## 283     SNES 1995     Platform                               Nintendo     1.65
## 284      PS2 2006       Sports                        Electronic Arts     0.71
## 285      Wii 2011       Action                               Nintendo     2.14
## 286     SNES 1992     Fighting                                 Capcom     1.42
## 287      Wii 2007         Misc                   Take-Two Interactive     2.13
## 288     XOne 2015 Role-Playing                     Bethesda Softworks     2.45
## 289       PC 2007 Role-Playing                             Activision     2.57
## 290     X360 2010 Role-Playing                     Bethesda Softworks     2.65
## 291      PS2 2007       Action            Sony Computer Entertainment     2.32
## 292     X360 2007       Racing                 Microsoft Game Studios     2.35
## 293      PS2 2005       Sports           Konami Digital Entertainment     0.12
## 294       PS 1996         Misc            Sony Computer Entertainment     2.28
## 295      PS2 2000     Fighting                     Namco Bandai Games     1.68
## 296      PS4 2014      Shooter                                Ubisoft     1.12
## 297      N64 1997      Shooter                               Nintendo     2.78
## 298      PS4 2014         Misc     Sony Computer Entertainment Europe     1.38
## 299      NES 1984       Sports                               Nintendo     1.22
## 300      PS3 2008 Role-Playing                     Bethesda Softworks     2.15
## 301       DS 2007       Puzzle                               Nintendo     0.92
## 302     X360 2009      Shooter                        Electronic Arts     2.67
## 303      PS2 2005         Misc                     Namco Bandai Games     2.08
## 304      Wii 2009       Sports                        Electronic Arts     2.10
## 305      PS4 2014       Action                                Ubisoft     1.18
## 306       GB 1994     Platform                               Nintendo     1.97
## 307      PS2 2003       Sports                             Activision     2.29
## 308      PS3 2013       Action                                Ubisoft     1.33
## 309      3DS 2014 Role-Playing                               Nintendo     0.67
## 310      PS3 2006       Racing            Sony Computer Entertainment     1.53
## 311       PC 2011 Role-Playing                     Bethesda Softworks     1.15
## 312      PS2 2005     Fighting                     Namco Bandai Games     0.93
## 313      NES 1988 Role-Playing                       Enix Corporation     0.10
## 314      PS3 2010       Sports            Sony Computer Entertainment     2.12
## 315      PS4 2015       Sports                   Take-Two Interactive     2.48
## 316      PS2 2004       Sports           Konami Digital Entertainment     0.16
## 317       DS 2007         Misc                               Nintendo     0.87
## 318       PS 1995         Misc            Sony Computer Entertainment     2.12
## 319       GB 1992       Action                               Nintendo     2.21
## 320       DS 2009 Role-Playing                               Nintendo     2.26
## 321      Wii 2007         Misc                               Nintendo     1.06
## 322      3DS 2011   Simulation                               Nintendo     1.44
## 323      PS4 2015       Action Warner Bros. Interactive Entertainment     1.49
## 324      Wii 2011       Sports                                   Sega     1.14
## 325     X360 2008       Action                             Activision     2.40
## 326       PS 1996       Action                     Virgin Interactive     1.82
## 327      PSP 2007     Platform            Sony Computer Entertainment     1.40
## 328      Wii 2013         Misc                                Ubisoft     1.98
## 329       PC 2002   Simulation                        Electronic Arts     2.03
## 330      Wii 2007     Platform                               Nintendo     1.98
## 331       PS 2001       Action                        Electronic Arts     1.37
## 332      PS4 2015 Role-Playing                     Namco Bandai Games     0.96
## 333       PS 1999       Action                      Eidos Interactive     1.30
## 334       PS 2000     Platform            Sony Computer Entertainment     1.93
## 335      PS2 2004       Sports                        Electronic Arts     0.58
## 336       GB 1998     Strategy                               Nintendo     1.49
## 337      PS3 2013      Shooter                        Electronic Arts     1.30
## 338       DS 2007   Simulation                        Electronic Arts     1.59
## 339       DS 2009         Misc                               Nintendo     0.00
## 340      PS2 2002       Sports                             Activision     2.13
## 341      PSP 2005       Racing                   Take-Two Interactive     1.65
## 342      N64 1998     Platform                               Nintendo     1.87
## 343      PS2 2002      Shooter            Sony Computer Entertainment     2.53
## 344      Wii 2008         Misc                             Activision     2.33
## 345      PS3 2013       Racing            Sony Computer Entertainment     0.71
## 346      PS2 2001     Platform            Sony Computer Entertainment     2.08
## 347      N64 1999   Simulation                               Nintendo     2.23
## 348      PS3 2009       Sports                        Electronic Arts     0.60
## 349      PS2 2007       Sports           Konami Digital Entertainment     0.05
## 350      PS4 2013      Shooter                             Activision     1.78
## 351      PS2 2005       Action                                 Capcom     2.08
## 352      PS4 2016      Shooter                                Ubisoft     1.28
## 353      PS2 2004      Shooter                              LucasArts     1.93
## 354       PC 1994      Shooter                     Virgin Interactive     2.05
## 355      PS2 2001       Racing                        Electronic Arts     2.02
## 356       DS 2007   Simulation                              505 Games     1.61
## 357       GC 2001       Action                               Nintendo     2.38
## 358      PS2 2005      Shooter                              LucasArts     2.18
## 359       PS 2000     Fighting                                    THQ     2.01
## 360       PS 1997     Platform                        Fox Interactive     1.57
## 361      PS2 2006       Action                   Take-Two Interactive     1.56
## 362      PS2 2002       Action            Sony Computer Entertainment     1.23
## 363       PS 1997       Action                      Eidos Interactive     1.66
## 364      PS2 2001      Shooter                        Electronic Arts     1.90
## 365      PS2 2005       Action                      Eidos Interactive     1.98
## 366     X360 2013      Shooter                        Electronic Arts     2.14
## 367     X360 2010       Sports                        Electronic Arts     0.71
## 368       PS 2000       Action                                    THQ     1.96
## 369       PS 1999     Platform            Sony Computer Entertainment     2.14
## 370     X360 2008      Shooter                        Electronic Arts     2.66
## 371       DS 2009       Sports                                   Sega     1.22
## 372     X360 2009       Action                                 Capcom     2.11
## 373     SNES 1996     Platform                               Nintendo     1.17
## 374     X360 2010       Action                                Ubisoft     2.84
## 375      NES 1985       Action                               Nintendo     1.64
## 376     X360 2009       Action                      Eidos Interactive     2.20
## 377       DS 2006         Misc                               Nintendo     0.59
## 378      PS2 2003       Sports                        Electronic Arts     0.59
## 379     XOne 2015      Shooter                        Electronic Arts     1.94
## 380     X360 2010      Shooter                        Electronic Arts     2.09
## 381       DS 2008         Misc                             Activision     2.11
## 382     XOne 2014       Action                                Ubisoft     2.26
## 383      PS3 2012      Shooter                                Ubisoft     0.88
## 384      3DS 2013 Role-Playing                                 Capcom     0.00
## 385     X360 2009      Shooter                   Take-Two Interactive     2.39
## 386      PS2 2002     Fighting                     Namco Bandai Games     1.55
## 387      PS4 2013      Shooter                        Electronic Arts     1.34
## 388      PS3 2011     Platform            Sony Computer Entertainment     1.82
## 389       PS 1998       Action                   Take-Two Interactive     1.13
## 390     SNES 1994 Role-Playing                             SquareSoft     0.86
## 391      PS2 2004       Action                             Activision     1.75
## 392       GB 1990       Racing                               Nintendo     1.73
## 393      PS2 2002       Sports                        Electronic Arts     0.46
## 394       PS 2000         Misc            Sony Computer Entertainment     1.56
## 395     X360 2008       Action Warner Bros. Interactive Entertainment     2.03
## 396      PS4 2015       Action           Konami Digital Entertainment     1.08
## 397       DS 2009       Action                               Nintendo     1.43
## 398       PS 1998     Fighting                  Acclaim Entertainment     2.47
## 399      N64 2000       Action                               Nintendo     1.90
## 400       DS 2008       Puzzle                               Nintendo     0.65
## 401       PS 1998    Adventure                                    THQ     1.63
## 402     X360 2013       Action                                Ubisoft     1.90
## 403       DS 2006         Misc                               Nintendo     0.00
## 404      PS2 2002      Shooter                        Electronic Arts     1.45
## 405      PS2 2002     Platform            Sony Computer Entertainment     1.44
## 406      Wii 2012         Misc                               Nintendo     1.15
## 407      PS2 2005       Action                              LucasArts     1.47
## 408      PS2 2001      Shooter                   Take-Two Interactive     1.99
## 409      PS2 2003       Action                        Electronic Arts     1.50
## 410      PS4 2015       Action                                Ubisoft     0.80
## 411     XOne 2014      Shooter                             Activision     2.13
## 412      PS2 2003       Action                             Activision     1.89
## 413      Wii 2008         Misc                               Nintendo     1.36
## 414      PSP 2009       Racing            Sony Computer Entertainment     0.50
## 415      3DS 2015       Action                                 Capcom     0.25
## 416       PS 1995     Fighting            Sony Computer Entertainment     0.95
## 417     XOne 2015       Sports                        Electronic Arts     0.88
## 418      PS3 2011    Adventure                   Take-Two Interactive     1.27
## 419      PS4 2015       Sports                        Electronic Arts     2.33
## 420      3DS 2014 Role-Playing                               Nintendo     0.03
## 421       PS 1999      Shooter                        Electronic Arts     1.72
## 422      NES 1983       Sports                               Nintendo     0.73
## 423     SNES 1995     Fighting                               Nintendo     2.26
## 424       PS 2000     Fighting                                    THQ     1.76
## 425      PSP 2007 Role-Playing                            Square Enix     1.35
## 426      PSP 2008       Action            Sony Computer Entertainment     1.48
## 427     SNES 1995 Role-Playing                       Enix Corporation     0.00
## 428     X360 2010         Misc                              MTV Games     2.15
## 429      PS2 2003       Action                                  Atari     1.78
## 430     WiiU 2015     Platform                               Nintendo     1.18
## 431      PS3 2010 Role-Playing                     Bethesda Softworks     1.52
## 432      Wii 2008       Action Warner Bros. Interactive Entertainment     1.86
## 433       DS 2008         Misc                               Nintendo     0.58
## 434      PS2 2001   Simulation     Sony Computer Entertainment Europe     2.06
## 435       DS 2008    Adventure             Disney Interactive Studios     1.88
## 436       GC 2001   Simulation                               Nintendo     1.92
## 437       DS 2008       Action Warner Bros. Interactive Entertainment     1.79
## 438       DS 2005     Platform                                   Sega     1.22
## 439      PS3 2012      Shooter                                 Capcom     0.88
## 440     XOne 2014      Shooter                 Microsoft Game Studios     1.89
## 441      PS2 2007       Sports                        Electronic Arts     0.68
## 442       PS 2000       Action                             Activision     1.70
## 443       PS 1998       Racing                        Electronic Arts     2.14
## 444      N64 1999       Racing                               Nintendo     2.31
## 445       DS 2006         Misc                               Nintendo     0.91
## 446      PS3 2007 Role-Playing                                Ubisoft     1.69
## 447      NES 1990 Role-Playing                       Enix Corporation     0.08
## 448      PS3 2010    Adventure            Sony Computer Entertainment     1.29
## 449     X360 2010 Role-Playing                        Electronic Arts     1.99
## 450     X360 2014       Sports                        Electronic Arts     0.78
## 451      PS2 2002     Fighting                                  Atari     2.17
## 452      PS2 2001       Sports                        Electronic Arts     2.50
## 453      NES 1986       Sports                     Namco Bandai Games     1.92
## 454     X360 2012      Shooter                   Take-Two Interactive     1.89
## 455      3DS 2013       Action                               Nintendo     1.40
## 456       GB 1994     Platform                               Nintendo     1.57
## 457       PC 2002   Simulation                        Electronic Arts     1.72
## 458     X360 2012 Role-Playing                        Electronic Arts     1.94
## 459     X360 2008       Action                             Activision     1.91
## 460     X360 2012      Shooter                                Ubisoft     1.38
## 461      Wii 2010     Platform             Disney Interactive Studios     2.06
## 462     X360 2008       Action                                    THQ     1.94
## 463       PS 1995     Platform                                Ubisoft     1.54
## 464      PS3 2009      Shooter            Sony Computer Entertainment     1.40
## 465       XB 2002       Action                                Ubisoft     1.85
## 466      NES 1987     Fighting                               Nintendo     2.03
## 467      PS2 2002       Sports                                    THQ     1.45
## 468     XOne 2015      Shooter                 Microsoft Game Studios     2.38
## 469     X360 2012       Sports                   Take-Two Interactive     2.60
## 470      PS2 2007     Fighting                                  Atari     1.15
## 471      PS2 2005     Fighting                                    THQ     1.57
## 472      PS4 2014       Action Warner Bros. Interactive Entertainment     1.01
## 473     SNES 1993      Shooter                               Nintendo     1.61
## 474       PC 2000         Misc                        Electronic Arts     1.67
## 475      PS2 2002       Sports           Konami Digital Entertainment     0.12
## 476      PS2 2001       Action                                 Capcom     1.36
## 477      3DS 2015   Simulation                               Nintendo     0.47
## 478      PS3 2010      Shooter                        Electronic Arts     1.33
## 479       PC 2014   Simulation                        Electronic Arts     0.96
## 480       PC 2011 Role-Playing                        Electronic Arts     1.58
## 481      PS2 2003     Platform                                   Sega     1.04
## 482       DS 2008     Platform                               Nintendo     1.57
## 483      PS2 2002       Action                      Eidos Interactive     1.36
## 484     X360 2009     Fighting                                 Capcom     1.82
## 485      N64 1996       Racing                               Nintendo     1.98
## 486      PS2 2003      Shooter            Sony Computer Entertainment     2.22
## 487      PS2 2005     Fighting                                    THQ     1.45
## 488      PS3 2009       Action            Sony Computer Entertainment     1.76
## 489      GBA 2001       Puzzle                                  Atari     2.07
## 490     X360 2007 Role-Playing                 Microsoft Game Studios     1.83
## 491      Wii 2006       Puzzle                               Nintendo     0.87
## 492      Wii 2007   Simulation                              505 Games     1.43
## 493      GBA 2002     Platform                               Nintendo     1.75
## 494      PS4 2013       Sports                        Electronic Arts     0.61
## 495     XOne 2014      Shooter                        Electronic Arts     1.84
## 496      PS2 2004         Misc                                   Sega     1.54
## 497     X360 2008       Sports                                   Sega     1.75
## 498      PS2 2003       Sports           Konami Digital Entertainment     0.08
## 499      PS3 2012       Racing                        Electronic Arts     0.71
## 500      PS2 2001       Sports            Sony Computer Entertainment     0.99
## 501      PS2 2004      Shooter                             Activision     1.51
## 502      Wii 2011       Sports                  Majesco Entertainment     1.54
## 503       PS 1999      Shooter            Sony Computer Entertainment     2.03
## 504       DS 2007   Simulation                                Ubisoft     1.30
## 505       PS 1998       Racing                            Codemasters     0.09
## 506     XOne 2013      Shooter                             Activision     1.87
## 507     X360 2012       Sports                        Electronic Arts     2.53
## 508       XB 2002 Role-Playing                                Ubisoft     2.09
## 509      PS3 2011     Fighting Warner Bros. Interactive Entertainment     1.98
## 510     SNES 1990       Racing                               Nintendo     1.37
## 511      N64 1997     Platform                               Nintendo     1.29
## 512       PC 1996     Strategy                     Virgin Interactive     1.37
## 513      Wii 2011       Action                             Activision     1.40
## 514      PS3 2015       Sports                        Electronic Arts     0.40
## 515      PS3 2010       Action                                Ubisoft     1.87
## 516     X360 2007      Shooter                   Take-Two Interactive     1.65
## 517     X360 2009       Sports                        Electronic Arts     2.52
## 518      PS3 2010      Shooter                        Electronic Arts     1.28
## 519      PS2 2002     Fighting                                    THQ     1.32
## 520       GC 2002      Shooter                               Nintendo     1.96
## 521      GBA 2003       Action                                    THQ     1.59
## 522       PC 1994    Adventure                                Red Orb     0.02
## 523      PS3 2010       Racing                        Electronic Arts     1.05
## 524       DS 2007   Simulation                                Ubisoft     1.32
## 525      PS2 2003     Fighting                                    THQ     1.32
## 526     X360 2008       Action                              LucasArts     1.74
## 527       DS 2006     Platform                               Nintendo     1.47
## 528       PS 1997       Sports            Sony Computer Entertainment     0.29
## 529      PS3 2011      Shooter            Sony Computer Entertainment     1.45
## 530       PS 1998     Platform            Sony Computer Entertainment     1.96
## 531      PS2 2001     Fighting                                    THQ     1.19
## 532     SNES 1992 Role-Playing                       Enix Corporation     0.00
## 533       PS 1996     Fighting                         GT Interactive     1.98
## 534       PC 2011      Shooter                        Electronic Arts     0.89
## 535      PS2 2001       Sports                        Electronic Arts     2.19
## 536       DS 2009       Puzzle                               Nintendo     0.30
## 537      3DS 2011 Role-Playing                               Nintendo     0.46
## 538      PS2 2003     Platform            Sony Computer Entertainment     1.68
## 539      PS4 2014       Action            Sony Computer Entertainment     1.27
## 540      PS2 2003     Platform            Sony Computer Entertainment     1.44
## 541      PS3 2009     Fighting                     Namco Bandai Games     1.20
## 542      PS2 2003   Simulation                        Electronic Arts     1.41
## 543      Wii 2007     Platform                                   Sega     1.24
## 544     X360 2011       Action                                    THQ     1.25
## 545     2600 1980      Shooter                                  Atari     2.56
## 546     SNES 1992         Misc                               Nintendo     1.43
## 547      PS4 2013       Action                                Ubisoft     1.07
## 548      N64 2000     Strategy                               Nintendo     1.02
## 549      NES 1986       Action                               Nintendo     1.33
## 550     X360 2011    Adventure                   Take-Two Interactive     1.52
## 551     X360 2006      Shooter                             Activision     1.49
## 552      GBA 2002       Action                               Nintendo     1.75
## 553      PS2 2001       Action                     Virgin Interactive     0.99
## 554      PS4 2015     Fighting Warner Bros. Interactive Entertainment     1.47
## 555      N64 1998         Misc                               Nintendo     1.25
## 556     X360 2011       Sports                        Electronic Arts     2.42
## 557      PS2 2006       Action                              LucasArts     1.85
## 558     X360 2010       Sports                        Electronic Arts     2.38
## 559       DS 2010       Puzzle                               Nintendo     1.63
## 560     X360 2010       Sports                        Electronic Arts     1.46
## 561      PS2 2004       Racing                        Electronic Arts     1.23
## 562      3DS 2014 Role-Playing                                Level 5     0.00
## 563      PS3 2009       Racing                        Electronic Arts     0.69
## 564      PS3 2011 Role-Playing                            Square Enix     0.78
## 565      GEN 1992     Fighting                    Arena Entertainment     1.95
## 566      PS2 2005      Shooter                             Activision     1.48
## 567     X360 2008         Misc                             Activision     1.78
## 568       PS 1998      Shooter                        Electronic Arts     1.44
## 569       XB 2004 Role-Playing                 Microsoft Game Studios     1.99
## 570       DS 2006       Action             Disney Interactive Studios     1.59
## 571      PS2 2003       Action                                Ubisoft     1.15
## 572      Wii 2012       Action                             Activision     1.56
## 573      PSP 2006      Shooter                        Electronic Arts     0.86
## 574      NES 1986     Platform                               Nintendo     0.00
## 575      N64 1996       Action                               Nintendo     2.00
## 576     X360 2007       Action                              LucasArts     1.53
## 577      PS2 2000       Racing                   Take-Two Interactive     2.00
## 578      PSP 2006     Fighting            Sony Computer Entertainment     0.76
## 579     X360 2009     Strategy                 Microsoft Game Studios     1.53
## 580      PS3 2009       Action            Sony Computer Entertainment     1.70
## 581      PS2 2004       Sports                                   Sega     2.15
## 582      Wii 2007       Sports                               Nintendo     1.07
## 583     X360 2010      Shooter                        Electronic Arts     1.55
## 584     X360 2009       Sports                        Electronic Arts     0.59
## 585     X360 2011       Sports                   Take-Two Interactive     2.31
## 586       DS 2008   Simulation                               Nintendo     0.63
## 587      PS2 2002       Action                        Electronic Arts     0.90
## 588      Wii 2010     Platform                               Nintendo     1.02
## 589      GEN 1990       Action                                   Sega     1.86
## 590      PS3 2008       Sports                        Electronic Arts     0.48
## 591      PS3 2007     Platform            Sony Computer Entertainment     0.93
## 592      PS2 2004       Sports                        Electronic Arts     2.03
## 593      PSP 2009     Platform            Sony Computer Entertainment     0.64
## 594      PS4 2013      Shooter            Sony Computer Entertainment     0.89
## 595     X360 2009       Action                   Take-Two Interactive     1.04
## 596      PSP 2007 Role-Playing                                 Capcom     0.37
## 597      PS2 2006     Fighting                                    THQ     1.40
## 598      PS2 2004     Platform            Sony Computer Entertainment     1.31
## 599       DS 2010         Misc                               Nintendo     0.28
## 600     X360 2009 Role-Playing                        Electronic Arts     1.76
## 601      PS2 2007       Sports                        Electronic Arts     2.14
## 602       GC 2001     Platform                                   Sega     1.70
## 603      NES 1987 Role-Playing                       Enix Corporation     0.15
## 604      PS3 2012       Sports                        Electronic Arts     2.11
## 605       GC 2003 Role-Playing                               Nintendo     1.21
## 606      Wii 2008       Sports           Konami Digital Entertainment     1.13
## 607     X360 2008       Sports                        Electronic Arts     2.21
## 608     2600 1978      Shooter                                  Atari     2.36
## 609      PS2 2001       Racing                  Acclaim Entertainment     1.13
## 610      N64 2000       Action                               Nintendo     1.55
## 611      Wii 2007         Misc                           Midway Games     1.50
## 612      NES 1986 Role-Playing                                 Capcom     0.49
## 613      PS3 2013       Action                            Square Enix     0.60
## 614     X360 2006 Role-Playing                             Activision     2.29
## 615      PS2 2008       Sports           Konami Digital Entertainment     0.13
## 616      N64 1999         Misc                               Nintendo     1.28
## 617      PS3 2011       Action                                    THQ     0.86
## 618       XB 2003       Action                   Take-Two Interactive     1.84
## 619      Wii 2010       Action Warner Bros. Interactive Entertainment     1.29
## 620      PS2 2002     Fighting                           Midway Games     1.81
## 621      PS3 2008      Shooter            Sony Computer Entertainment     1.15
## 622     X360 2008       Racing             Disney Interactive Studios     1.38
## 623       PS 1998       Action                      Eidos Interactive     1.15
## 624      PS3 2012       Sports                   Take-Two Interactive     1.72
## 625     X360 2008         Misc                        Electronic Arts     1.93
## 626     X360 2013       Sports                   Take-Two Interactive     2.10
## 627       GC 2002         Misc                               Nintendo     1.13
## 628      Wii 2010         Misc                                    THQ     1.67
## 629      PS3 2008       Racing                   Take-Two Interactive     1.55
## 630     SNES 1992 Role-Playing                             SquareSoft     0.00
## 631       PS 1997 Role-Playing                             SquareSoft     0.93
## 632       PS 1996       Racing            Sony Computer Entertainment     2.12
## 633     X360 2011      Shooter                 Microsoft Game Studios     1.44
## 634      PSP 2006       Racing                        Electronic Arts     0.87
## 635      PS2 2003   Simulation                        Electronic Arts     1.07
## 636       PC 1997    Adventure                                Red Orb     1.52
## 637     X360 2008      Shooter                                Ubisoft     1.56
## 638       DC 1998     Platform                                   Sega     1.26
## 639      NES 1988       Sports                               Nintendo     1.27
## 640      PS3 2010       Sports           Konami Digital Entertainment     0.29
## 641      PS2 2003     Fighting                                  Atari     1.63
## 642      PS2 2001       Racing            Sony Computer Entertainment     2.07
## 643       PS 1998       Action                                 Capcom     0.81
## 644     XOne 2014         Misc                 Microsoft Game Studios     1.43
## 645      PS2 2007       Racing                        Electronic Arts     0.69
## 646     XOne 2015       Sports                        Electronic Arts     2.07
## 647       PS 1996       Puzzle                                    JVC     2.10
## 648      NES 1987     Fighting                               Nintendo     0.77
## 649       PC 1997     Strategy                        Electronic Arts     2.30
## 650      GBA 2001    Adventure           Konami Digital Entertainment     2.15
## 651      PS4 2015       Racing                        Electronic Arts     0.49
## 652     X360 2010       Sports                              505 Games     1.74
## 653      Wii 2008       Action                              LucasArts     1.54
## 654       PC 1994         Misc                     Hasbro Interactive     1.49
## 655      PS3 2013       Action Warner Bros. Interactive Entertainment     1.07
## 656     X360 2011       Action                            Deep Silver     1.48
## 657      PS2 2005         Misc                              RedOctane     1.67
## 658      PS3 2007       Action                              LucasArts     1.02
## 659     X360 2011         Misc                 Microsoft Game Studios     1.73
## 660      N64 1998     Fighting                                    THQ     1.94
## 661      PS4 2015       Action            Sony Computer Entertainment     1.00
## 662      PS4 2014       Sports                   Take-Two Interactive     1.46
## 663      PS3 2010       Sports                        Electronic Arts     2.04
## 664      PS2 2001         Misc           Konami Digital Entertainment     1.16
## 665     X360 2007       Sports                        Electronic Arts     2.18
## 666       PC 2004      Shooter                          Vivendi Games     2.28
## 667      PS2 2004       Action                                    THQ     0.96
## 668      PS2 2004       Sports                             Activision     1.25
## 669      PS3 2009       Sports                        Electronic Arts     2.03
## 670     X360 2011       Sports                 Microsoft Game Studios     1.38
## 671       GB 1995     Platform                               Nintendo     0.69
## 672       DS 2010       Action Warner Bros. Interactive Entertainment     1.07
## 673       GB 1996     Platform                               Nintendo     1.39
## 674       GB 1998 Role-Playing                      Eidos Interactive     0.00
## 675     X360 2008       Racing                   Take-Two Interactive     1.68
## 676      Wii 2013     Platform                             Activision     1.32
## 677      PS2 2007     Fighting                                    THQ     0.92
## 678      Wii 2008       Sports                                Ubisoft     1.20
## 679      PS2 2001       Action                                 Capcom     1.08
## 680     X360 2010   Simulation                        Electronic Arts     1.27
## 681      3DS 2015       Action                               Nintendo     1.14
## 682     XOne 2015       Sports                   Take-Two Interactive     1.93
## 683      Wii 2010         Misc                                Ubisoft     1.57
## 684      N64 2000       Sports                               Nintendo     0.78
## 685       PS 1997       Action                   Take-Two Interactive     0.79
## 686      PS2 2004      Shooter                        Electronic Arts     0.85
## 687       DS 2004       Puzzle                               Nintendo     0.52
## 688       PS 1999       Racing                        Electronic Arts     1.58
## 689     SNES 1995 Role-Playing                             SquareSoft     0.28
## 690       PS 1998       Sports                            989 Studios     1.65
## 691     X360 2013       Action Warner Bros. Interactive Entertainment     1.24
## 692       PC 2012       Action                                 NCSoft     0.95
## 693       DS 2008 Role-Playing                               Nintendo     0.95
## 694      PS3 2011       Action                            Deep Silver     1.08
## 695       PC 1997       Action                      Eidos Interactive     0.91
## 696      PS3 2013       Action            Sony Computer Entertainment     1.23
## 697       XB 2004       Racing                        Electronic Arts     1.38
## 698      PS3 2009       Sports           Konami Digital Entertainment     0.30
## 699      Wii 2014         Misc                                Ubisoft     1.11
## 700      3DS 2015       Action                                Level 5     0.00
## 701      NES 1983     Platform                               Nintendo     0.51
## 702      PS2 2008       Sports                        Electronic Arts     0.38
## 703      PS3 2008       Action                              LucasArts     1.01
## 704      PS3 2012      Shooter                   Take-Two Interactive     1.05
## 705       PS 1997       Racing                            Codemasters     0.07
## 706      3DS 2012 Role-Playing                               Nintendo     1.12
## 707      PS3 2009         Misc                                   Sega     1.34
## 708      Wii 2006         Misc                                   Sega     1.07
## 709      GBA 2002     Platform                               Nintendo     1.22
## 710      GBA 2001     Platform                               Nintendo     0.90
## 711      PS3 2007         Misc                             Activision     1.40
## 712      Wii 2006      Shooter                             Activision     1.19
## 713      Wii 2007       Action                                 Capcom     1.34
## 714      PSV 2014         Misc     Sony Computer Entertainment Europe     0.28
## 715      PS2 2002    Adventure                                 Capcom     0.62
## 716       PS 1997       Sports                            UEP Systems     1.52
## 717       GC 2004 Role-Playing                               Nintendo     1.48
## 718      PS3 2011       Sports                        Electronic Arts     1.93
## 719      Wii 2009 Role-Playing                               Nintendo     0.67
## 720      PSP 2008     Fighting                            Square Enix     0.51
## 721      GBA 2001     Platform                                   Sega     1.19
## 722      GBA 2001     Platform                          Vivendi Games     1.29
## 723      NES 1990       Action           Konami Digital Entertainment     1.74
## 724       DS 2008       Action                             Activision     1.42
## 725      PS2 2009   Simulation           Konami Digital Entertainment     1.09
## 726     WiiU 2013     Platform                               Nintendo     1.27
## 727      PS2 2003       Action                                Ubisoft     0.88
## 728       DS 2009       Puzzle Warner Bros. Interactive Entertainment     1.71
## 729       GB 1998    Adventure                               Nintendo     1.00
## 730     X360 2010       Racing                        Electronic Arts     1.03
## 731     X360 2010      Shooter                   Take-Two Interactive     1.45
## 732     XOne 2013       Action                                Ubisoft     1.47
## 733      PS2 2006       Action                                 Capcom     1.06
## 734     X360 2008         Misc                        Electronic Arts     1.78
## 735     2600 1981       Action                           Parker Bros.     2.06
## 736     X360 2007         Misc                             Activision     2.01
## 737       GB 2000     Platform                               Nintendo     1.11
## 738      NES 1986       Sports                     Namco Bandai Games     0.15
## 739      Wii 2008     Platform                                   Sega     1.28
## 740       DS 2007       Puzzle             Disney Interactive Studios     1.06
## 741      PS3 2011       Action           Konami Digital Entertainment     0.34
## 742     X360 2006       Action                                    THQ     1.17
## 743       XB 2003 Role-Playing                             Activision     1.68
## 744       GB 1992         Misc                               Nintendo     0.87
## 745       GB 2000     Platform                               Nintendo     1.04
## 746      PS3 2012       Action                            Square Enix     0.59
## 747       GB 2000 Role-Playing           Konami Digital Entertainment     0.00
## 748      PS2 2002       Racing                                    THQ     1.92
## 749     XOne 2013       Racing                 Microsoft Game Studios     1.21
## 750     X360 2013       Sports                        Electronic Arts     1.97
## 751       DS 2006 Role-Playing                               Nintendo     1.29
## 752      GBA 2003 Role-Playing                               Nintendo     1.48
## 753     X360 2010 Role-Playing                            Square Enix     1.27
## 754      N64 1998   Simulation                               Nintendo     1.60
## 755      NES 1984       Sports                               Nintendo     0.48
## 756       PC 2001   Simulation                        Electronic Arts     1.23
## 757      Wii 2009       Sports                                Ubisoft     1.51
## 758       PS 2000      Shooter            Sony Computer Entertainment     1.50
## 759      PS4 2015      Shooter                                Ubisoft     0.54
## 760      NES 1987       Sports                               Nintendo     0.14
## 761     XOne 2014       Sports                        Electronic Arts     0.60
## 762      PSP 2007      Shooter                             Activision     0.52
## 763     SNES 1996 Role-Playing                               Nintendo     0.66
## 764      NES 1983         Misc                               Nintendo     0.01
## 765      NES 1988       Racing                               Nintendo     1.47
## 766       PC 1992   Simulation                                  Maxis     1.20
## 767     2600 1981      Shooter                                 Imagic     1.99
## 768      PS2 2004   Simulation           Konami Digital Entertainment     1.04
## 769       DS 2006       Puzzle                               Nintendo     0.64
## 770      GBA 2003 Role-Playing                             SquareSoft     0.82
## 771      PS4 2016       Action                                Ubisoft     0.59
## 772       DS 2010       Action             Disney Interactive Studios     0.93
## 773       DS 2006 Role-Playing                            Square Enix     0.91
## 774      Wii 2010     Platform                               Nintendo     1.47
## 775       XB 2001       Racing                 Microsoft Game Studios     1.37
## 776       GB 1989       Sports                               Nintendo     0.83
## 777      PS3 2011       Sports                   Take-Two Interactive     1.61
## 778      PS3 2009      Shooter                   Take-Two Interactive     1.20
## 779      N64 2000       Sports                             Activision     1.68
## 780      PS3 2008       Sports           Konami Digital Entertainment     0.11
## 781      PS2 2002       Racing                        Electronic Arts     1.68
## 782      Wii 2010       Sports                               Nintendo     0.90
## 783      Wii 2008         Misc                              MTV Games     1.35
## 784      PS2 2003       Action                             Tecmo Koei     0.63
## 785     X360 2011     Fighting Warner Bros. Interactive Entertainment     1.63
## 786       PS 1998 Role-Playing                             SquareSoft     0.94
## 787      PS2 2002     Platform                                    THQ     1.17
## 788       XB 2002       Action                 Microsoft Game Studios     1.54
## 789      PSP 2005       Racing                        Electronic Arts     1.77
## 790     X360 2011      Shooter                         Valve Software     1.41
## 791      PS2 2005       Action                                 Capcom     0.99
## 792       PS 1997       Sports                    ASCII Entertainment     0.00
## 793     X360 2006       Action                                 Capcom     1.16
## 794      PS2 2003       Action                                    THQ     1.26
## 795     X360 2010       Action                   Take-Two Interactive     1.84
## 796      Wii 2009         Misc                              Mindscape     1.97
## 797       DS 2006   Simulation                        Electronic Arts     0.92
## 798      PS4 2015      Shooter                        Electronic Arts     0.70
## 799      PSP 2010       Action           Konami Digital Entertainment     0.46
## 800       PC 2010 Role-Playing                             Activision     1.77
## 801      PS2 2002       Puzzle                                    THQ     1.11
## 802      PS3 2008       Racing                        Electronic Arts     0.63
## 803      Wii 2007   Simulation           Konami Digital Entertainment     1.36
## 804       GC 2003         Misc                               Nintendo     0.97
## 805      PS3 2010       Action                   Take-Two Interactive     0.59
## 806       PC 1998     Strategy                        Electronic Arts     2.04
## 807       PC 1994     Strategy                             Activision     0.89
## 808      PS3 2010       Sports                        Electronic Arts     0.79
## 809       PS 2002      Shooter                   Take-Two Interactive     1.54
## 810      PSP 2010 Role-Playing                            Square Enix     0.63
## 811     X360 2009     Fighting                                    THQ     1.48
## 812      PS3 2011 Role-Playing                     Namco Bandai Games     0.75
## 813      GBA 2001     Strategy           Konami Digital Entertainment     1.64
## 814     X360 2007       Racing                        Electronic Arts     1.04
## 815      PS3 2010   Simulation                        Electronic Arts     0.73
## 816     X360 2010       Action                                Ubisoft     1.20
## 817      GBA 2005 Role-Playing                               Nintendo     0.71
## 818      GBA 2004       Action                                    THQ     1.15
## 819       PS 1998       Racing                     Namco Bandai Games     0.68
## 820      PS2 2003     Fighting                     Namco Bandai Games     1.06
## 821      3DS 2013 Role-Playing                               Nintendo     0.89
## 822      PS3 2007       Racing                        Electronic Arts     0.73
## 823       DS 2008         Misc                   Take-Two Interactive     1.23
## 824      PS3 2013       Sports                   Take-Two Interactive     1.43
## 825       DS 2005 Role-Playing                               Nintendo     1.16
## 826       GC 2002         Misc                             Infogrames     1.47
## 827      PS3 2013 Role-Playing                             Activision     0.71
## 828      GEN 1992       Sports                    Arena Entertainment     1.75
## 829     X360 2007       Racing                 Microsoft Game Studios     0.48
## 830       DS 2009 Role-Playing                            Square Enix     1.11
## 831     X360 2011         Misc                 Microsoft Game Studios     1.45
## 832      Wii 2008         Misc                                Ubisoft     0.73
## 833      PS2 2006      Shooter            Sony Computer Entertainment     1.74
## 834      PS2 2005       Action                                Ubisoft     0.71
## 835      GBA 2003     Platform                               Nintendo     1.20
## 836      PS3 2011       Action                        Electronic Arts     0.58
## 837      PS4 2014       Sports                        Electronic Arts     1.53
## 838      N64 1998       Sports                               Nintendo     1.25
## 839     X360 2011         Misc                                Ubisoft     1.47
## 840      PS2 2003       Sports                        Electronic Arts     1.57
## 841      PS3 2008       Action                        Electronic Arts     1.05
## 842     X360 2005      Shooter                             Activision     1.81
## 843     X360 2014       Sports                        Electronic Arts     1.76
## 844     X360 2012       Racing                 Microsoft Game Studios     0.82
## 845       DS 2007       Puzzle                           Midway Games     0.49
## 846     XOne 2016      Shooter                                Ubisoft     1.20
## 847      PS3 2013       Action Warner Bros. Interactive Entertainment     0.77
## 848      3DS 2012 Role-Playing                               Nintendo     0.89
## 849      PS4 2014       Racing            Sony Computer Entertainment     0.35
## 850     SNES 1993     Fighting                               Nintendo     0.52
## 851      PS3 2008     Fighting                           Midway Games     1.48
## 852       PS 1997       Action                             Activision     0.95
## 853       GB 1989       Sports                               Nintendo     0.75
## 854      GBA 2002       Action                        Electronic Arts     1.21
## 855       PS 2002       Action                        Electronic Arts     0.75
## 856     SNES 1991   Simulation                               Nintendo     0.93
## 857     XOne 2013      Shooter                        Electronic Arts     1.25
## 858     X360 2012      Shooter                                 Capcom     1.11
## 859      PS4 2014 Role-Playing                        Electronic Arts     0.72
## 860       DS 2010     Platform                                   Sega     0.99
## 861      PS2 2002     Platform                  Universal Interactive     0.74
## 862      Wii 2008      Shooter                             Activision     1.20
## 863      PS2 2003       Action                                 Capcom     0.71
## 864      PS3 2008       Racing                        Electronic Arts     1.01
## 865     2600 1981       Action                                  Atari     1.84
## 866     X360 2013      Shooter                   Take-Two Interactive     1.22
## 867      PSP 2004       Sports            Sony Computer Entertainment     0.50
## 868      NES 1986       Racing                               Nintendo     1.13
## 869      NES 1985       Sports                               Nintendo     0.18
## 870       DS 2006     Platform                               Nintendo     0.79
## 871     X360 2006      Shooter                                Ubisoft     1.09
## 872     X360 2014      Shooter                             Activision     1.30
## 873      PS2 2003       Racing                          Vivendi Games     0.74
## 874       XB 2005       Action                   Take-Two Interactive     1.26
## 875       PC 1994      Shooter                              LucasArts     1.09
## 876      PS2 2003       Sports                        Electronic Arts     1.69
## 877      PS2 2003     Fighting                        Electronic Arts     0.95
## 878     X360 2008       Sports                        Electronic Arts     0.49
## 879       PC 1999         Misc             Disney Interactive Studios     1.94
## 880       PS 2001    Adventure                                    THQ     0.59
## 881       GB 1989       Puzzle                               Nintendo     0.96
## 882      PS2 2004     Fighting                                  Atari     1.09
## 883       PS 1997       Racing            Sony Computer Entertainment     1.41
## 884      PS2 2002      Shooter                                Ubisoft     1.42
## 885      PS2 2004 Role-Playing                             Activision     1.00
## 886     X360 2013       Action Warner Bros. Interactive Entertainment     1.15
## 887      PS3 2008         Misc                             Activision     1.10
## 888     SNES 1993     Fighting                  Acclaim Entertainment     1.48
## 889      SAT 1995     Fighting                                   Sega     0.34
## 890       GB 1998       Puzzle                               Nintendo     1.06
## 891     X360 2008     Fighting                           Midway Games     1.53
## 892      PS3 2014       Action                                Ubisoft     0.56
## 893      Wii 2008       Sports                               Nintendo     1.51
## 894     X360 2013       Action                            Square Enix     0.86
## 895       GB 2001       Action                               Nintendo     0.92
## 896     X360 2009       Racing                        Electronic Arts     0.73
## 897      Wii 2008         Misc                        Electronic Arts     0.87
## 898      PS2 2001      Shooter                                    THQ     0.76
## 899       PC 2003   Simulation                        Electronic Arts     1.03
## 900      PS2 2004       Racing                                    THQ     0.94
## 901       PS 1996         Misc            Sony Computer Entertainment     0.26
## 902      Wii 2009         Misc             Disney Interactive Studios     1.06
## 903      N64 2000         Misc                               Nintendo     0.72
## 904      Wii 2008       Action                              LucasArts     1.14
## 905      Wii 2008         Misc                           Midway Games     1.30
## 906      PS4 2015      Shooter                             Activision     0.77
## 907      Wii 2011       Action                              LucasArts     1.08
## 908       GC 2001   Simulation                              LucasArts     1.03
## 909      PS3 2012      Shooter                   Take-Two Interactive     0.59
## 910      PS4 2013       Racing                        Electronic Arts     0.73
## 911      PS3 2008       Sports                        Electronic Arts     1.56
## 912      3DS 2013 Role-Playing                               Nintendo     0.21
## 913      PS3 2009     Platform            Sony Computer Entertainment     1.05
## 914       PS 1999 Role-Playing           Konami Digital Entertainment     1.37
## 915      PS2 2004     Fighting                           Midway Games     0.92
## 916       PS 1999       Sports            Sony Computer Entertainment     0.25
## 917      PS2 2005      Shooter                        Electronic Arts     0.89
## 918       PS 1998     Fighting                                    THQ     1.42
## 919      PS2 2007         Misc             Disney Interactive Studios     0.47
## 920       GC 2002    Adventure                               Nintendo     0.96
## 921       PS 1998       Sports                        Electronic Arts     0.22
## 922      PS2 2001       Action                                    THQ     0.53
## 923      3DS 2013     Platform                               Nintendo     0.73
## 924       GB 2001    Adventure                               Nintendo     0.87
## 925       XB 2005       Sports                        Electronic Arts     1.75
## 926      PS2 2004     Platform                             Activision     1.12
## 927       PS 1999 Role-Playing            Sony Computer Entertainment     0.94
## 928      N64 1997     Platform                  Acclaim Entertainment     1.37
## 929      PS2 2004         Misc            Sony Computer Entertainment     0.00
## 930      PS4 2014     Platform            Sony Computer Entertainment     0.64
## 931      PS2 2001       Sports                        Electronic Arts     0.91
## 932       DS 2009       Action             Disney Interactive Studios     1.34
## 933       PS 1999 Role-Playing                             SquareSoft     0.62
## 934      Wii 2010       Action                             Activision     0.85
## 935      3DS 2013         Misc                               Nintendo     0.61
## 936      PS2 2004     Platform            Sony Computer Entertainment     1.33
## 937      Wii 2007         Misc                                Ubisoft     0.83
## 938      GBA 2004 Role-Playing                            Square Enix     1.26
## 939      NES 1984       Action                               Nintendo     0.80
## 940      PS3 2011       Action            Sony Computer Entertainment     1.05
## 941      PS2 2001       Racing                                Unknown     0.00
## 942      PS3 2009 Role-Playing                     Namco Bandai Games     0.97
## 943      PS2 2005       Sports                        Electronic Arts     1.53
## 944      N64 1998   Simulation                               Nintendo     0.83
## 945      GBA 2005         Misc                                    THQ     1.31
## 946       PC 2012 Role-Playing                             Activision     0.84
## 947       PS 1996       Racing            Sony Computer Entertainment     1.33
## 948      PS4 2015       Action                            Square Enix     0.46
## 949     SNES 1993 Role-Playing                             SquareSoft     0.25
## 950     X360 2007      Shooter                        Electronic Arts     1.09
## 951       PS 1995   Simulation            Sony Computer Entertainment     0.92
## 952      3DS 2014     Platform                               Nintendo     0.61
## 953      GEN 1994     Platform                                   Sega     1.24
## 954      PS2 2001         Misc                     Namco Bandai Games     1.73
## 955       PC 2001   Simulation                        Electronic Arts     1.81
## 956      Wii 2007      Shooter                               Nintendo     0.91
## 957       DS 2010 Role-Playing                               Nintendo     0.22
## 958      PS4 2014       Action                     Bethesda Softworks     0.55
## 959      PS2 2003   Simulation           Konami Digital Entertainment     1.05
## 960       DC 2000       Racing                                   Sega     1.10
## 961      PS2 2002     Fighting                                   Sega     0.78
## 962      PS2 2004     Platform            Sony Computer Entertainment     0.88
## 963      PS2 2008         Misc                             Activision     1.00
## 964      GBA 2002     Platform                                   Sega     0.93
## 965     X360 2006       Sports                        Electronic Arts     1.66
## 966      PS3 2010       Action                   Take-Two Interactive     1.41
## 967       PS 1999       Sports                            989 Studios     1.00
## 968      PS3 2015      Shooter                             Activision     0.49
## 969     SNES 1994     Platform                     Virgin Interactive     1.26
## 970      PS3 2013    Adventure            Sony Computer Entertainment     0.52
## 971     X360 2012       Action                 Microsoft Game Studios     1.05
## 972      PS2 2003       Racing                   Take-Two Interactive     1.25
## 973       DS 2006 Role-Playing                            Square Enix     0.23
## 974       PS 2001       Action                                    THQ     1.12
## 975      PS2 2004       Action            Sony Computer Entertainment     0.39
## 976      3DS 2011       Puzzle                               Nintendo     0.32
## 977      PS3 2010       Action                            Square Enix     0.45
## 978      PS3 2012 Role-Playing                                 Capcom     0.41
## 979     WiiU 2013       Action                               Nintendo     0.93
## 980      PS2 2005       Action                          Vivendi Games     0.85
## 981      Wii 2007         Misc             Disney Interactive Studios     1.16
## 982     WiiU 2013         Misc                               Nintendo     0.31
## 983      PS3 2013       Sports                        Electronic Arts     1.59
## 984     SNES 1991 Role-Playing                                 Square     0.24
## 985      N64 2000     Platform                               Nintendo     0.63
## 986       XB 2001     Fighting                 Microsoft Game Studios     1.19
## 987      PS3 2009     Fighting                                    THQ     1.07
## 988       GB 1991    Adventure                               Nintendo     0.85
## 989       PS 1998     Fighting                  Acclaim Entertainment     1.27
## 990      PS2 2004     Platform                                    THQ     1.06
## 991      GBA 2001 Role-Playing                               Nintendo     0.93
## 992      GEN 1994     Platform                                   Sega     1.02
## 993      NES 1986     Platform                               Nintendo     0.53
## 994      PS2 2004     Fighting                        Electronic Arts     0.86
## 995       XB 2002      Shooter                                Ubisoft     1.23
## 996      PS2 2002       Action                   Take-Two Interactive     0.86
## 997      PS3 2013      Shooter                   Take-Two Interactive     0.72
## 998     X360 2012       Action                            Square Enix     0.68
## 999      GBA 2007       Action                                    THQ     1.26
## 1000    X360 2015      Shooter                             Activision     1.11
## 1001     PS2 2004   Simulation                        Electronic Arts     0.52
## 1002     PS3 2007       Sports                        Electronic Arts     0.35
## 1003     PS2 2001   Simulation                             Activision     0.61
## 1004      PS 1998       Sports                        Electronic Arts     1.68
## 1005     PS3 2013 Role-Playing                            Square Enix     0.90
## 1006      XB 2004      Shooter                             Activision     1.24
## 1007     PS2 2001       Sports           Konami Digital Entertainment     0.06
## 1008    X360 2007      Shooter                 Microsoft Game Studios     1.00
## 1009     NES 1991       Puzzle                               Nintendo     0.70
## 1010    SNES 1993     Platform                                 Capcom     0.94
## 1011     NES 1993     Platform                               Nintendo     0.79
## 1012      DS 2009   Simulation                              505 Games     0.83
## 1013     PS2 2008   Simulation           Konami Digital Entertainment     0.85
## 1014     GBA 2004         Misc                                    THQ     1.25
## 1015      PS 1999    Adventure                              LucasArts     0.72
## 1016     PS2 2002 Role-Playing                     Namco Bandai Games     0.63
## 1017     PS3 2011      Shooter                                  Valve     0.83
## 1018     Wii 2009         Misc                              MTV Games     1.19
## 1019    XOne 2015       Racing                 Microsoft Game Studios     0.69
## 1020     Wii 2010     Platform                                   Sega     0.96
## 1021     N64 1996       Racing                               Nintendo     1.69
## 1022      PS 1998       Sports                        Electronic Arts     1.66
## 1023     PS4 2014 Role-Playing                             Activision     0.49
## 1024     PSV 2011      Shooter            Sony Computer Entertainment     0.59
## 1025     PS3 2014      Shooter                             Activision     0.67
## 1026     PS2 2001       Sports                        Electronic Arts     0.85
## 1027     PS4 2016      Shooter                             Activision     0.64
## 1028      PS 1998       Action                            989 Studios     1.48
## 1029      GB 2001       Action                        Electronic Arts     0.94
## 1030     Wii 2013       Action             Disney Interactive Studios     1.15
## 1031     GBA 2002     Platform                  Universal Interactive     0.95
## 1032    X360 2012       Action                     Bethesda Softworks     1.06
## 1033     PS2 2003       Action                   Take-Two Interactive     0.85
## 1034     PS4 2015      Shooter            Sony Computer Entertainment     0.61
## 1035     PS4 2015 Role-Playing                     Bethesda Softworks     0.66
## 1036     PS2 2008      Shooter                             Activision     0.61
## 1037      DS 2008   Simulation                                Ubisoft     0.70
## 1038      PC 2011      Shooter                             Activision     0.41
## 1039      XB 2004       Sports                        Electronic Arts     1.61
## 1040     PS2 2003 Role-Playing                                Ubisoft     0.80
## 1041      PC 2010   Simulation                        Electronic Arts     0.59
## 1042     Wii 2009       Puzzle Warner Bros. Interactive Entertainment     1.43
## 1043      PS 1998     Platform                             Activision     0.99
## 1044      DS 2007         Misc                              Mindscape     1.15
## 1045     PS2 2004   Simulation     Sony Computer Entertainment Europe     0.88
## 1046      XB 2003       Racing                        Electronic Arts     1.09
## 1047      DS 2006         Misc                               Nintendo     0.00
## 1048     GBA 2001       Puzzle                                    THQ     1.25
## 1049     Wii 2009       Sports                       Activision Value     1.58
## 1050     PS4 2014       Racing                                Ubisoft     0.34
## 1051     PS2 2009       Sports                        Electronic Arts     0.23
## 1052     Wii 2008       Sports                     Namco Bandai Games     0.99
## 1053      DS 2007       Puzzle                               Nintendo     0.49
## 1054     Wii 2011     Platform                               Nintendo     0.62
## 1055    SNES 1993       Puzzle                              Banpresto     0.00
## 1056      DS 2007       Action                            D3Publisher     0.69
## 1057     PS2 2006       Sports                        Electronic Arts     1.41
## 1058     PS2 2005      Shooter            Sony Computer Entertainment     1.22
## 1059    XOne 2014       Sports                   Take-Two Interactive     1.36
## 1060     PS3 2008       Action                                    THQ     0.88
## 1061    X360 2013       Action                            Deep Silver     1.01
## 1062      PS 1999         Misc            Sony Computer Entertainment     0.94
## 1063     PS3 2009 Role-Playing                        Electronic Arts     0.96
## 1064    X360 2015       Sports                        Electronic Arts     0.55
## 1065     N64 1997     Fighting                                    THQ     1.37
## 1066      PS 1998     Fighting                                    THQ     1.10
## 1067     GBA 2001       Action                        Electronic Arts     0.87
## 1068    X360 2008       Racing                        Electronic Arts     0.79
## 1069     GBA 2002 Role-Playing                             Infogrames     1.52
## 1070      PC 2010     Strategy                   Take-Two Interactive     0.98
## 1071      GC 2005       Action                                 Capcom     0.98
## 1072     PSV 2012       Action                             Activision     0.80
## 1073     PSP 2007      Shooter                              LucasArts     0.90
## 1074     PS2 2006         Misc                     Oxygen Interactive     0.82
## 1075      PS 1997       Sports            Sony Computer Entertainment     1.58
## 1076    X360 2012       Action Warner Bros. Interactive Entertainment     0.90
## 1077      GB 1992       Puzzle                               Nintendo     0.59
## 1078      PS 1997      Shooter                     Namco Bandai Games     0.38
## 1079      PC 2003   Simulation                        Electronic Arts     1.67
## 1080     Wii 2008       Action                              LucasArts     1.23
## 1081     Wii 2007   Simulation                        Electronic Arts     0.91
## 1082     GBA 2002       Action                               Nintendo     1.18
## 1083     Wii 2008       Sports                                Ubisoft     0.94
## 1084     PS2 2003       Sports                        Electronic Arts     0.93
## 1085     Wii 2008       Sports                                    THQ     0.45
## 1086      PS 2000       Sports                        Electronic Arts     1.58
## 1087     PS3 2006     Fighting                        Electronic Arts     0.81
## 1088     PS4 2013     Platform     Sony Computer Entertainment Europe     0.43
## 1089      XB 2005      Shooter                             Activision     1.22
## 1090     NES 1989     Platform                                 Capcom     0.91
## 1091      PS 2001       Sports                             Activision     1.09
## 1092     GBA 2001    Adventure                                    THQ     0.59
## 1093      PC 2013     Strategy                             Activision     0.82
## 1094      XB 2003       Racing                 Microsoft Game Studios     0.97
## 1095     PS2 2001       Racing                           Midway Games     1.13
## 1096     PS2 2003       Sports                        Electronic Arts     1.35
## 1097     PS2 2003     Platform                                    THQ     1.08
## 1098     PS4 2015       Action Warner Bros. Interactive Entertainment     0.63
## 1099     PS3 2007       Action            Sony Computer Entertainment     0.57
## 1100     GEN 1992     Fighting                                   Sega     1.00
## 1101     PS2 2000       Sports                        Electronic Arts     0.78
## 1102    X360 2012      Shooter                   Take-Two Interactive     0.86
## 1103     PS2 2004       Sports                           Midway Games     0.81
## 1104    X360 2006       Racing                        Electronic Arts     0.76
## 1105     PS2 2002       Sports                        Electronic Arts     1.25
## 1106     PS2 2005     Fighting                                  Atari     0.96
## 1107    2600 1981       Puzzle                                  Atari     1.54
## 1108      GC 2004         Misc                               Nintendo     0.90
## 1109    SNES 1991      Shooter                               Nintendo     1.06
## 1110     Wii 2011         Misc                     Namco Bandai Games     0.48
## 1111     PS2 2004 Role-Playing                       Enix Corporation     0.00
## 1112    X360 2008      Shooter                        Electronic Arts     1.09
## 1113      DS 2007 Role-Playing                            Square Enix     0.32
## 1114     GBA 2004     Platform                               Nintendo     0.80
## 1115     Wii 2011       Action             Disney Interactive Studios     0.76
## 1116    2600 1982       Puzzle                                  Atari     1.52
## 1117      PS 1999      Shooter                Red Storm Entertainment     0.93
## 1118     NES 1986       Action                                 Capcom     0.74
## 1119     PS2 2002       Sports                        Electronic Arts     0.80
## 1120     PS2 2005       Sports                        Electronic Arts     1.44
## 1121     PS2 2004       Action                                Ubisoft     0.54
## 1122    X360 2010   Simulation                 Microsoft Game Studios     1.02
## 1123     PS4 2015    Adventure     Sony Computer Entertainment Europe     0.44
## 1124      XB 2004       Sports                                   Sega     1.54
## 1125    X360 2006   Simulation                 Microsoft Game Studios     0.45
## 1126      GC 2001     Strategy                               Nintendo     0.78
## 1127      PC 2010      Shooter                             Activision     0.58
## 1128     PS3 2011     Platform                                   Sega     0.60
## 1129     PS2 2003       Sports                        Electronic Arts     1.18
## 1130      PS 1999     Platform            Sony Computer Entertainment     0.71
## 1131    X360 2014       Sports                   Take-Two Interactive     1.33
## 1132     PS2 2004       Sports                        Electronic Arts     1.32
## 1133    X360 2010       Action                            Square Enix     0.59
## 1134     PS3 2008         Misc                        Electronic Arts     0.99
## 1135     PS2 2005       Sports                             Activision     0.80
## 1136    X360 2011      Shooter                     Bethesda Softworks     0.82
## 1137      DS 2006       Sports                               Nintendo     0.99
## 1138      GC 2003       Racing                               Nintendo     1.01
## 1139      PS 1998       Racing                        Electronic Arts     0.90
## 1140     Wii 2006 Role-Playing                               Nintendo     0.80
## 1141     PS2 2004       Sports                        Electronic Arts     0.79
## 1142    X360 2013      Shooter                 Microsoft Game Studios     0.92
## 1143      GB 1989       Sports                               Nintendo     0.66
## 1144      GB 1998     Strategy           Konami Digital Entertainment     0.00
## 1145      GC 2005       Sports                               Nintendo     0.98
## 1146     PS2 2005         Misc            Sony Computer Entertainment     0.00
## 1147      DS 2007       Action                                    THQ     1.50
## 1148    XOne 2014      Shooter                                Ubisoft     0.79
## 1149     Wii 2008   Simulation           Konami Digital Entertainment     0.95
## 1150      DS 2011         Misc                             Activision     0.40
## 1151     PS2 2005       Action                   Take-Two Interactive     1.30
## 1152    X360 2008       Action                                Ubisoft     0.71
## 1153     N64 1998       Racing                           Video System     0.46
## 1154    2600 1981      Shooter                             Activision     1.49
## 1155      PS 1999       Action           Konami Digital Entertainment     0.71
## 1156      DS 2008 Role-Playing                            Square Enix     0.19
## 1157     PS4 2016       Action                            Hello Games     0.58
## 1158      GC 2003     Platform                                   Sega     1.05
## 1159     PS2 2004       Sports                            Global Star     1.26
## 1160      PC 1996 Role-Playing                             Activision     0.01
## 1161      GC 2006       Action                               Nintendo     1.15
## 1162      PS 1996     Fighting            Sony Computer Entertainment     0.61
## 1163     PS3 2008       Action                                 Capcom     0.58
## 1164    2600 1982     Platform                                  Atari     1.48
## 1165     PS3 2007       Sports           Konami Digital Entertainment     0.04
## 1166    X360 2008     Fighting                                Ubisoft     0.92
## 1167    X360 2010       Action Warner Bros. Interactive Entertainment     0.95
## 1168      PS 1999       Racing                        Electronic Arts     0.88
## 1169     PS4 2014      Shooter                     Bethesda Softworks     0.47
## 1170     Wii 2008       Sports                   Take-Two Interactive     0.87
## 1171      DS 2008         Misc                             Activision     0.85
## 1172      DS 2008   Simulation                        Electronic Arts     0.81
## 1173      PS 2000         Misc            Sony Computer Entertainment     0.88
## 1174    X360 2012       Racing                        Electronic Arts     0.62
## 1175     Wii 2009         Misc                             Activision     0.94
## 1176      DS 2008         Misc             Disney Interactive Studios     0.64
## 1177     3DS 2012       Action                            Square Enix     0.88
## 1178      DS 2007       Action             Disney Interactive Studios     1.06
## 1179      DS 2009 Role-Playing                               Nintendo     0.58
## 1180     GBA 2002     Platform                          Vivendi Games     0.85
## 1181     PS2 2009       Sports           Konami Digital Entertainment     0.10
## 1182     PS2 2001       Sports                        Electronic Arts     0.77
## 1183     PS2 2002      Shooter                           Gotham Games     0.98
## 1184      GC 2005         Misc                               Nintendo     0.95
## 1185     PS3 2012       Sports           Konami Digital Entertainment     0.18
## 1186     PS2 2000       Racing                   Take-Two Interactive     0.77
## 1187     PS2 2006     Fighting                        Electronic Arts     1.07
## 1188     NES 1988     Platform                               Nintendo     0.59
## 1189      PS 1995       Action            Sony Computer Entertainment     1.32
## 1190     PS4 2016 Role-Playing                     Namco Bandai Games     0.58
## 1191    SNES 1990       Action                                 Capcom     0.67
## 1192      GB 2001 Role-Playing                       Enix Corporation     0.00
## 1193     GBA 2003         Misc                               Nintendo     0.68
## 1194     PS4 2013       Action Warner Bros. Interactive Entertainment     0.59
## 1195    X360 2010       Action                   Take-Two Interactive     0.84
## 1196     PS3 2012       Action                     Bethesda Softworks     0.72
## 1197     PS2 2002       Racing                                  Atari     0.76
## 1198      XB 2003      Shooter                                Ubisoft     0.91
## 1199     Wii 2008       Sports                                  Atari     0.79
## 1200     PS3 2010      Shooter                   Take-Two Interactive     0.85
## 1201     N64 2000       Action                        Electronic Arts     1.13
## 1202      PS 2001       Action                             Activision     0.57
## 1203    XOne 2014       Action                                Ubisoft     0.90
## 1204     PS3 2010       Action                              LucasArts     0.80
## 1205     PS3 2011 Role-Playing                     Namco Bandai Games     0.60
## 1206      PC 1999     Strategy                       Westwood Studios     1.55
## 1207      DS 2011     Strategy Warner Bros. Interactive Entertainment     1.07
## 1208    WiiU 2015         Misc                               Nintendo     0.69
## 1209    XOne 2013       Action                 Microsoft Game Studios     1.06
## 1210     Wii 2007       Action                                 Capcom     0.68
## 1211     3DS 2015 Role-Playing                               Nintendo     0.71
## 1212     PS2 2000 Role-Playing            Sony Computer Entertainment     0.83
## 1213      PC 2003     Strategy                             Activision     0.58
## 1214    X360 2006      Shooter                                Ubisoft     1.40
## 1215      DS 2008    Adventure             Disney Interactive Studios     0.86
## 1216     PS2 2005       Sports                        Electronic Arts     1.26
## 1217      PS 1996      Shooter                        Fox Interactive     0.85
## 1218      PC 2012      Shooter                             Activision     0.63
## 1219     PS3 2009     Fighting                        Electronic Arts     0.92
## 1220     Wii 2008   Simulation                        Electronic Arts     0.71
## 1221      DS 2007       Action                        Electronic Arts     0.57
## 1222    SNES 1994     Fighting                  Acclaim Entertainment     1.19
## 1223      PS 1998       Sports                            989 Studios     1.44
## 1224     Wii 2009      Shooter                             Activision     0.95
## 1225    XOne 2016       Sports                        Electronic Arts     0.17
## 1226      GC 2003       Sports                               Nintendo     1.09
## 1227      PS 1997       Sports                        Electronic Arts     0.85
## 1228    WiiU 2014     Platform                               Nintendo     0.73
## 1229    X360 2011      Shooter                        Electronic Arts     0.94
## 1230     PSP 2007       Racing                                   Sega     0.44
## 1231      PS 1997     Fighting                        Electronic Arts     1.07
## 1232     PS2 2002       Sports                        Electronic Arts     0.36
## 1233      PS 1996       Racing                        Electronic Arts     1.43
## 1234     NES 1984       Racing                               Nintendo     0.00
## 1235     NES 1984      Shooter                     Namco Bandai Games     0.18
## 1236      PS 1998       Racing                        Electronic Arts     1.45
## 1237      PS 1998       Sports                        Electronic Arts     1.43
## 1238     PS3 2010       Action                   Take-Two Interactive     0.50
## 1239     PS3 2006      Shooter                             Activision     0.60
## 1240      GC 2002       Puzzle                                  Atari     1.11
## 1241     PS2 2002       Action                     Namco Bandai Games     1.26
## 1242    XOne 2014       Sports                        Electronic Arts     1.30
## 1243     Wii 2010       Racing                                   Sega     0.65
## 1244    X360 2011       Action                              LucasArts     0.84
## 1245      PC 2011       Sports                                   Sega     0.02
## 1246     3DS 2013 Role-Playing                                 GungHo     0.00
## 1247     NES 1988       Action                                 Capcom     0.93
## 1248      PS 2001     Fighting                        Electronic Arts     0.23
## 1249      PS 1997       Sports                        Electronic Arts     1.41
## 1250     PS2 2007       Action                        Electronic Arts     0.35
## 1251      PS 1997         Misc                     Hasbro Interactive     1.18
## 1252      GC 2003     Fighting                     Namco Bandai Games     0.99
## 1253     PS3 2011      Shooter            Sony Computer Entertainment     0.64
## 1254     PS2 2000       Racing                    Crave Entertainment     0.66
## 1255      PC 2010 Role-Playing                            Square Enix     0.86
## 1256      PS 1998       Sports                           Midway Games     1.41
## 1257     PS2 2002      Shooter                                    THQ     0.49
## 1258      DS 2010       Puzzle Warner Bros. Interactive Entertainment     1.08
## 1259     PS2 2000       Sports                        Electronic Arts     1.19
## 1260     N64 2000     Fighting                                    THQ     1.20
## 1261     NES 1985     Platform                               Nintendo     0.46
## 1262     SCD 1993     Platform                                   Sega     1.00
## 1263     NES 1986     Platform                            Hudson Soft     0.00
## 1264    X360 2010       Action                                 Capcom     0.75
## 1265     PS3 2008         Misc                              MTV Games     1.13
## 1266      PS 1998       Action                     Namco Bandai Games     1.21
## 1267     Wii 2009         Misc             Disney Interactive Studios     1.08
## 1268      GC 2003 Role-Playing                               Nintendo     0.72
## 1269      XB 2002      Shooter                        Electronic Arts     1.00
## 1270     PS2 2008       Sports                        Electronic Arts     1.22
## 1271      DS 2008    Adventure                                    THQ     1.00
## 1272     N64 2000     Platform                               Nintendo     0.82
## 1273     PS2 2006         Misc            Sony Computer Entertainment     0.00
## 1274    X360 2008       Action                             Activision     0.82
## 1275     Wii 2010   Simulation                        Electronic Arts     0.61
## 1276     Wii 2009       Sports                               Nintendo     0.37
## 1277      DS 2006    Adventure                                    THQ     0.43
## 1278     PS2 2006      Shooter                            Square Enix     0.47
## 1279     NES 1990       Sports                               Nintendo     0.28
## 1280     N64 1999     Fighting                                    THQ     1.20
## 1281      GB 1997     Platform                               Nintendo     0.70
## 1282     PS3 2011 Role-Playing                        Electronic Arts     0.78
## 1283     PS2 2005       Sports                   Take-Two Interactive     0.72
## 1284     PS2 2004     Fighting                        Electronic Arts     1.08
## 1285      XB 2004       Action                                Ubisoft     0.82
## 1286      DS 2007   Simulation                                Ubisoft     0.39
## 1287     PSV 2012       Action                                Ubisoft     0.58
## 1288     PS3 2008     Fighting                                Ubisoft     0.72
## 1289     N64 1999       Action                               Nintendo     0.62
## 1290     GBA 2003     Platform                                    THQ     1.04
## 1291    X360 2006     Fighting                        Electronic Arts     1.33
## 1292     PS3 2013       Action           Konami Digital Entertainment     0.45
## 1293      DS 2008 Role-Playing                            Square Enix     0.69
## 1294    X360 2010       Action                              LucasArts     0.95
## 1295     Wii 2008      Shooter                                   Sega     0.78
## 1296      DS 2007    Adventure             Disney Interactive Studios     1.15
## 1297     PSV 2012     Platform            Sony Computer Entertainment     0.40
## 1298      PS 1998 Role-Playing                             SquareSoft     0.29
## 1299     GBA 2004     Platform                                    THQ     1.02
## 1300    X360 2012      Shooter                                Ubisoft     0.93
## 1301    X360 2008      Shooter                        Electronic Arts     0.81
## 1302     PS2 2003         Misc                           Midway Games     0.72
## 1303      DS 2008     Platform                                    THQ     0.46
## 1304      PS 2003       Sports                        Electronic Arts     0.81
## 1305    X360 2011      Shooter                                    THQ     0.83
## 1306      GC 2001       Puzzle                                  Atari     0.95
## 1307    2600 1981     Platform                                 Coleco     1.36
## 1308      PS 1998     Fighting                         GT Interactive     0.81
## 1309      GC 2005       Sports                               Nintendo     0.93
## 1310     PS3 2012 Role-Playing                        Electronic Arts     0.63
## 1311     Wii 2012       Action Warner Bros. Interactive Entertainment     0.94
## 1312     PS3 2012       Action                        Electronic Arts     0.47
## 1313      PS 1998     Fighting                                    THQ     1.17
## 1314     PSP 2006     Fighting                                   Sega     0.53
## 1315     3DS 2013     Platform                               Nintendo     0.51
## 1316     PS2 2004       Action                                 Capcom     0.37
## 1317    X360 2013 Role-Playing                             Activision     0.89
## 1318    XOne 2015       Action Warner Bros. Interactive Entertainment     0.86
## 1319     PS3 2008      Shooter                   Take-Two Interactive     0.75
## 1320     PS2 2004      Shooter                   Take-Two Interactive     0.71
## 1321      PC 2011     Strategy                                Ubisoft     0.00
## 1322     PS2 2003       Action                                 Capcom     0.54
## 1323     Wii 2007         Misc                        Electronic Arts     0.53
## 1324      GB 1996   Simulation                     Namco Bandai Games     0.00
## 1325     NES 1984         Misc                               Nintendo     0.00
## 1326    SNES 1993     Fighting                     Namco Bandai Games     0.00
## 1327      GB 1997   Simulation                     Namco Bandai Games     0.00
## 1328     N64 1999         Misc                     Namco Bandai Games     1.24
## 1329     Wii 2008       Puzzle                        Electronic Arts     0.97
## 1330      DS 2010 Role-Playing                            Square Enix     0.11
## 1331     PS2 2005       Sports                             Activision     1.38
## 1332      DS 2007         Misc                                Ubisoft     0.37
## 1333      DS 2007         Misc                      Rising Star Games     0.79
## 1334     PS2 2007         Misc            Sony Computer Entertainment     0.04
## 1335     PSP 2006       Racing                                   Sega     0.73
## 1336      PC 2013   Simulation                        Electronic Arts     0.48
## 1337    SNES 1996     Platform                               Nintendo     0.26
## 1338     PS3 2014      Shooter                                Ubisoft     0.33
## 1339    X360 2007     Fighting                                    THQ     0.92
## 1340    X360 2010       Racing                 Microsoft Game Studios     0.92
## 1341     Wii 2006         Misc                                Ubisoft     1.23
## 1342     PS3 2013       Racing                        Electronic Arts     0.33
## 1343     PS2 2004       Sports                        Electronic Arts     1.03
## 1344     PS3 2011      Shooter                        Electronic Arts     0.73
## 1345     PS2 2002       Sports                        Electronic Arts     1.16
## 1346      PS 1999       Action                     Hasbro Interactive     0.80
## 1347    X360 2013       Action             Disney Interactive Studios     0.96
## 1348     Wii 2009       Action                             Activision     0.91
## 1349    X360 2009         Misc                                   Sega     0.85
## 1350     Wii 2008       Sports                        Electronic Arts     0.81
## 1351      GB 1988     Platform                                 Capcom     0.82
## 1352     GBA 2004     Platform                               Nintendo     0.00
## 1353      PS 1999       Sports                        Electronic Arts     0.79
## 1354     3DS 2013 Role-Playing                            Square Enix     0.07
## 1355     PS2 2002       Sports                             Activision     0.70
## 1356     PS3 2010     Fighting                                    THQ     0.80
## 1357     PS2 2005       Sports                        Electronic Arts     1.35
## 1358     GBA 2004       Action                               Nintendo     0.89
## 1359     PS2 2004       Sports                        Electronic Arts     1.15
## 1360    X360 2011     Platform                                   Sega     0.71
## 1361    SNES 1994       Action                               Nintendo     0.57
## 1362     NES 1987       Sports                     Namco Bandai Games     0.12
## 1363    X360 2008       Action                        Electronic Arts     0.89
## 1364      GC 2002       Action                                 Capcom     0.63
## 1365      DS 2009 Role-Playing                               Nintendo     0.00
## 1366     PS4 2014       Action                            Square Enix     0.47
## 1367     PSP 2006       Action                              LucasArts     0.58
## 1368     Wii 2010       Action             Disney Interactive Studios     0.64
## 1369    X360 2009     Fighting                        Electronic Arts     0.95
## 1370      GC 2005       Action                      Eidos Interactive     1.09
## 1371    X360 2013     Fighting Warner Bros. Interactive Entertainment     0.97
## 1372     PS3 2014       Sports                        Electronic Arts     1.07
## 1373     GEN 1994     Platform                     Virgin Interactive     0.97
## 1374     PSP 2004       Racing            Sony Computer Entertainment     0.36
## 1375     Wii 2010       Action                               Nintendo     0.87
## 1376      PS 1999     Fighting                        Electronic Arts     1.02
## 1377     PS2 2003       Racing            Sony Computer Entertainment     0.00
## 1378     PS2 2001       Racing            Sony Computer Entertainment     1.19
## 1379     PS2 2004       Racing                        Electronic Arts     0.69
## 1380     Wii 2010      Shooter                             Activision     0.82
## 1381      XB 2002       Action                             Activision     1.07
## 1382     PS2 2008       Racing                        Electronic Arts     0.38
## 1383      PS 1996       Sports            Sony Computer Entertainment     1.15
## 1384     PS3 2008       Action                                Ubisoft     0.43
## 1385     GBA 2004     Platform                                    THQ     0.74
## 1386     NES 1990 Role-Playing                             SquareSoft     0.00
## 1387      PC 2013      Shooter                        Electronic Arts     0.38
## 1388     PS2 2002       Racing                            Codemasters     0.03
## 1389      PS 2001       Sports                        Electronic Arts     0.78
## 1390     PS4 2016      Shooter                     Bethesda Softworks     0.49
## 1391      DS 2007 Role-Playing                            Square Enix     0.34
## 1392      DS 2009       Action                             Activision     1.27
## 1393     PS3 2011      Shooter                            Square Enix     0.50
## 1394    SNES 1994       Sports                  Acclaim Entertainment     1.19
## 1395     NES 1991       Action           Konami Digital Entertainment     1.05
## 1396     PS2 2005       Action                             Tecmo Koei     0.24
## 1397     Wii 2007       Action             Disney Interactive Studios     0.87
## 1398     PS3 2012       Action                                    THQ     0.51
## 1399    X360 2011      Shooter                            Square Enix     0.76
## 1400      XB 2003       Action                             Activision     0.96
## 1401     PSP 2005   Simulation                        Electronic Arts     0.49
## 1402     N64 2000 Role-Playing                               Nintendo     0.58
## 1403     3DS 2012 Role-Playing                               Nintendo     0.50
## 1404    X360 2014      Shooter                        Electronic Arts     0.87
## 1405      PS 1998      Shooter                   Take-Two Interactive     0.77
## 1406     PSV 2012 Role-Playing                                  Atlus     0.46
## 1407     PS3 2010       Action                                 Capcom     0.43
## 1408     Wii 2009         Misc                        Electronic Arts     0.71
## 1409     Wii 2007    Adventure             Disney Interactive Studios     1.24
## 1410      DS 2009       Puzzle                              505 Games     0.80
## 1411     PS2 2001       Sports                  Acclaim Entertainment     0.67
## 1412    X360 2011       Action                        Electronic Arts     0.63
## 1413     PS2 2008       Action                              LucasArts     0.60
## 1414     PS3 2014       Action                                Ubisoft     0.46
## 1415     PS3 2006       Racing                     Namco Bandai Games     0.24
## 1416      PS 1998         Misc                             Activision     0.76
## 1417    XOne 2014       Racing                 Microsoft Game Studios     0.50
## 1418     PS3 2008       Racing            Sony Computer Entertainment     0.43
## 1419      DS 2010     Platform                                   Sega     0.74
## 1420      XB 2004 Role-Playing                             Activision     0.99
## 1421     PS3 2010       Action Warner Bros. Interactive Entertainment     0.55
## 1422     N64 1998     Strategy                               Nintendo     0.00
## 1423     PS3 2014       Sports                   Take-Two Interactive     0.86
## 1424      XB 2004      Shooter                                Ubisoft     0.86
## 1425     GBA 2003     Platform                          Vivendi Games     0.63
## 1426    X360 2008       Racing                        Electronic Arts     0.63
## 1427     PS2 2008         Misc            Sony Computer Entertainment     0.23
## 1428     NES 1986      Shooter           Konami Digital Entertainment     0.27
## 1429    SNES 1996 Role-Playing                       Enix Corporation     0.00
## 1430    2600 1981      Shooter                                  Atari     1.26
## 1431     3DS 2014     Platform                               Nintendo     0.47
## 1432    XOne 2013       Action                 Microsoft Game Studios     0.82
## 1433     PS2 2002      Shooter                        Electronic Arts     0.67
## 1434     Wii 2011       Action Warner Bros. Interactive Entertainment     0.76
## 1435     PS3 2011     Fighting                                 Capcom     0.81
## 1436      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 1437     PS3 2010       Racing                            Codemasters     0.25
## 1438      PS 1997       Sports                        Electronic Arts     1.29
## 1439     PSP 2008       Sports                        Electronic Arts     0.23
## 1440      DS 2007         Misc                                  Atari     1.18
## 1441     PSP 2007       Sports                        Electronic Arts     0.20
## 1442      DS 2009       Action                   Take-Two Interactive     0.59
## 1443    X360 2010       Action                 Microsoft Game Studios     0.66
## 1444     PS3 2008      Shooter                        Electronic Arts     0.76
## 1445    XOne 2015     Fighting Warner Bros. Interactive Entertainment     1.00
## 1446     PS2 2004       Action                        Electronic Arts     0.22
## 1447      XB 2003       Racing                          Vivendi Games     0.70
## 1448    X360 2008       Action                                 Capcom     0.79
## 1449     PS3 2008      Shooter                                Ubisoft     0.66
## 1450     PSP 2005 Role-Playing                                 Capcom     0.24
## 1451    X360 2011       Action                        Electronic Arts     0.70
## 1452      PS 1997 Role-Playing                             SquareSoft     0.15
## 1453     PS2 2004         Misc            Sony Computer Entertainment     0.00
## 1454    X360 2007       Sports                        Electronic Arts     0.31
## 1455     PS3 2011    Adventure            Sony Computer Entertainment     0.67
## 1456     PS2 2002       Racing                                  Atari     0.95
## 1457      DS 2005 Role-Playing                               Nintendo     0.77
## 1458    X360 2006      Shooter                                 Capcom     1.09
## 1459     GEN 1994     Fighting                  Acclaim Entertainment     1.03
## 1460      XB 2005      Shooter                             Activision     0.85
## 1461      GC 2004     Platform                               Nintendo     0.84
## 1462     PS2 2006       Racing                        Electronic Arts     1.22
## 1463     PS2 2003      Shooter                   Take-Two Interactive     0.65
## 1464      PC 2000     Strategy                        Electronic Arts     1.32
## 1465     PS2 2004       Sports                        Electronic Arts     1.10
## 1466     PS3 2007     Fighting                                    THQ     0.62
## 1467     PS2 2004     Platform            Sony Computer Entertainment     1.27
## 1468    X360 2010       Sports                                Ubisoft     0.79
## 1469     PS3 2011      Shooter                     Bethesda Softworks     0.47
## 1470    X360 2013     Platform                             Activision     0.86
## 1471     PS4 2013       Sports                   Take-Two Interactive     0.89
## 1472     GBA 2002       Action                             Activision     0.92
## 1473     N64 1998     Fighting                  Acclaim Entertainment     1.08
## 1474      GB 2000       Sports                             Activision     0.90
## 1475     GBA 2003   Simulation                        Electronic Arts     0.93
## 1476      PS 2000       Sports                        Electronic Arts     0.74
## 1477      GC 2004      Shooter                               Nintendo     0.87
## 1478    X360 2010     Fighting                                    THQ     0.90
## 1479     PS3 2013 Role-Playing                            Square Enix     0.43
## 1480     PS2 2004       Racing                         TDK Mediactive     0.65
## 1481      DS 2007   Simulation                                Ubisoft     0.71
## 1482      DS 2010 Role-Playing                               Nintendo     0.51
## 1483    XOne 2014       Action Warner Bros. Interactive Entertainment     0.72
## 1484     PSP 2005       Racing                        Electronic Arts     0.69
## 1485     PS3 2008       Action Warner Bros. Interactive Entertainment     0.72
## 1486     PS3 2014 Role-Playing                     Namco Bandai Games     0.40
## 1487      PC 2008 Role-Playing                             Activision     0.01
## 1488     PS3 2014 Role-Playing                            Square Enix     0.52
## 1489    X360 2014       Action Warner Bros. Interactive Entertainment     0.69
## 1490      PS 1998       Racing                            Codemasters     0.03
## 1491     NES 1985       Puzzle                               Nintendo     0.73
## 1492     PS2 2002       Sports                                  Atari     1.06
## 1493      PS 1997     Fighting                      Eidos Interactive     0.73
## 1494     GBA 2003 Role-Playing                                 Capcom     0.31
## 1495     PS3 2010      Shooter            Sony Computer Entertainment     0.77
## 1496      PS 1996       Sports                        Electronic Arts     0.73
## 1497      DS 2011       Racing             Disney Interactive Studios     0.72
## 1498    X360 2012       Action                             Activision     0.75
## 1499     PSP 2008       Action Warner Bros. Interactive Entertainment     0.57
## 1500      PS 1996       Racing                              ASC Games     0.73
## 1501     PS2 2002       Racing                     Bethesda Softworks     0.64
## 1502    X360 2009         Misc                              MTV Games     0.97
## 1503    X360 2009     Fighting                     Namco Bandai Games     0.71
## 1504    X360 2009       Action                             Activision     0.84
## 1505     Wii 2009         Misc                              Zoo Games     1.22
## 1506     PS2 2005     Platform                             Activision     0.78
## 1507      PS 1999    Adventure                                    THQ     0.57
## 1508      DS 2009     Strategy Warner Bros. Interactive Entertainment     0.81
## 1509    2600 1983     Platform                             Activision     1.22
## 1510     PS2 2002      Shooter                  Acclaim Entertainment     0.64
## 1511     Wii 2008         Misc             Disney Interactive Studios     0.68
## 1512     Wii 2008       Sports                                Ubisoft     1.11
## 1513      XB 2004       Racing                        Electronic Arts     0.84
## 1514     PSP 2007       Sports                     Oxygen Interactive     0.01
## 1515     GBA 2002 Role-Playing           Konami Digital Entertainment     0.94
## 1516     PS3 2011       Action                        Electronic Arts     0.45
## 1517     PS2 2006       Sports                        Electronic Arts     1.07
## 1518     PS3 2013       Action                            Deep Silver     0.56
## 1519     PS2 2005         Misc            Sony Computer Entertainment     0.27
## 1520     Wii 2007       Sports                        Electronic Arts     0.69
## 1521      PS 1997       Racing                               Accolade     1.05
## 1522    SNES 1995 Role-Playing                             SquareSoft     0.00
## 1523     Wii 2010       Sports                        Electronic Arts     0.78
## 1524      PS 1999 Role-Playing                     Namco Bandai Games     0.56
## 1525    XOne 2015    Adventure                            Square Enix     0.53
## 1526     Wii 2006       Racing                        Electronic Arts     0.46
## 1527    WiiU 2015     Platform                               Nintendo     0.61
## 1528     GBA 2002 Role-Playing                                 Capcom     0.39
## 1529     PS3 2012       Sports                        Electronic Arts     0.11
## 1530      GC 2002       Action                                 Capcom     0.54
## 1531    X360 2005       Racing                        Electronic Arts     1.00
## 1532    XOne 2015      Shooter                                Ubisoft     0.73
## 1533     GBA 2003     Platform                         TDK Mediactive     0.93
## 1534     PS2 2004      Shooter                                  Atari     0.63
## 1535     Wii 2008         Misc                             Activision     1.04
## 1536      DS 2008    Adventure                               Nintendo     0.76
## 1537     PS3 2008 Role-Playing                                   Sega     0.71
## 1538     PS2 2005       Racing                   Take-Two Interactive     1.22
## 1539     PS2 2004 Role-Playing              Sony Online Entertainment     0.63
## 1540    X360 2014       Action                                Ubisoft     0.72
## 1541      DS 2008   Simulation                                Ubisoft     0.55
## 1542     PS4 2014       Action           Konami Digital Entertainment     0.45
## 1543      GB 1989         Misc                               Nintendo     0.00
## 1544    XOne 2015       Action                                Ubisoft     0.61
## 1545      PS 1999       Action                                    3DO     1.10
## 1546    X360 2012       Action                                    THQ     0.72
## 1547      PS 1999       Racing                            989 Studios     1.07
## 1548     PS2 2003       Action                   Take-Two Interactive     0.63
## 1549     3DS 2012       Action                               Nintendo     0.48
## 1550     PS2 2001       Action           Konami Digital Entertainment     0.62
## 1551     PS3 2008       Action                      Eidos Interactive     0.45
## 1552      PS 1997     Platform           Konami Digital Entertainment     0.58
## 1553      PC 2005   Simulation                        Electronic Arts     1.22
## 1554     PS2 2008       Action Warner Bros. Interactive Entertainment     0.72
## 1555      PS 1995       Racing                        Electronic Arts     0.71
## 1556     3DS 2012 Role-Playing                               Nintendo     0.44
## 1557    2600 1981      Shooter                                 Imagic     1.18
## 1558    X360 2008       Sports                   Take-Two Interactive     1.00
## 1559    X360 2011     Fighting                                    THQ     0.74
## 1560      XB 2003       Sports                             Activision     0.85
## 1561     NES 1984      Shooter                               Nintendo     0.68
## 1562    XOne 2015 Role-Playing                     Bethesda Softworks     0.77
## 1563     Wii 2008       Sports                            Deep Silver     0.96
## 1564     PS2 2002 Role-Playing                                  Atari     0.49
## 1565     Wii 2007       Sports                   Take-Two Interactive     0.39
## 1566      GC 2003     Platform                                   Sega     0.87
## 1567     PS2 2004       Action            Sony Computer Entertainment     0.62
## 1568      PS 1994     Fighting            Sony Computer Entertainment     0.39
## 1569     3DS 2016       Action                                Level 5     0.00
## 1570      DS 2008       Action                             Activision     0.56
## 1571      DS 2005   Simulation                                  Atari     0.10
## 1572      PC 2010       Sports                                   Sega     0.00
## 1573      PS 1998       Puzzle                                    THQ     0.05
## 1574      DS 2007   Simulation                            Square Enix     0.54
## 1575    WiiU 2014       Action                               Nintendo     0.61
## 1576     PS3 2006       Racing                        Electronic Arts     0.49
## 1577      PC 2003       Sports                      Eidos Interactive     0.00
## 1578      PS 1998       Sports                            Codemasters     0.02
## 1579      DS 2007       Action                                    THQ     0.50
## 1580      PS 1998         Misc                     Hasbro Interactive     0.99
## 1581    X360 2012       Action Warner Bros. Interactive Entertainment     0.63
## 1582     Wii 2007       Sports                                    RTL     0.45
## 1583     PS3 2008      Shooter            Sony Computer Entertainment     0.94
## 1584      PS 2000       Sports                        Electronic Arts     0.70
## 1585     PS2 2008       Action                              LucasArts     0.49
## 1586      PC 2010       Racing                       Black Bean Games     0.00
## 1587     PS3 2007      Shooter                                Ubisoft     0.47
## 1588     NES 1988 Role-Playing                     Namco Bandai Games     0.00
## 1589     NES 1987 Role-Playing                     Namco Bandai Games     0.00
## 1590      PS 1996       Sports                                Natsume     0.99
## 1591     PS3 2013     Fighting Warner Bros. Interactive Entertainment     0.48
## 1592      GC 2005 Role-Playing                               Nintendo     0.71
## 1593     PS2 2006      Shooter                        Electronic Arts     1.01
## 1594      PC 2002     Strategy                                  Atari     1.19
## 1595     PS2 2003       Action                      Eidos Interactive     0.61
## 1596     PS2 2004       Action                                Ubisoft     0.52
## 1597      PS 1998       Racing                        Electronic Arts     1.05
## 1598     PS2 2005      Shooter            Sony Computer Entertainment     0.85
## 1599     PS2 2001 Role-Playing                     Virgin Interactive     0.61
## 1600      DS 2007       Action                             Activision     1.12
## 1601     PS3 2011 Role-Playing                     Namco Bandai Games     0.29
## 1602      DS 2007       Racing                               Nintendo     1.10
## 1603     PS3 2009       Action                             Activision     0.65
## 1604     PSP 2009       Action                                Ubisoft     0.43
## 1605      PS 1997     Platform                         GT Interactive     0.75
## 1606    XOne 2015 Role-Playing                     Namco Bandai Games     0.66
## 1607     PS2 2000       Action                     Namco Bandai Games     0.24
## 1608     PS2 2008     Fighting                                    THQ     0.69
## 1609      GB 1992       Puzzle                               Nintendo     0.56
## 1610      XB 2005       Action                             Activision     0.82
## 1611     Wii 2007       Action                            D3Publisher     0.55
## 1612     PS2 2001     Platform           Konami Digital Entertainment     0.60
## 1613     PS3 2010       Sports                        Electronic Arts     0.30
## 1614      XB 2004       Action                 Microsoft Game Studios     0.92
## 1615      XB 2002     Platform                  Universal Interactive     0.59
## 1616     PS2 2004       Racing                                  Atari     0.60
## 1617      PS 2003         Misc            Sony Computer Entertainment     0.69
## 1618      PC 2014   Simulation                 Focus Home Interactive     0.08
## 1619    X360 2008         Misc                             Activision     1.00
## 1620     PS3 2007      Shooter                        Electronic Arts     0.25
## 1621      GB 2000       Puzzle                               Nintendo     0.29
## 1622     GBA 2003     Platform                                    THQ     0.88
## 1623      PS 1998       Racing                             Activision     0.68
## 1624     NES 1986     Platform           Konami Digital Entertainment     0.54
## 1625     GBA 2004     Platform                               Nintendo     0.79
## 1626     PS3 2009       Action                                   Sega     0.44
## 1627     GBA 2003       Puzzle                               Nintendo     0.40
## 1628     PSP 2005      Shooter                              LucasArts     1.05
## 1629     PS4 2016       Sports                        Electronic Arts     0.92
## 1630     Wii 2008       Puzzle                        Electronic Arts     0.72
## 1631      PC 2015 Role-Playing                     Bethesda Softworks     0.50
## 1632     Wii 2007   Simulation                        Electronic Arts     0.45
## 1633     PS3 2012       Action Warner Bros. Interactive Entertainment     0.50
## 1634     PS3 2010     Fighting                     Namco Bandai Games     0.42
## 1635      GC 2004       Sports                               Nintendo     0.58
## 1636      PS 1997       Puzzle            Sony Computer Entertainment     0.13
## 1637      GB 1997         Misc                               Nintendo     0.76
## 1638      GB 1999         Misc                               Nintendo     0.79
## 1639     NES 1984       Puzzle                     Namco Bandai Games     0.27
## 1640     PS2 2006    Adventure                              Alchemist     0.59
## 1641     PS3 2011       Racing                            Codemasters     0.12
## 1642     PSP 2006       Racing                                    THQ     0.72
## 1643      PS 1997       Sports                        Electronic Arts     1.13
## 1644      PS 1997 Role-Playing                             SquareSoft     0.00
## 1645     GBA 2002 Role-Playing                               Nintendo     0.61
## 1646      PS 1996   Simulation                                  Maxis     0.68
## 1647      XB 2001      Shooter                   Take-Two Interactive     0.98
## 1648      PS 1998     Fighting                        Electronic Arts     0.68
## 1649     PS2 2002       Sports                                   Sega     0.59
## 1650      XB 2003       Action                                Unknown     0.01
## 1651     3DS 2011     Fighting                                 Capcom     0.55
## 1652     PS2 2006       Racing                                    THQ     1.01
## 1653      XB 2001         Misc                 Microsoft Game Studios     0.93
## 1654      XB 2004      Shooter                             Activision     0.78
## 1655     PSP 2010       Sports                        Electronic Arts     0.13
## 1656     PS2 2002     Platform            Sony Computer Entertainment     1.03
## 1657      DS 2009       Action                             Activision     0.66
## 1658    SNES 1992     Platform                                 Capcom     0.66
## 1659      PS 2001 Role-Playing                       Enix Corporation     0.00
## 1660      PS 1999       Action                              LucasArts     0.66
## 1661      PS 2000       Action                     Virgin Interactive     0.34
## 1662      GC 2003       Racing                        Electronic Arts     0.69
## 1663     GBA 2007         Misc                                Majesco     0.87
## 1664      PS 1997       Racing                        Electronic Arts     0.67
## 1665     PSP 2006       Sports                        Electronic Arts     0.24
## 1666     PSP 2005       Sports           Konami Digital Entertainment     0.01
## 1667     PS2 2002       Action                      Black Label Games     0.59
## 1668     PS3 2011       Action                              LucasArts     0.52
## 1669     PS2 2004       Racing                        SouthPeak Games     1.00
## 1670      GC 2004     Strategy                               Nintendo     0.48
## 1671     Wii 2015         Misc                                Ubisoft     0.52
## 1672     Wii 2008         Misc             Disney Interactive Studios     0.77
## 1673    XOne 2015      Shooter                        Electronic Arts     0.72
## 1674     PS4 2015       Sports                   Take-Two Interactive     0.41
## 1675    SNES 1993     Fighting                     Namco Bandai Games     0.00
## 1676     NES 1986      Shooter           Konami Digital Entertainment     0.00
## 1677     NES 1986     Platform           Konami Digital Entertainment     0.00
## 1678      DC 1999       Sports                                   Sega     1.12
## 1679      GB 1989      Shooter                               Nintendo     0.40
## 1680      XB 2003       Action                                  Atari     0.72
## 1681     PS2 2001       Sports                        Electronic Arts     0.59
## 1682      DS 2006       Puzzle                               Nintendo     0.74
## 1683     Wii 2009    Adventure                               Nintendo     0.55
## 1684     PS3 2012       Action                     Namco Bandai Games     0.01
## 1685     PS3 2013       Sports                   Take-Two Interactive     0.49
## 1686     PSP 2006       Action           Konami Digital Entertainment     0.38
## 1687      PS 1997   Simulation                        Electronic Arts     0.66
## 1688    WiiU 2014       Puzzle                               Nintendo     0.56
## 1689     PSP 2007     Fighting                                    THQ     0.45
## 1690     GBA 2003       Racing                                    THQ     0.86
## 1691     Wii 2008       Sports           Konami Digital Entertainment     0.09
## 1692     GBA 2002     Platform                                    THQ     0.92
## 1693     3DS 2012       Sports                                   Sega     0.18
## 1694     PS2 2006       Action                          Vivendi Games     0.99
## 1695     N64 1998       Sports                               Nintendo     1.02
## 1696     NES 1990     Platform                                 Capcom     0.68
## 1697      PS 1999       Racing                                Ubisoft     0.99
## 1698      PC 2015     Strategy                         Sierra Studios     0.00
## 1699    XOne 2013       Sports                        Electronic Arts     0.41
## 1700      GC 2002       Action                             Activision     0.86
## 1701     GBA 2004 Role-Playing                               Nintendo     0.64
## 1702     PS4 2016       Sports                   Take-Two Interactive     0.83
## 1703     3DS 2015 Role-Playing                               Nintendo     0.46
## 1704    X360 2012         Misc                                Ubisoft     0.90
## 1705      PS 1999    Adventure           Konami Digital Entertainment     0.66
## 1706    2600 1982       Racing                                  Atari     1.10
## 1707     PS3 2012       Action                                 Capcom     0.48
## 1708     PSP 2008       Action                              LucasArts     0.40
## 1709     NES 1988       Sports                     Namco Bandai Games     0.10
## 1710      DC 1999    Adventure                                   Sega     0.52
## 1711      GB 2000       Sports                               Nintendo     0.50
## 1712     GBA 2001       Sports                             Activision     0.85
## 1713     PS3 2011     Fighting                                    THQ     0.53
## 1714     PS3 2009     Fighting                                    THQ     0.48
## 1715      DS 2011     Strategy                           Mastertronic     0.95
## 1716     PS3 2006     Platform                                   Sega     0.41
## 1717    SNES 1991     Platform                                 Capcom     0.50
## 1718      PC 2008     Strategy                        Electronic Arts     0.03
## 1719      PS 1996   Simulation                        Electronic Arts     0.65
## 1720    X360 2011       Sports                                Ubisoft     0.70
## 1721     PS3 2008      Shooter                        Electronic Arts     0.74
## 1722     PS2 2005      Shooter                             Activision     0.98
## 1723     PS2 2002     Platform                        Electronic Arts     0.57
## 1724     Wii 2008     Platform                               Nintendo     0.60
## 1725      DS 2007     Platform                                   Sega     0.54
## 1726    X360 2012       Action                        Electronic Arts     0.58
## 1727     NES 1990     Platform                                 Capcom     0.68
## 1728     PS4 2016     Platform            Sony Computer Entertainment     0.32
## 1729     N64 1997       Action                                  Ocean     0.74
## 1730    SNES 1993 Role-Playing                             SquareSoft     0.00
## 1731     PS2 2003       Sports                 Zoo Digital Publishing     0.57
## 1732      PS 1998       Sports                            989 Studios     0.65
## 1733      PS 1996       Racing            Sony Computer Entertainment     0.16
## 1734      XB 2003      Shooter                        Electronic Arts     0.76
## 1735      PC 2012       Sports                                   Sega     0.00
## 1736      PS 1996       Racing                              Psygnosis     0.65
## 1737    X360 2008     Platform                        Electronic Arts     0.51
## 1738    XOne 2015      Shooter                             Activision     0.82
## 1739     GBA 2004       Puzzle                               Nintendo     0.68
## 1740     PS3 2008       Action                             Activision     0.43
## 1741     Wii 2009       Sports                        Electronic Arts     0.78
## 1742      PC 2010 Role-Playing                     Bethesda Softworks     0.58
## 1743     PSV 2012       Racing                        Electronic Arts     0.38
## 1744     PSP 2007 Role-Playing                            Square Enix     0.45
## 1745     PS2 2006       Racing                   Take-Two Interactive     0.97
## 1746     PS2 2004      Shooter                                Ubisoft     0.57
## 1747     PS3 2007         Misc            Sony Computer Entertainment     0.45
## 1748      PS 1997     Fighting            Sony Computer Entertainment     0.39
## 1749      DS 2011       Action                              LucasArts     0.66
## 1750     PS2 2001       Racing                        Electronic Arts     0.57
## 1751     N64 1999      Shooter                               Nintendo     0.78
## 1752    SNES 1993     Platform                                 Capcom     0.57
## 1753     GBA 2002 Role-Playing           Konami Digital Entertainment     0.84
## 1754     SAT 1995       Racing                                   Sega     0.21
## 1755      PS 1997       Racing                      Eidos Interactive     0.65
## 1756     PSP 2007      Shooter                        Electronic Arts     0.50
## 1757    X360 2010      Shooter                       City Interactive     0.54
## 1758     PS3 2011         Misc                                Ubisoft     0.52
## 1759      XB 2005       Action                      Eidos Interactive     0.83
## 1760     PSP 2009       Sports                        Electronic Arts     0.15
## 1761    X360 2014      Shooter                        Electronic Arts     0.51
## 1762      PC 2008   Simulation                                   Sega     0.00
## 1763     PS3 2011   Simulation           Konami Digital Entertainment     0.52
## 1764     PS2 2001       Action                           Midway Games     0.56
## 1765     PS3 2007       Action                      Eidos Interactive     0.57
## 1766     PS2 2004      Shooter                     Empire Interactive     0.56
## 1767    2600 1980         Misc                             Activision     1.07
## 1768     PS3 2010       Action                   Take-Two Interactive     0.44
## 1769     Wii 2009     Platform                                   Sega     0.69
## 1770      PC 2007      Shooter                             Activision     0.00
## 1771      GB 1990       Puzzle                               Nintendo     0.51
## 1772    SNES 1995       Sports                    ASCII Entertainment     0.00
## 1773     NES 1986       Action                            Hudson Soft     0.00
## 1774      DS 2008         Misc             Disney Interactive Studios     0.50
## 1775     PS3 2011     Platform            Sony Computer Entertainment     0.75
## 1776      GC 2003         Misc                               Nintendo     0.50
## 1777     PS3 2011     Fighting                        Electronic Arts     0.45
## 1778    SNES 1993 Role-Playing                       Enix Corporation     0.00
## 1779     PS2 2003     Platform                                    THQ     0.56
## 1780      PS 1998      Shooter                                Success     0.64
## 1781      PS 1997       Puzzle                                Compile     0.00
## 1782     3DS 2011       Action                               Nintendo     0.47
## 1783      PS 2000       Action                   Take-Two Interactive     0.64
## 1784     PS2 2003       Action                             Activision     0.44
## 1785     PS2 2005       Action            Sony Computer Entertainment     0.78
## 1786      PS 1998 Role-Playing                             SquareSoft     0.25
## 1787     PS3 2007       Sports            Sony Computer Entertainment     0.31
## 1788     PS2 2005   Simulation           Konami Digital Entertainment     0.95
## 1789     PS3 2008     Platform                        Electronic Arts     0.31
## 1790     Wii 2009     Platform                                Ubisoft     0.26
## 1791     N64 1998      Shooter                  Acclaim Entertainment     0.90
## 1792     NES 1986       Action                                 Capcom     0.71
## 1793    SNES 1990   Simulation                               Nintendo     0.46
## 1794      DC 2000       Action                      Eidos Interactive     0.41
## 1795      GB 1991       Racing                               Nintendo     0.58
## 1796      XB 2003       Action                        Electronic Arts     0.71
## 1797     GBA 2005       Action                      Eidos Interactive     0.82
## 1798     PS2 2005 Role-Playing                   Take-Two Interactive     0.00
## 1799    X360 2009         Misc                             Activision     0.65
## 1800     PS2 2001   Simulation                                  Atari     0.12
## 1801      GC 2004       Racing                        Electronic Arts     0.70
## 1802      XB 2002   Simulation                 Microsoft Game Studios     1.01
## 1803     PS3 2010       Racing            Sony Computer Entertainment     0.50
## 1804     3DS 2011       Action                              LucasArts     0.61
## 1805      PS 1999       Sports                    ASCII Entertainment     0.00
## 1806     GBA 2006       Racing                                    THQ     0.81
## 1807     3DS 2012 Role-Playing                               Nintendo     0.33
## 1808      XB 2004      Shooter                                Ubisoft     0.99
## 1809     PS4 2014       Sports                   Take-Two Interactive     0.38
## 1810     NES 1983     Platform                               Nintendo     0.23
## 1811      PS 1998         Misc            Sony Computer Entertainment     0.63
## 1812    X360 2013       Sports                   Take-Two Interactive     0.64
## 1813     PS4 2014      Shooter                                   Sega     0.34
## 1814     PS3 2009       Action                                   Sega     0.21
## 1815     GBA 2005 Role-Playing                               Nintendo     0.81
## 1816     PS3 2009         Misc                              MTV Games     0.67
## 1817    X360 2011       Action                        Electronic Arts     0.72
## 1818    2600 1982      Shooter                                  Atari     1.05
## 1819     PS2 2001       Racing                             Activision     0.55
## 1820     N64 1996   Simulation                               Nintendo     0.56
## 1821    X360 2010      Shooter                 Microsoft Game Studios     0.63
## 1822     PS3 2013 Role-Playing                            Square Enix     0.36
## 1823     PS3 2010       Action           Konami Digital Entertainment     0.50
## 1824    X360 2011         Misc                                Ubisoft     0.84
## 1825    X360 2014       Action             Disney Interactive Studios     0.62
## 1826     PSP 2005      Shooter            Sony Computer Entertainment     1.03
## 1827      XB 2005      Shooter                             Activision     0.66
## 1828     NES 1992       Puzzle                               Nintendo     0.41
## 1829     PS2 2009         Misc                             Activision     0.28
## 1830      PC 2007       Sports                                 Russel     0.00
## 1831      XB 2004       Action                             Activision     0.82
## 1832      XB 2003      Shooter                 Microsoft Game Studios     0.85
## 1833     PS4 2015       Action Warner Bros. Interactive Entertainment     0.32
## 1834     PS2 2007       Action                             Activision     0.63
## 1835     PS3 2008       Racing                            Codemasters     0.31
## 1836     PS2 2007         Misc                              RedOctane     0.92
## 1837    XOne 2014      Shooter                 Microsoft Game Studios     0.62
## 1838     PS2 2007         Misc                        Electronic Arts     0.71
## 1839      XB 2005       Action                                Ubisoft     0.68
## 1840     NES 1983     Platform                               Nintendo     0.33
## 1841      PS 1995 Role-Playing            Sony Computer Entertainment     0.00
## 1842     GEN 1994       Sports                  Acclaim Entertainment     0.95
## 1843     Wii 2007       Racing                        Electronic Arts     0.54
## 1844    WiiU 2013     Strategy                               Nintendo     0.45
## 1845      PS 1999 Role-Playing                             SquareSoft     0.18
## 1846     PSP 2004       Puzzle                                Ubisoft     0.52
## 1847     PS3 2010       Action             Disney Interactive Studios     0.51
## 1848     PS3 2009         Misc                             Activision     0.53
## 1849    2600 1981      Shooter                             Activision     1.03
## 1850    X360 2007      Shooter                        Electronic Arts     0.45
## 1851     3DS 2015       Action                               Nintendo     0.52
## 1852    2600 1982     Platform                                  Atari     1.03
## 1853      PS 1997       Sports                        Electronic Arts     0.61
## 1854     PS3 2012       Action Warner Bros. Interactive Entertainment     0.36
## 1855      DS 2007   Simulation                                Ubisoft     0.47
## 1856     PS3 2010     Fighting                                    THQ     0.44
## 1857      GB 1999     Strategy           Konami Digital Entertainment     0.00
## 1858     NES 1984       Puzzle                            Hudson Soft     0.00
## 1859      GB 1989 Role-Playing                             SquareSoft     0.00
## 1860     NES 1989 Role-Playing                     Namco Bandai Games     0.00
## 1861     N64 1998       Racing                               Nintendo     0.45
## 1862     NES 1983     Platform                               Nintendo     0.51
## 1863     Wii 2008      Shooter                        Electronic Arts     0.92
## 1864     PS2 2001       Sports                        Electronic Arts     0.52
## 1865     PS2 2006         Misc            Sony Computer Entertainment     0.12
## 1866     PS2 2006         Misc            Sony Computer Entertainment     0.00
## 1867      GC 2003 Role-Playing                               Nintendo     0.54
## 1868     PSP 2005 Role-Playing                             Activision     0.54
## 1869      PS 1998 Role-Playing            Sony Computer Entertainment     0.26
## 1870     PS3 2013 Role-Playing                            Square Enix     0.31
## 1871     PSP 2008       Action                              LucasArts     0.43
## 1872      DS 2008   Simulation                                Ubisoft     0.63
## 1873     PSP 2007       Action                        Electronic Arts     0.24
## 1874     PS2 2006    Adventure                                   Sega     0.05
## 1875    X360 2009       Sports                        Electronic Arts     0.82
## 1876     GBA 2003 Role-Playing                                  Atari     0.78
## 1877     PS3 2007     Fighting                                   Sega     0.29
## 1878      DC 2000       Sports                                   Sega     1.02
## 1879      PS 1998   Simulation           Konami Digital Entertainment     0.00
## 1880     PSP 2005         Misc            Sony Computer Entertainment     0.75
## 1881      DS 2006       Action                              LucasArts     0.96
## 1882      XB 2003       Sports                        Electronic Arts     1.02
## 1883      PC 2009     Strategy                                   Sega     0.01
## 1884     PS2 2006       Action                        Electronic Arts     0.89
## 1885     Wii 2009       Sports                        Electronic Arts     0.61
## 1886     PS2 2002      Shooter                              LucasArts     0.53
## 1887      PS 1997   Simulation                                  Taito     0.00
## 1888     PS3 2010       Action                        Electronic Arts     0.64
## 1889      DS 2010       Racing                                   Sega     0.44
## 1890     PS3 2012       Action                             Activision     0.35
## 1891     Wii 2007    Adventure                               Nintendo     0.44
## 1892      PS 1998       Sports                           Midway Games     0.60
## 1893    X360 2010       Racing                                   Sega     0.74
## 1894     PS2 2003       Racing                        Electronic Arts     0.53
## 1895     PS3 2008       Action                                Ubisoft     0.47
## 1896     PS2 2002     Platform                                    THQ     0.53
## 1897      PC 2015       Action                   Take-Two Interactive     0.36
## 1898     Wii 2009       Sports                                    THQ     0.87
## 1899     PS2 2002       Sports                                 Agetec     0.53
## 1900      DS 2009    Adventure                        Electronic Arts     0.55
## 1901     Wii 2009       Action                                 Capcom     0.48
## 1902    X360 2012       Action                        Electronic Arts     1.02
## 1903     PSP 2009       Action                   Take-Two Interactive     0.28
## 1904     Wii 2010       Sports                        Electronic Arts     0.26
## 1905     PS3 2007      Shooter                        Electronic Arts     0.28
## 1906    2600 1982     Platform                                  Atari     1.01
## 1907    X360 2008       Action                      Eidos Interactive     0.53
## 1908     PS2 2004      Shooter                                Ubisoft     0.64
## 1909     PS3 2011       Racing                            Codemasters     0.27
## 1910    WiiU 2013     Platform                               Nintendo     0.47
## 1911      DS 2008   Simulation                        Electronic Arts     0.67
## 1912      PS 1998       Sports                           Midway Games     0.60
## 1913     GBA 2003     Fighting                                  Atari     0.77
## 1914     GBA 2002     Platform                                Ubisoft     0.77
## 1915      GC 2005      Shooter                               Nintendo     0.68
## 1916     PS3 2008     Fighting                     Namco Bandai Games     0.49
## 1917    X360 2011     Fighting                                 Capcom     0.79
## 1918    X360 2013       Sports                        Electronic Arts     1.01
## 1919      PS 1999         Misc            Sony Computer Entertainment     0.00
## 1920     PS2 2006      Shooter                             Activision     0.89
## 1921      DS 2008   Simulation                                Ubisoft     0.65
## 1922    X360 2010       Action                   Take-Two Interactive     0.57
## 1923    X360 2008       Action                   Take-Two Interactive     0.53
## 1924     SAT 1994     Fighting                                   Sega     0.17
## 1925      PC 1999       Sports                      Eidos Interactive     0.00
## 1926     PS2 2009     Fighting                                    THQ     0.53
## 1927    X360 2007       Sports           Konami Digital Entertainment     0.08
## 1928      DS 2005     Platform                               Nintendo     0.72
## 1929      PS 1997       Sports                        Electronic Arts     0.59
## 1930     PS2 2005     Fighting                     Namco Bandai Games     0.74
## 1931     PS3 2013     Platform                             Activision     0.43
## 1932     PS3 2012       Racing                            Codemasters     0.12
## 1933     PSP 2005       Sports            Sony Computer Entertainment     0.10
## 1934     Wii 2011       Action             Disney Interactive Studios     0.67
## 1935      PS 1995       Racing            Sony Computer Entertainment     0.17
## 1936    X360 2011       Action             Disney Interactive Studios     0.54
## 1937      PS 1999       Racing                        Electronic Arts     0.59
## 1938      PS 1998       Sports                        Electronic Arts     0.59
## 1939     PS2 2006     Fighting                           Midway Games     0.88
## 1940    X360 2010      Shooter                                   Sega     0.55
## 1941     PS2 2002       Racing                        Electronic Arts     0.52
## 1942      DS 2008         Misc                                    GSP     0.23
## 1943    X360 2010       Action                                    THQ     0.67
## 1944     PS3 2007       Racing                            Codemasters     0.16
## 1945      DS 2007      Shooter                             Activision     0.96
## 1946      PS 1998         Misc                            D3Publisher     0.00
## 1947     Wii 2008       Sports                                   Sega     0.28
## 1948     PS2 2005       Sports                        Electronic Arts     0.52
## 1949     PS3 2012       Action                            Square Enix     0.31
## 1950    X360 2008      Shooter                        Electronic Arts     0.65
## 1951      PS 1999     Strategy                             Microprose     0.18
## 1952     PS2 2003       Action                  Universal Interactive     0.52
## 1953     PS3 2008       Action                             Activision     0.44
## 1954     N64 1998       Sports                           Midway Games     1.02
## 1955     N64 1997       Sports                  Acclaim Entertainment     1.01
## 1956    X360 2009         Misc                             Activision     0.56
## 1957      DS 2007     Platform                   Take-Two Interactive     0.97
## 1958      PC 2001 Role-Playing                          Vivendi Games     1.03
## 1959     PS4 2016     Fighting                     Namco Bandai Games     0.39
## 1960     GBA 2004       Action                             Activision     0.76
## 1961     PS3 2007       Sports                                   Sega     0.23
## 1962     PS2 2002       Racing                                Play It     0.52
## 1963     PS3 2007   Simulation            Sony Computer Entertainment     0.49
## 1964      DS 2007    Adventure                                 Capcom     0.32
## 1965    X360 2014       Action                                Ubisoft     0.58
## 1966    2600 1981      Shooter                                 Imagic     0.99
## 1967     PSP 2006      Shooter            Sony Computer Entertainment     0.81
## 1968     Wii 2014       Action                             Activision     0.42
## 1969     PS3 2010      Shooter                                   Sega     0.41
## 1970    2600 1980         Misc                                  Atari     0.99
## 1971     Wii 2010         Misc                                Ubisoft     0.27
## 1972     NES 1986     Platform                            Hudson Soft     0.00
## 1973      PS 1996 Role-Playing            Sony Computer Entertainment     0.00
## 1974     NES 1985     Fighting                     Namco Bandai Games     0.00
## 1975    SNES 1996       Sports                    ASCII Entertainment     0.00
## 1976     PS3 2012       Action                                    THQ     0.55
## 1977     PS2 2002       Sports                                   Sega     0.51
## 1978     PS4 2015     Fighting                     Namco Bandai Games     0.30
## 1979      XB 2001       Racing                        Electronic Arts     0.78
## 1980      PS 2000       Sports                  Acclaim Entertainment     0.91
## 1981      DS 2007   Simulation                                Ubisoft     0.45
## 1982    X360 2009     Fighting                                    THQ     0.56
## 1983      XB 2005       Racing                 Microsoft Game Studios     0.52
## 1984    X360 2006     Platform                                   Sega     0.44
## 1985     Wii 2009    Adventure                        Electronic Arts     0.62
## 1986      PS 1998   Simulation            Sony Computer Entertainment     0.19
## 1987      DS 2012 Role-Playing                               Nintendo     0.58
## 1988    X360 2007       Action                        Electronic Arts     0.54
## 1989     Wii 2008       Action Warner Bros. Interactive Entertainment     0.46
## 1990     PS2 2003       Sports                        Electronic Arts     0.51
## 1991      DS 2009     Platform                                Unknown     0.01
## 1992     Wii 2007     Fighting                                  Atari     0.33
## 1993      DS 2010       Action             Disney Interactive Studios     0.58
## 1994      PS 1997 Role-Playing                     Namco Bandai Games     0.09
## 1995      PS 2000       Racing                  Acclaim Entertainment     0.58
## 1996      DS 2009    Adventure             Disney Interactive Studios     0.57
## 1997      PS 1996       Action                     Virgin Interactive     0.45
## 1998      GC 2003     Fighting                               Nintendo     0.44
## 1999     PS2 2006   Simulation           Konami Digital Entertainment     0.87
## 2000    X360 2011      Shooter                     Bethesda Softworks     0.59
## 2001     GBA 2001       Racing                               Nintendo     0.39
## 2002     N64 1997       Puzzle                            Hudson Soft     0.50
## 2003      PS 1998       Racing                  Acclaim Entertainment     0.91
## 2004    X360 2009       Action                             Activision     0.62
## 2005     PS4 2015       Racing                   Slightly Mad Studios     0.17
## 2006      XB 2005       Racing                        Electronic Arts     0.53
## 2007      DS 2011     Platform                               Nintendo     0.52
## 2008    XOne 2013       Action Warner Bros. Interactive Entertainment     0.61
## 2009      DS 2010   Simulation                             Activision     0.68
## 2010     PS3 2007      Shooter                                Ubisoft     0.34
## 2011     PSP 2009       Racing            Sony Computer Entertainment     0.16
## 2012     PSP 2005       Racing            Sony Computer Entertainment     0.47
## 2013     PS4 2014       Sports                        Electronic Arts     0.46
## 2014     PS2 2005       Racing                                    THQ     0.86
## 2015     PS3 2008     Platform                                   Sega     0.56
## 2016     Wii 2007       Sports                        Electronic Arts     0.94
## 2017     PS3 2011     Platform                                Ubisoft     0.33
## 2018     Wii 2012       Action             Disney Interactive Studios     0.72
## 2019     PS2 2003       Sports                        Electronic Arts     0.50
## 2020    X360 2011         Misc                           Bandai Namco     0.00
## 2021     NES 1985       Puzzle                            Hudson Soft     0.18
## 2022     Wii 2007       Action                        Electronic Arts     0.45
## 2023      PC 1996       Action                      Eidos Interactive     0.96
## 2024     Wii 2008         Misc                              MTV Games     0.94
## 2025      PS 1998     Fighting                     Virgin Interactive     0.38
## 2026    X360 2011      Shooter                        Electronic Arts     0.61
## 2027     Wii 2007       Sports                        Electronic Arts     0.32
## 2028     Wii 2007     Fighting                       Tomy Corporation     0.45
## 2029    X360 2007      Shooter                                Ubisoft     0.87
## 2030    WiiU 2012       Action                                Ubisoft     0.53
## 2031      GC 2004     Platform                             Activision     0.73
## 2032      DS 2007   Simulation                                Ubisoft     0.51
## 2033     PS3 2010 Role-Playing                     Namco Bandai Games     0.28
## 2034    SNES 1993       Action                                 Capcom     0.39
## 2035     Wii 2008     Platform                                    THQ     0.51
## 2036      PS 1997       Action                        Electronic Arts     0.57
## 2037    X360 2007   Simulation                                  Atari     0.69
## 2038      XB 2006       Sports                        Electronic Arts     0.97
## 2039     PS3 2014       Action             Disney Interactive Studios     0.44
## 2040     PS2 2004       Action                        Electronic Arts     0.50
## 2041      PS 1998       Puzzle                     Hasbro Interactive     0.56
## 2042    WiiU 2014       Action                               Nintendo     0.34
## 2043    X360 2008       Action                                Ubisoft     0.54
## 2044     PSP 2010       Action            Sony Computer Entertainment     0.41
## 2045     3DS 2011     Platform                                   Sega     0.44
## 2046    X360 2008       Action                             Tecmo Koei     0.65
## 2047    SNES 1995       Sports                  Acclaim Entertainment     0.87
## 2048      PC 2003       Sports                      Eidos Interactive     0.00
## 2049     Wii 2010         Misc                             Activision     0.48
## 2050      DS 2006         Misc                                   Sega     0.00
## 2051      PS 1997   Simulation                             Tecmo Koei     0.12
## 2052     PS3 2014       Action Warner Bros. Interactive Entertainment     0.33
## 2053     PS3 2009       Racing                            Codemasters     0.27
## 2054     PS4 2014     Platform                                Ubisoft     0.21
## 2055     Wii 2009      Shooter                        Electronic Arts     0.93
## 2056     PS2 2003       Racing                     Empire Interactive     0.49
## 2057      PS 1997 Role-Playing                                 Capcom     0.29
## 2058    X360 2008       Sports           Konami Digital Entertainment     0.13
## 2059     PS2 2000     Fighting                             Tecmo Koei     0.30
## 2060     NES 1985      Shooter                                 Capcom     0.65
## 2061     N64 2000       Racing                               Nintendo     0.65
## 2062     NES 1991       Sports                               Nintendo     0.41
## 2063      GB 1997         Misc                               Nintendo     0.63
## 2064     PS2 2004         Misc                      Sammy Corporation     0.00
## 2065      XB 2003     Fighting                     Namco Bandai Games     0.78
## 2066     PS3 2008      Shooter                                Ubisoft     0.49
## 2067    X360 2012       Action                                    THQ     0.72
## 2068    X360 2006       Sports           Konami Digital Entertainment     0.08
## 2069      PS 1995       Racing                        Electronic Arts     0.56
## 2070      PS 2000       Sports            Sony Computer Entertainment     0.56
## 2071     PSV 2013      Shooter     Sony Computer Entertainment Europe     0.25
## 2072      PS 1996       Sports                        Electronic Arts     0.55
## 2073     PS2 2002       Action                             Tecmo Koei     0.13
## 2074      DS 2005     Strategy                                    THQ     0.86
## 2075     PS3 2013         Misc                                Ubisoft     0.51
## 2076     PS3 2013       Action                        Electronic Arts     0.44
## 2077     Wii 2010         Misc                                    THQ     0.89
## 2078     PS3 2013       Action             Disney Interactive Studios     0.48
## 2079    X360 2011 Role-Playing                     Namco Bandai Games     0.64
## 2080      DS 2008       Puzzle                                Ubisoft     0.17
## 2081      PS 2000         Misc            Sony Computer Entertainment     0.55
## 2082    X360 2013       Action                        Electronic Arts     0.64
## 2083      DS 2005    Adventure                                 Capcom     0.49
## 2084      XB 2000       Sports                 Microsoft Game Studios     0.74
## 2085      GC 2003       Racing                          Vivendi Games     0.77
## 2086      DS 2008   Simulation                        Electronic Arts     0.59
## 2087    X360 2011       Action Warner Bros. Interactive Entertainment     0.51
## 2088    X360 2013       Action                                Ubisoft     0.57
## 2089     PSP 2006   Simulation                     Namco Bandai Games     0.37
## 2090    X360 2011       Sports                        Electronic Arts     0.94
## 2091     PS3 2011       Action             Disney Interactive Studios     0.36
## 2092     Wii 2009         Misc                             Activision     0.60
## 2093     Wii 2009       Racing                                    THQ     0.61
## 2094      PS 1998     Platform                         GT Interactive     0.55
## 2095     PS3 2009   Simulation            Sony Computer Entertainment     0.35
## 2096     Wii 2009       Action Warner Bros. Interactive Entertainment     0.88
## 2097     PSP 2008       Racing                   Take-Two Interactive     0.52
## 2098     PS2 2000       Action            Sony Computer Entertainment     0.30
## 2099     PS3 2008         Misc                             Activision     0.73
## 2100     Wii 2007     Fighting                                    THQ     0.38
## 2101     Wii 2009       Sports                        Electronic Arts     0.23
## 2102      GC 2005     Platform                                   Sega     0.76
## 2103      PC 2012   Simulation                 Focus Home Interactive     0.00
## 2104      PC 2008 Role-Playing                     Bethesda Softworks     0.02
## 2105      DS 2006       Racing                                    THQ     0.85
## 2106     PSP 2008       Sports           Konami Digital Entertainment     0.02
## 2107      PC 2012      Shooter                                Ubisoft     0.21
## 2108     Wii 2010 Role-Playing                               Nintendo     0.49
## 2109    X360 2013         Misc                                Ubisoft     0.72
## 2110     GBA 2005         Misc                               Nintendo     0.50
## 2111     PS3 2010       Racing                                   Sega     0.36
## 2112     NES 1993       Puzzle                               Nintendo     0.62
## 2113     N64 1998       Racing                        Electronic Arts     0.94
## 2114    X360 2014      Shooter                                Ubisoft     0.01
## 2115     PS3 2009 Role-Playing                           Idea Factory     0.00
## 2116      DS 2010 Role-Playing                            Square Enix     0.56
## 2117     PS3 2014 Role-Playing                                Ubisoft     0.42
## 2118     PS3 2011       Racing                                Ubisoft     0.24
## 2119     PS3 2012      Shooter                              505 Games     0.38
## 2120    X360 2014      Shooter                                Ubisoft     0.45
## 2121      PC 2005       Action                   Take-Two Interactive     0.00
## 2122     PS3 2013       Action                                Ubisoft     0.34
## 2123     PS3 2013       Action           Konami Digital Entertainment     0.03
## 2124    X360 2015       Sports                        Electronic Arts     0.82
## 2125     PS2 2009       Sports                        Electronic Arts     0.88
## 2126    X360 2009       Action                        Electronic Arts     0.62
## 2127      DS 2006   Simulation                     Namco Bandai Games     0.09
## 2128     PS4 2015 Role-Playing                            Square Enix     0.37
## 2129     PS3 2007       Sports                        Electronic Arts     0.89
## 2130     Wii 2008     Platform                                    THQ     0.50
## 2131      XB 2005       Sports                        Electronic Arts     0.73
## 2132      PC 2012 Role-Playing                        Electronic Arts     0.40
## 2133    X360 2009       Sports                   Take-Two Interactive     0.88
## 2134     GBA 2003     Strategy                               Nintendo     0.49
## 2135      GC 2003       Racing                                Unknown     0.01
## 2136    X360 2011       Action                             Activision     0.53
## 2137     Wii 2010       Sports             Disney Interactive Studios     0.56
## 2138     PS2 2003       Sports                        Electronic Arts     0.47
## 2139     PS2 2007       Action                   Take-Two Interactive     0.78
## 2140    X360 2015       Sports                   Take-Two Interactive     0.77
## 2141      XB 2004       Sports                        Electronic Arts     0.33
## 2142     Wii 2012       Action Warner Bros. Interactive Entertainment     0.52
## 2143    SNES 1992 Role-Playing                             SquareSoft     0.00
## 2144    2600 1981     Platform                                  Atari     0.90
## 2145      GC 2006       Action                              LucasArts     0.75
## 2146     PS3 2011       Action Warner Bros. Interactive Entertainment     0.36
## 2147     PSV 2013 Role-Playing                            Square Enix     0.21
## 2148      PS 2000      Shooter                        Electronic Arts     0.54
## 2149      DS 2005   Simulation                        Electronic Arts     0.82
## 2150     PS2 2002 Role-Playing            Sony Computer Entertainment     0.38
## 2151      PS 1999         Misc            Sony Computer Entertainment     0.54
## 2152     PS3 2012       Action            Sony Computer Entertainment     0.50
## 2153      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 2154      DS 2011         Misc                                    THQ     0.72
## 2155     Wii 2012 Role-Playing                            Square Enix     0.00
## 2156      DS 2011       Action             Disney Interactive Studios     0.37
## 2157     PSP 2006    Adventure            Sony Computer Entertainment     0.30
## 2158     N64 1996     Fighting                         GT Interactive     0.72
## 2159     NES 1986      Shooter                            Hudson Soft     0.32
## 2160    X360 2008     Platform                                   Sega     0.54
## 2161     PS3 2010      Shooter                                 Capcom     0.29
## 2162     PS2 2000       Sports                        Electronic Arts     0.47
## 2163     3DS 2012 Role-Playing                            Square Enix     0.00
## 2164      DS 2008       Sports                                Ubisoft     0.30
## 2165     PS3 2012      Shooter                                Ubisoft     0.41
## 2166      DS 2006       Action                                 Capcom     0.39
## 2167     PS2 2002     Platform            Sony Computer Entertainment     0.36
## 2168      XB 2002     Fighting                           Midway Games     0.77
## 2169      PC 2011       Action                     Namco Bandai Games     0.25
## 2170     3DS 2011   Simulation                               Nintendo     0.40
## 2171     PS3 2013     Fighting                     Namco Bandai Games     0.32
## 2172    X360 2015       Action Warner Bros. Interactive Entertainment     0.47
## 2173      XB 2004       Sports                            Global Star     0.88
## 2174      PC 2012      Shooter                     Namco Bandai Games     0.01
## 2175     PS2 2004         Misc                                Play It     0.80
## 2176     PS2 2005       Action                                Ubisoft     0.36
## 2177      GC 2003     Platform                                    THQ     0.74
## 2178    X360 2014 Role-Playing                                Ubisoft     0.57
## 2179      DS 2008       Action                             Koch Media     0.65
## 2180     PS3 2008         Misc            Sony Computer Entertainment     0.27
## 2181     Wii 2011       Racing             Disney Interactive Studios     0.46
## 2182      PS 1996 Role-Playing            Sony Computer Entertainment     0.26
## 2183     PS2 2000     Strategy                        Electronic Arts     0.27
## 2184     GBA 2003         Misc           Konami Digital Entertainment     0.68
## 2185      PS 1999       Sports                        Electronic Arts     0.53
## 2186     PS3 2009       Action                        Electronic Arts     0.54
## 2187     PS3 2011       Action                             Activision     0.39
## 2188     Wii 2009         Misc                             Activision     0.41
## 2189     PS4 2015      Shooter                   Take-Two Interactive     0.35
## 2190     PS3 2008     Fighting                                    THQ     0.51
## 2191    X360 2010      Shooter                        Electronic Arts     0.62
## 2192     Wii 2009       Sports                             Activision     0.70
## 2193    X360 2014       Action Warner Bros. Interactive Entertainment     0.48
## 2194     Wii 2011         Misc                               Nintendo     0.24
## 2195     PS2 2004      Shooter            Sony Computer Entertainment     0.79
## 2196     PS3 2011       Action                            Square Enix     0.27
## 2197     PS2 2003       Racing                            Codemasters     0.01
## 2198     3DS 2011      Shooter                               Nintendo     0.48
## 2199      GC 2004     Platform                                    THQ     0.73
## 2200    X360 2013         Misc                                Ubisoft     0.69
## 2201      PS 1996         Misc                         GT Interactive     0.52
## 2202     Wii 2006       Racing                                    THQ     0.83
## 2203      PC 2012       Action                                Ubisoft     0.28
## 2204     PS2 2003       Action           Konami Digital Entertainment     0.46
## 2205     3DS 2012       Sports                               Nintendo     0.26
## 2206    X360 2012       Action                     Namco Bandai Games     0.48
## 2207    X360 2009       Action                                   Sega     0.51
## 2208     PS2 2005      Shooter                                    THQ     0.78
## 2209      XB 2005       Sports                        Electronic Arts     0.70
## 2210      PS 1999 Role-Playing                             SquareSoft     0.10
## 2211    X360 2009       Sports                        Electronic Arts     0.87
## 2212      PS 1999       Sports            Sony Computer Entertainment     0.52
## 2213    WiiU 2016       Action                               Nintendo     0.48
## 2214     PS2 2006       Action                   Take-Two Interactive     0.75
## 2215      XB 2003       Action                                Ubisoft     0.57
## 2216     PSP 2008 Role-Playing                                   Sega     0.19
## 2217     PS2 2003       Sports            Sony Computer Entertainment     0.46
## 2218     PS2 2006       Sports            Sony Computer Entertainment     0.78
## 2219     PS2 2002       Sports                        Electronic Arts     0.46
## 2220    X360 2009      Shooter                            Codemasters     0.36
## 2221     Wii 2010       Sports                   Take-Two Interactive     0.78
## 2222     PS3 2009         Misc            Sony Computer Entertainment     0.16
## 2223     GBA 2005         Misc            Sony Computer Entertainment     0.67
## 2224      XB 2002       Sports                             Activision     0.59
## 2225      PC 2012      Shooter                   Take-Two Interactive     0.42
## 2226     Wii 2009       Sports                        Electronic Arts     0.29
## 2227     PS3 2008 Role-Playing            Sony Computer Entertainment     0.33
## 2228     PS3 2012       Sports                        Electronic Arts     0.35
## 2229     Wii 2008       Racing                                   Sega     0.50
## 2230     PS3 2015       Action Warner Bros. Interactive Entertainment     0.34
## 2231      DS 2007   Simulation                           Game Factory     0.85
## 2232     GBA 2004       Racing                                    THQ     0.67
## 2233    2600 1981       Action                           Parker Bros.     0.87
## 2234     NES 1991     Platform                                 Capcom     0.51
## 2235     NES 1987     Platform           Konami Digital Entertainment     0.45
## 2236     N64 1999     Platform                             Activision     0.71
## 2237     GBA 2003       Action                                Unknown     0.67
## 2238     PS2 2007       Sports            Sony Computer Entertainment     0.77
## 2239    X360 2014       Action                             Activision     0.54
## 2240      GC 2006       Racing                                    THQ     0.72
## 2241     PS3 2008      Shooter                                Ubisoft     0.44
## 2242      DS 2010 Role-Playing                                Level 5     0.00
## 2243    WiiU 2016     Fighting                     Namco Bandai Games     0.47
## 2244      PS 1999       Racing                                Ubisoft     0.52
## 2245     PS2 2003       Action           Konami Digital Entertainment     0.45
## 2246     PS2 2001   Simulation                                  Titus     0.45
## 2247    X360 2006 Role-Playing                 Microsoft Game Studios     0.30
## 2248      PS 2000       Action                        Electronic Arts     0.51
## 2249    X360 2010       Sports                        Electronic Arts     0.86
## 2250      PS 1997       Sports                        Electronic Arts     0.51
## 2251    X360 2012       Sports                        Electronic Arts     0.17
## 2252     PS3 2010       Sports                        Electronic Arts     0.52
## 2253     PSP 2006       Action                                    THQ     0.55
## 2254    X360 2008     Fighting                                    THQ     0.58
## 2255    X360 2010       Action                        Electronic Arts     0.63
## 2256    X360 2011         Misc                             Activision     0.87
## 2257      PS 1996       Sports                  Acclaim Entertainment     0.51
## 2258     Wii 2008       Action                             Activision     0.50
## 2259     N64 1999     Fighting                        Electronic Arts     0.63
## 2260     NES 1985     Platform                               Nintendo     0.39
## 2261      PC 2008    Adventure                                Ubisoft     0.01
## 2262     3DS 2013    Adventure                               Nintendo     0.16
## 2263    X360 2013      Shooter                        Electronic Arts     0.51
## 2264     PS4 2014       Action Warner Bros. Interactive Entertainment     0.37
## 2265     PS3 2011       Action                             Tecmo Koei     0.25
## 2266     PS3 2014       Action                     Bethesda Softworks     0.26
## 2267     PS3 2012       Sports            Sony Computer Entertainment     0.86
## 2268      GC 2006       Racing                                   Sega     0.71
## 2269     PS2 2003       Racing                     Empire Interactive     0.45
## 2270      PS 1996     Fighting            Sony Computer Entertainment     0.12
## 2271    X360 2007 Role-Playing                 Microsoft Game Studios     0.45
## 2272     PS4 2015       Sports            Sony Computer Entertainment     0.67
## 2273     PS3 2009      Shooter                            Codemasters     0.23
## 2274     PS3 2011      Shooter                                    THQ     0.32
## 2275     Wii 2007       Sports                     Bethesda Softworks     0.85
## 2276     PS2 2002       Sports                             Activision     0.45
## 2277     PS3 2009       Action                                Ubisoft     0.32
## 2278     3DS 2012       Action                Marvelous Entertainment     0.41
## 2279    X360 2008     Strategy                                Ubisoft     0.58
## 2280     PS2 2002       Sports                        Electronic Arts     0.45
## 2281     PS2 2003       Racing                                  Genki     0.35
## 2282     PS3 2009       Action                             Activision     0.47
## 2283      PS 2000       Racing                            Codemasters     0.02
## 2284     N64 1998     Platform                     Hasbro Interactive     0.72
## 2285     PS3 2009       Racing                                    THQ     0.52
## 2286    X360 2015    Adventure                                 Mojang     0.46
## 2287     PS3 2008    Adventure                                Unknown     0.01
## 2288    X360 2009 Role-Playing                             Activision     0.68
## 2289      DS 2008      Shooter                             Activision     0.57
## 2290    SNES 1994   Simulation                            Hudson Soft     0.00
## 2291      XB 2004         Misc                                   Sega     0.61
## 2292     PS3 2009         Misc                             Activision     0.42
## 2293    XOne 2014 Role-Playing                        Electronic Arts     0.55
## 2294     PS3 2007       Action                        Electronic Arts     0.38
## 2295     PS2 2002       Sports                        Electronic Arts     0.44
## 2296      GC 2004 Role-Playing                                Unknown     0.01
## 2297    SNES 1996       Racing                    ASCII Entertainment     0.00
## 2298     PS2 2004       Sports            Sony Computer Entertainment     0.44
## 2299     PS3 2011      Shooter            Sony Computer Entertainment     0.66
## 2300     PS2 2005       Racing                        Electronic Arts     0.75
## 2301     PS3 2008         Misc            Sony Computer Entertainment     0.28
## 2302     Wii 2008       Sports                                  Atari     0.38
## 2303      PS 1995       Racing                              Psygnosis     0.50
## 2304      DS 2008       Puzzle                           Midway Games     0.30
## 2305     PS3 2013      Shooter                        Electronic Arts     0.26
## 2306      PS 1999       Action                            989 Studios     0.50
## 2307     PS2 2006       Sports            Sony Computer Entertainment     0.17
## 2308      XB 2003     Platform                                   Sega     0.41
## 2309     PSP 2009      Shooter            Sony Computer Entertainment     0.27
## 2310     PS3 2011       Sports                        Electronic Arts     0.52
## 2311      DS 2008       Action                              LucasArts     0.51
## 2312     N64 1998       Sports                        Electronic Arts     0.84
## 2313     PS2 2007     Platform                             Activision     0.74
## 2314      XB 2002      Shooter                        Electronic Arts     0.65
## 2315     Wii 2008         Misc                                   Sega     0.42
## 2316      PC 2014 Role-Playing                     Bethesda Softworks     0.32
## 2317     PS3 2008       Racing             Disney Interactive Studios     0.42
## 2318     Wii 2008       Sports                        Electronic Arts     0.29
## 2319      DS 2008 Role-Playing                               Nintendo     0.84
## 2320     PS3 2012       Action            Sony Computer Entertainment     0.42
## 2321      XB 2004 Role-Playing                             Activision     0.62
## 2322      XB 2004       Sports                        Electronic Arts     0.81
## 2323     PS2 2003       Sports                        Electronic Arts     0.44
## 2324    X360 2010       Sports                                    THQ     0.73
## 2325     GBA 2005     Platform                             Activision     0.62
## 2326     PS3 2009      Shooter                                Ubisoft     0.35
## 2327     PSP 2006      Shooter            Sony Computer Entertainment     0.44
## 2328     Wii 2007       Sports                        Electronic Arts     0.82
## 2329     PS2 2005       Sports                                Unknown     0.74
## 2330     PS4 2015       Action Warner Bros. Interactive Entertainment     0.32
## 2331     GBA 2001     Platform           Konami Digital Entertainment     0.60
## 2332      DS 2008 Role-Playing                                   Sega     0.51
## 2333     PS2 2005       Sports                        Electronic Arts     0.74
## 2334     GBA 2004    Adventure                               Nintendo     0.46
## 2335     PS3 2012     Platform            Sony Computer Entertainment     0.60
## 2336     GBA 2004     Strategy                               Nintendo     0.42
## 2337      GB 2001     Strategy                               Nintendo     0.00
## 2338      GC 2003       Action                                    THQ     0.69
## 2339     Wii 2008    Adventure                                Ubisoft     0.36
## 2340      PS 1997   Simulation            Sony Computer Entertainment     0.16
## 2341     Wii 2009       Racing                            Codemasters     0.15
## 2342     PS2 2001       Sports                                   Sega     0.44
## 2343     PS4 2016       Sports                        Electronic Arts     0.28
## 2344     PSP 2011     Fighting                            Square Enix     0.21
## 2345     3DS 2013       Action Warner Bros. Interactive Entertainment     0.42
## 2346    X360 2010       Racing                            Codemasters     0.18
## 2347     Wii 2006       Racing                                Ubisoft     0.81
## 2348      PC 2009      Shooter                             Activision     0.01
## 2349    WiiU 2013       Sports                               Nintendo     0.39
## 2350    X360 2012 Role-Playing                        Electronic Arts     0.55
## 2351     Wii 2011      Shooter                             Activision     0.60
## 2352      PS 2000       Sports            Sony Computer Entertainment     0.49
## 2353     PS2 2006         Misc            Sony Computer Entertainment     0.00
## 2354    SNES 1995 Role-Playing                             SquareSoft     0.00
## 2355      PS 1996     Platform                                 Capcom     0.44
## 2356    X360 2010     Fighting                                    THQ     0.44
## 2357    X360 2012       Action                            Square Enix     0.38
## 2358      PC 2008       Action                   Take-Two Interactive     0.01
## 2359      DS 2008         Misc                               Pinnacle     0.00
## 2360    X360 2011         Misc                                Ubisoft     0.62
## 2361     Wii 2009       Action                                  Atari     0.60
## 2362    X360 2010         Misc                              MTV Games     0.73
## 2363     3DS 2012       Action                                 Capcom     0.30
## 2364     PS2 2005       Action                   Take-Two Interactive     0.43
## 2365     PS2 2007         Misc            Sony Computer Entertainment     0.32
## 2366     Wii 2009   Simulation                               Nintendo     0.47
## 2367      PS 1996      Shooter                                CTO SpA     0.49
## 2368    XOne 2015       Action                            Square Enix     0.42
## 2369     PSP 2004     Strategy           Konami Digital Entertainment     0.32
## 2370     Wii 2008   Simulation                              505 Games     0.51
## 2371     PS3 2012     Fighting                     Namco Bandai Games     0.28
## 2372     PS2 2004       Sports                            Global Star     0.43
## 2373    X360 2008       Racing                            Codemasters     0.33
## 2374     PSP 2009 Role-Playing                                   Sega     0.08
## 2375      XB 2003   Simulation                 Microsoft Game Studios     0.65
## 2376      PS 2001      Shooter                              TalonSoft     0.49
## 2377      PS 1995     Platform                       Crystal Dynamics     0.49
## 2378    XOne 2013       Sports                   Take-Two Interactive     0.70
## 2379    X360 2007       Racing                            Codemasters     0.38
## 2380    SNES 1994       Sports                    ASCII Entertainment     0.00
## 2381     Wii 2010       Sports                                Ubisoft     0.71
## 2382    X360 2009      Shooter                                    THQ     0.48
## 2383      XB 2003      Shooter                                Ubisoft     0.61
## 2384     PS3 2008      Shooter                        Electronic Arts     0.29
## 2385      PS 1997       Racing                             Infogrames     0.43
## 2386     PS2 2008 Role-Playing                            Square Enix     0.73
## 2387     Wii 2010       Puzzle                                    THQ     0.61
## 2388     PS3 2012       Action                        Electronic Arts     0.82
## 2389     PS3 2012 Role-Playing                        Electronic Arts     0.37
## 2390      PS 1996       Sports            Sony Computer Entertainment     0.48
## 2391     PS3 2008       Sports                                   Sega     0.14
## 2392     Wii 2009      Shooter                                   Sega     0.46
## 2393     PS2 2006       Sports                             Activision     0.72
## 2394     PS4 2013     Fighting Warner Bros. Interactive Entertainment     0.46
## 2395      PS 1998       Sports                        Electronic Arts     0.48
## 2396     PSP 2008         Misc            Sony Computer Entertainment     0.20
## 2397    X360 2008      Shooter                                Ubisoft     0.47
## 2398     PS2 2005     Fighting                        Electronic Arts     0.72
## 2399      DS 2009         Misc             Disney Interactive Studios     0.59
## 2400      DS 2009       Action Warner Bros. Interactive Entertainment     0.63
## 2401      XB 2002      Shooter                                    SCi     0.48
## 2402     PS2 2002       Sports                        Electronic Arts     0.43
## 2403      PS 2000 Role-Playing                    Crave Entertainment     0.30
## 2404     PSP 2006       Puzzle            Sony Computer Entertainment     0.12
## 2405     PS2 2007       Action                             Tecmo Koei     0.11
## 2406    X360 2010         Misc                             Activision     0.47
## 2407    2600 1982         Misc                                 Quelle     0.81
## 2408     PS3 2012 Role-Playing                     Namco Bandai Games     0.20
## 2409     PS2 2007         Misc            Sony Computer Entertainment     0.10
## 2410     3DS 2015       Action                              mixi, Inc     0.00
## 2411     Wii 2007       Action                      Eidos Interactive     0.12
## 2412     PSP 2006       Sports           Konami Digital Entertainment     0.01
## 2413     PS3 2012       Action                                    THQ     0.35
## 2414     PS3 2009       Action            Sony Computer Entertainment     0.34
## 2415      DS 2007 Role-Playing                            Square Enix     0.54
## 2416     3DS 2015       Action                                Unknown     0.00
## 2417     PS2 2002     Fighting                          Rage Software     0.42
## 2418     3DS 2015 Role-Playing                            Square Enix     0.00
## 2419      PS 2001       Racing                     Empire Interactive     0.48
## 2420     N64 1997       Sports                        Electronic Arts     0.81
## 2421      PS 1998       Sports            Sony Computer Entertainment     0.48
## 2422     PS3 2008     Fighting                                  Atari     0.22
## 2423      GC 2003       Racing                                Unknown     0.02
## 2424      DS 2008     Platform                               Nintendo     0.61
## 2425    X360 2010       Sports                        Electronic Arts     0.32
## 2426     PS2 2003       Action                             Tecmo Koei     0.17
## 2427     PS3 2009       Action                         Ubisoft Annecy     0.52
## 2428    X360 2014       Racing                 Microsoft Game Studios     0.35
## 2429     PS3 2009       Sports                        Electronic Arts     0.46
## 2430      DS 2007       Sports                        Electronic Arts     0.10
## 2431      PS 1999       Action                                    3DO     0.47
## 2432     Wii 2009       Racing                        Electronic Arts     0.46
## 2433     Wii 2008       Sports                        Electronic Arts     0.78
## 2434    X360 2007       Sports                   Take-Two Interactive     0.79
## 2435    XOne 2016       Action                                Ubisoft     0.46
## 2436      PS 1996     Fighting                     Virgin Interactive     0.14
## 2437      XB 2004       Sports                        Electronic Arts     0.64
## 2438     PS3 2010      Shooter                        Electronic Arts     0.44
## 2439     Wii 2007   Simulation                                Ubisoft     0.74
## 2440     NES 1989     Platform           Konami Digital Entertainment     0.40
## 2441      DS 2007       Action                        Electronic Arts     0.28
## 2442      PS 1997       Action                         GT Interactive     0.47
## 2443     PSP 2005       Racing                        Electronic Arts     0.70
## 2444     PS3 2014       Sports                   Take-Two Interactive     0.36
## 2445    XOne 2016      Shooter                             Activision     0.52
## 2446     PS2 2007       Action                                    THQ     0.31
## 2447      PS 1995       Sports            Sony Computer Entertainment     0.47
## 2448     PS2 2002       Racing                  Acclaim Entertainment     0.42
## 2449     3DS 2016       Action                               Nintendo     0.26
## 2450     PS2 2000     Fighting                     Virgin Interactive     0.32
## 2451     Wii 2010         Misc           Konami Digital Entertainment     0.52
## 2452    X360 2012      Shooter                              505 Games     0.46
## 2453     PS4 2014       Action                            Square Enix     0.28
## 2454      GC 2004       Action                             Activision     0.65
## 2455      DS 2010 Role-Playing                               Nintendo     0.56
## 2456     PS3 2010       Sports                        Electronic Arts     0.37
## 2457     PS3 2012       Action                                 Capcom     0.42
## 2458     PS4 2016       Action            Sony Computer Entertainment     0.68
## 2459     PS3 2009       Sports                   Take-Two Interactive     0.75
## 2460    WiiU 2015 Role-Playing                               Nintendo     0.36
## 2461      DS 2008   Simulation                                Ubisoft     0.46
## 2462      GC 2004       Action                                    THQ     0.65
## 2463     PS3 2010       Sports                        Electronic Arts     0.79
## 2464     PS3 2011       Action                        Electronic Arts     0.40
## 2465     PS2 2003       Racing                  Acclaim Entertainment     0.41
## 2466     Wii 2007   Simulation                      Rising Star Games     0.69
## 2467     NES 1987 Role-Playing                             SquareSoft     0.32
## 2468     PS3 2012     Fighting                                 Capcom     0.42
## 2469      PS 2001       Sports                                    THQ     0.47
## 2470    X360 2011      Shooter                   Take-Two Interactive     0.52
## 2471     PS2 2002       Racing                     Empire Interactive     0.41
## 2472     PS4 2015      Shooter                   Take-Two Interactive     0.36
## 2473     PS2 2005 Role-Playing            Sony Computer Entertainment     0.24
## 2474     PS2 2004       Sports                                   Sega     0.41
## 2475     GBA 2004    Adventure                               Nintendo     0.60
## 2476     PSV 2014       Sports                        Electronic Arts     0.13
## 2477     PS3 2007      Shooter                     Namco Bandai Games     0.32
## 2478     PS2 2007       Action                            D3Publisher     0.09
## 2479    X360 2013       Racing                        Electronic Arts     0.37
## 2480      PS 1999       Puzzle                                  Atari     0.46
## 2481     Wii 2008     Fighting                                    THQ     0.44
## 2482      PS 1999   Simulation            Sony Computer Entertainment     0.22
## 2483     PS2 2000       Action                                    THQ     0.24
## 2484      DS 2008     Strategy                                Ubisoft     0.38
## 2485     PS3 2007    Adventure                              Alchemist     0.00
## 2486     GBA 2004       Action             Disney Interactive Studios     0.60
## 2487     PSV 2014      Shooter                   Take-Two Interactive     0.43
## 2488     PS2 2000       Sports                        Electronic Arts     0.27
## 2489      XB 2003      Shooter                 Microsoft Game Studios     0.62
## 2490    X360 2012         Misc                 Microsoft Game Studios     0.57
## 2491      GB 2000         Misc           Konami Digital Entertainment     0.00
## 2492      PS 1998         Misc                                Unknown     0.46
## 2493      PS 1997    Adventure                                 Capcom     0.39
## 2494     PS3 2011       Sports                        Electronic Arts     0.78
## 2495     PS2 2005     Platform            Sony Computer Entertainment     0.69
## 2496     Wii 2008         Misc                                Ubisoft     0.77
## 2497    X360 2008     Strategy                   Take-Two Interactive     0.58
## 2498     Wii 2009      Shooter                               Nintendo     0.00
## 2499      DS 2007       Puzzle                        Scholastic Inc.     0.77
## 2500     PS3 2012       Action                             Activision     0.31
## 2501     PS3 2010     Fighting                     Namco Bandai Games     0.42
## 2502      PS 1998     Platform            Sony Computer Entertainment     0.46
## 2503      PS 1996    Adventure                              Interplay     0.46
## 2504     Wii 2009       Sports                            Hudson Soft     0.33
## 2505      XB 2002      Shooter                        Electronic Arts     0.58
## 2506    XOne 2016       Sports                        Electronic Arts     0.72
## 2507     PSP 2005       Sports                             Activision     0.46
## 2508      GC 2001       Sports                             Activision     0.64
## 2509     PS2 2006 Role-Playing                             Activision     0.69
## 2510     Wii 2009       Action                              LucasArts     0.44
## 2511    X360 2010         Misc                             Activision     0.64
## 2512     PS4 2016     Fighting                                 Capcom     0.35
## 2513      XB 2002       Racing                        Electronic Arts     0.68
## 2514     NES 1984       Puzzle                               Nintendo     0.42
## 2515     N64 1996     Fighting                               Nintendo     0.61
## 2516      XB 2001       Sports                 Microsoft Game Studios     0.69
## 2517    2600 1981       Action                               Mystique     0.76
## 2518     PSP 2005    Adventure            Sony Computer Entertainment     0.19
## 2519     PS3 2013       Action                                 Capcom     0.24
## 2520     3DS 2011 Role-Playing                     Namco Bandai Games     0.42
## 2521     PS2 2002     Platform                                    THQ     0.40
## 2522     PS3 2010         Misc                             Activision     0.33
## 2523     Wii 2010         Misc                        Electronic Arts     0.47
## 2524     PS3 2015       Sports                        Electronic Arts     0.56
## 2525    X360 2007      Shooter                           Midway Games     0.40
## 2526      DS 2008   Simulation                                Ubisoft     0.40
## 2527     PS2 2008 Role-Playing                                  Atlus     0.34
## 2528     PS3 2008         Misc            Sony Computer Entertainment     0.29
## 2529     PSP 2006         Misc                                Unknown     0.02
## 2530     PS4 2013       Sports                        Electronic Arts     0.62
## 2531     PS3 2012       Action            Sony Computer Entertainment     0.67
## 2532      GB 2000 Role-Playing                       Enix Corporation     0.00
## 2533      DS 2006       Action             Disney Interactive Studios     0.73
## 2534     PS2 2000     Fighting                           Midway Games     0.40
## 2535    SNES 1994    Adventure                               ChunSoft     0.00
## 2536     PSP 2007         Misc            Sony Computer Entertainment     0.33
## 2537      PS 2000 Role-Playing                     Namco Bandai Games     0.06
## 2538    SNES 1994       Puzzle                            Hudson Soft     0.00
## 2539      PS 2000       Racing                        Electronic Arts     0.45
## 2540     Wii 2010       Sports                        Electronic Arts     0.77
## 2541      GC 2004       Action                               Nintendo     0.63
## 2542      PS 1999       Sports           Konami Digital Entertainment     0.00
## 2543     PS4 2015         Misc                             Activision     0.32
## 2544      PS 1999 Role-Playing                       Enix Corporation     0.07
## 2545     PSP 2011 Role-Playing                                Unknown     0.00
## 2546    X360 2009       Sports           Konami Digital Entertainment     0.12
## 2547     N64 1999       Action                                    3DO     0.68
## 2548     NES 1987     Platform                                 Capcom     0.45
## 2549     PS2 2004      Shooter                                Ubisoft     0.40
## 2550     PS3 2014       Action Warner Bros. Interactive Entertainment     0.33
## 2551    SNES 1994 Role-Playing                               Nintendo     0.00
## 2552    X360 2009       Racing                            Codemasters     0.32
## 2553     3DS 2012       Puzzle                                Level 5     0.20
## 2554      PS 1998       Puzzle                                  Atari     0.45
## 2555    XOne 2015       Action Warner Bros. Interactive Entertainment     0.43
## 2556     PS3 2009       Sports                        Electronic Arts     0.75
## 2557     Wii 2008       Action                             Koch Media     0.52
## 2558      PS 1998       Sports           Konami Digital Entertainment     0.00
## 2559     PS2 2007 Role-Playing                            Square Enix     0.35
## 2560     PS2 2005   Simulation                        Electronic Arts     0.67
## 2561    X360 2009         Misc                             Activision     0.52
## 2562     PS3 2013       Sports                        Electronic Arts     0.75
## 2563     Wii 2009       Action                                   Sega     0.46
## 2564    X360 2011     Fighting                        Electronic Arts     0.40
## 2565      PS 2000         Misc                      Eidos Interactive     0.45
## 2566     PS2 2005       Action                                   Sega     0.03
## 2567      GC 2003   Simulation                              LucasArts     0.62
## 2568     Wii 2011         Misc                                Ubisoft     0.19
## 2569      PS 1997       Racing                        Electronic Arts     0.45
## 2570     PS2 2004      Shooter                      Eidos Interactive     0.39
## 2571     PSP 2006   Simulation                        Electronic Arts     0.19
## 2572      PS 1999 Role-Playing                              Square EA     0.45
## 2573    X360 2013      Shooter                                   Sega     0.36
## 2574     PSP 2009       Sports           Konami Digital Entertainment     0.09
## 2575    X360 2012       Action                             Activision     0.48
## 2576    X360 2010       Racing                                   Sega     0.37
## 2577     PS3 2011      Shooter                             Activision     0.33
## 2578     PS3 2015       Sports                   Take-Two Interactive     0.44
## 2579     Wii 2008       Sports                                    THQ     0.43
## 2580     PSP 2007   Simulation                        Electronic Arts     0.08
## 2581      XB 2004       Action                                Ubisoft     0.48
## 2582    X360 2012 Role-Playing                                 Capcom     0.42
## 2583    X360 2012       Action                                    THQ     0.45
## 2584     PS3 2013       Action                                 Capcom     0.14
## 2585      DS 2007         Misc                                Ubisoft     0.73
## 2586      PS 2000     Strategy                              Banpresto     0.00
## 2587     Wii 2009      Shooter                               Nintendo     0.00
## 2588      GC 2002       Racing                        Electronic Arts     0.68
## 2589     Wii 2010       Action                              LucasArts     0.54
## 2590    X360 2009         Misc                             Activision     0.51
## 2591    WiiU 2013       Sports                               Nintendo     0.39
## 2592     PS2 2002 Role-Playing                     Namco Bandai Games     0.00
## 2593    SNES 1993       Sports                               Nintendo     0.00
## 2594     PS3 2011      Shooter                       City Interactive     0.26
## 2595    X360 2009       Action                        Electronic Arts     0.47
## 2596     PSP 2010       Sports           Konami Digital Entertainment     0.05
## 2597    2600 1981       Action           20th Century Fox Video Games     0.74
## 2598     PS2 2006     Fighting                                  Atari     0.66
## 2599     PS3 2012    Adventure                     Avanquest Software     0.40
## 2600    X360 2011     Platform                                Ubisoft     0.38
## 2601     PS2 2008         Misc                             Activision     0.61
## 2602      PS 1994       Racing            Sony Computer Entertainment     0.00
## 2603      DS 2007 Role-Playing                            Square Enix     0.42
## 2604      GC 2003 Role-Playing                                Ubisoft     0.61
## 2605      PS 1997   Simulation                   Hudson Entertainment     0.00
## 2606     PSP 2009     Strategy            Sony Computer Entertainment     0.17
## 2607      PS 2001       Racing                   Take-Two Interactive     0.44
## 2608     PS3 2009       Sports                        Electronic Arts     0.42
## 2609      DS 2008       Action                              LucasArts     0.62
## 2610     N64 1999     Fighting                        Electronic Arts     0.63
## 2611     NES 1992     Platform                                 Capcom     0.39
## 2612    X360 2009 Role-Playing                            Square Enix     0.32
## 2613     PS2 2007   Simulation           Konami Digital Entertainment     0.64
## 2614     PS2 2000   Simulation                                Ubisoft     0.28
## 2615     3DS 2014 Role-Playing                            Square Enix     0.00
## 2616     Wii 2007      Shooter                                   Sega     0.42
## 2617    X360 2013       Action                            Deep Silver     0.44
## 2618      DS 2007       Action                                    THQ     0.71
## 2619     N64 1998       Sports                               Nintendo     0.75
## 2620     Wii 2011       Sports                        Electronic Arts     0.16
## 2621    X360 2008 Role-Playing                 Microsoft Game Studios     0.38
## 2622     PS3 2008     Strategy                   Take-Two Interactive     0.49
## 2623     PS2 2007       Sports                        Electronic Arts     0.65
## 2624      XB 2003       Sports                        Electronic Arts     0.24
## 2625      DS 2008       Sports                               Nintendo     0.22
## 2626    X360 2010     Fighting                     Namco Bandai Games     0.43
## 2627     Wii 2011       Action                               Nintendo     0.27
## 2628     3DS 2013       Puzzle                               Nintendo     0.00
## 2629    X360 2006       Action                                Ubisoft     0.67
## 2630    2600 1982      Shooter                                  Atari     0.73
## 2631    X360 2008         Misc                 Microsoft Game Studios     0.12
## 2632     GBA 2002     Platform                          Vivendi Games     0.56
## 2633      DS 2006      Shooter                               Nintendo     0.58
## 2634      PC 1992    Adventure                     Virgin Interactive     0.01
## 2635      PS 1994      Shooter                             Infogrames     0.43
## 2636     PS2 2007         Misc            Sony Computer Entertainment     0.17
## 2637      DS 2009       Puzzle                                Ubisoft     0.41
## 2638      DS 2008    Adventure                                    THQ     0.72
## 2639     Wii 2009         Misc                           Nordic Games     0.00
## 2640      PS 1999     Fighting                                 Capcom     0.43
## 2641     PS3 2012       Action            Sony Computer Entertainment     0.72
## 2642      PS 1997     Strategy                        Electronic Arts     0.43
## 2643      DS 2010       Puzzle                               Nintendo     0.29
## 2644     PS4 2015       Sports           Konami Digital Entertainment     0.13
## 2645     PSP 2006     Strategy                                    THQ     0.11
## 2646     PSP 2009      Shooter                              LucasArts     0.38
## 2647    X360 2011       Sports                                    THQ     0.53
## 2648    X360 2012       Action                                 Capcom     0.55
## 2649     PS2 2006       Sports                   Take-Two Interactive     0.65
## 2650     PSP 2008       Racing                        Electronic Arts     0.24
## 2651    X360 2010       Action             Disney Interactive Studios     0.41
## 2652    SNES 1993 Role-Playing                               ChunSoft     0.00
## 2653    2600 1983       Puzzle                                  Atari     0.72
## 2654      GC 2002      Shooter                        Electronic Arts     0.60
## 2655    X360 2008     Platform                 Microsoft Game Studios     0.32
## 2656      PS 1998       Sports            Sony Computer Entertainment     0.43
## 2657    X360 2009       Action                                Ubisoft     0.34
## 2658     Wii 2009       Action                        Electronic Arts     0.28
## 2659     Wii 2009         Misc                             Activision     0.47
## 2660    X360 2005      Shooter                 Microsoft Game Studios     0.66
## 2661    2600 1982      Shooter                                  Atari     0.72
## 2662      PS 1996       Racing                        Electronic Arts     0.43
## 2663      PS 2000         Misc                              Interplay     0.43
## 2664    XOne 2013       Sports                        Electronic Arts     0.67
## 2665    2600 1981       Action                           Men-A-Vision     0.72
## 2666     PSP 2008       Racing                        Electronic Arts     0.23
## 2667     PS3 2011      Shooter                   Take-Two Interactive     0.33
## 2668     PSV 2014 Role-Playing            Sony Computer Entertainment     0.22
## 2669     PS2 2005     Fighting                        Electronic Arts     0.64
## 2670    2600 1980     Fighting                             Activision     0.72
## 2671      PS 1999       Racing                        Electronic Arts     0.43
## 2672     PS3 2009     Fighting                     Namco Bandai Games     0.37
## 2673    2600 1983       Action                                  Atari     0.72
## 2674     N64 2001     Platform                                    THQ     0.53
## 2675      GB 1999 Role-Playing                       Enix Corporation     0.00
## 2676     GBA 2002       Action                                    THQ     0.55
## 2677      DS 2008   Simulation                                Nobilis     0.61
## 2678      DS 2012       Action Warner Bros. Interactive Entertainment     0.43
## 2679     PSP 2005       Action            Sony Computer Entertainment     0.71
## 2680     PS2 2003      Shooter                                    SCi     0.38
## 2681     PS2 2001     Platform                                 Capcom     0.38
## 2682      DS 2004       Racing                               Nintendo     0.21
## 2683     GBA 2005     Platform                               Nintendo     0.45
## 2684     PS2 2002       Sports                  Acclaim Entertainment     0.38
## 2685     PS2 2002 Role-Playing                                  Atari     0.10
## 2686     PS2 2003       Sports                       Activision Value     0.37
## 2687     PS2 2008     Platform                                   Sega     0.37
## 2688      PS 1996       Racing                              Psygnosis     0.18
## 2689     PS3 2014      Shooter                        Electronic Arts     0.22
## 2690     Wii 2010    Adventure                                Ubisoft     0.22
## 2691     3DS 2011   Simulation                        Electronic Arts     0.30
## 2692      XB 2004       Racing                                  Atari     0.36
## 2693     PS2 2005       Action                              LucasArts     0.64
## 2694     PS2 2003     Fighting                           Gotham Games     0.37
## 2695      PS 1995     Fighting                     Virgin Interactive     0.17
## 2696     PSV 2012     Fighting Warner Bros. Interactive Entertainment     0.47
## 2697      PS 1998       Sports           Konami Digital Entertainment     0.00
## 2698    X360 2010      Shooter                                 Capcom     0.38
## 2699     PS3 2012     Fighting                     Namco Bandai Games     0.35
## 2700      PC 2011      Shooter                         Valve Software     0.33
## 2701      DS 2005         Misc                                   Sega     0.70
## 2702     PS4 2014       Sports           Konami Digital Entertainment     0.09
## 2703     Wii 2009       Puzzle                                    THQ     0.29
## 2704     PS3 2009       Action                        Electronic Arts     0.38
## 2705     NES 1988 Role-Playing                             SquareSoft     0.00
## 2706     N64 2001       Sports                             Activision     0.59
## 2707     PS2 2002         Misc                     Namco Bandai Games     0.00
## 2708     GBA 2005 Role-Playing                                 Capcom     0.09
## 2709     PS2 2004      Shooter            Sony Computer Entertainment     0.37
## 2710     PS2 2010       Sports                        Electronic Arts     0.11
## 2711     Wii 2009       Sports                    Big Ben Interactive     0.67
## 2712    X360 2007      Shooter                      Eidos Interactive     0.36
## 2713      PC 2011       Action                                Ubisoft     0.14
## 2714      XB 2004     Fighting                           Midway Games     0.61
## 2715      DS 2009    Adventure                                 Capcom     0.27
## 2716     GBA 2004    Adventure             Disney Interactive Studios     0.54
## 2717     Wii 2014       Sports                        Electronic Arts     0.24
## 2718     PS2 2002     Fighting                                 Capcom     0.31
## 2719     PSP 2009       Racing                        Electronic Arts     0.16
## 2720     PS3 2007      Shooter                      Eidos Interactive     0.29
## 2721    X360 2014 Role-Playing                     Namco Bandai Games     0.48
## 2722     PS2 2005       Action                             Activision     0.57
## 2723     PS2 2001     Fighting                  Acclaim Entertainment     0.37
## 2724    X360 2006       Sports                   Take-Two Interactive     0.28
## 2725     Wii 2010         Misc                        Electronic Arts     0.24
## 2726     PS3 2006       Action            Sony Computer Entertainment     0.18
## 2727     Wii 2008   Simulation                      Rising Star Games     0.60
## 2728      GB 1991 Role-Playing                             SquareSoft     0.00
## 2729      PC 2013     Strategy                                   Sega     0.12
## 2730    XOne 2015         Misc                 Microsoft Game Studios     0.47
## 2731      DS 2007 Role-Playing             Disney Interactive Studios     0.67
## 2732     PS2 2008     Platform                                    THQ     0.21
## 2733     PSP 2008     Fighting                                    THQ     0.41
## 2734     PS3 2009         Misc                             Activision     0.41
## 2735      PS 2000     Platform                                 Capcom     0.30
## 2736     PSV 2013    Adventure     Sony Computer Entertainment Europe     0.17
## 2737     PS3 2010         Misc                             Activision     0.47
## 2738     PS3 2009       Action                        Electronic Arts     0.41
## 2739     Wii 2009     Fighting                                    THQ     0.51
## 2740    X360 2008       Action                             Touchstone     0.46
## 2741     PS3 2012       Action                             Activision     0.36
## 2742     PS2 2004       Action                             Activision     0.37
## 2743     N64 1997       Racing                         GT Interactive     0.63
## 2744    X360 2012       Action                             Activision     0.43
## 2745     PS2 2001      Shooter           Konami Digital Entertainment     0.30
## 2746     PS3 2009      Shooter                                    THQ     0.33
## 2747      PS 1997     Fighting                     Virgin Interactive     0.28
## 2748     PSP 2005       Sports                        Electronic Arts     0.69
## 2749     PSP 2005      Shooter           Konami Digital Entertainment     0.28
## 2750      XB 2004       Sports                             Activision     0.48
## 2751    X360 2008 Role-Playing                                  Atari     0.32
## 2752     PS3 2009       Action                             Activision     0.31
## 2753      DS 2008       Action                             Activision     0.42
## 2754     PS3 2010       Racing             Disney Interactive Studios     0.31
## 2755     PS2 2001     Fighting                                 Capcom     0.22
## 2756     PS2 2006       Sports                        Electronic Arts     0.62
## 2757    WiiU 2014         Misc                                Ubisoft     0.40
## 2758    X360 2014      Shooter                   Take-Two Interactive     0.46
## 2759     PS3 2014     Platform            Sony Computer Entertainment     0.20
## 2760     PS3 2009 Role-Playing                             Activision     0.49
## 2761      DS 2008       Sports                                   Sega     0.29
## 2762    X360 2012    Adventure                     Avanquest Software     0.55
## 2763     PS3 2011       Action                     Namco Bandai Games     0.30
## 2764      DS 2006     Fighting                               Nintendo     0.00
## 2765     PS2 2001         Misc            Sony Computer Entertainment     0.36
## 2766     PS3 2010 Role-Playing                                   Sega     0.20
## 2767     PS2 2001       Racing                  Acclaim Entertainment     0.36
## 2768     PSP 2007      Shooter                                Ubisoft     0.42
## 2769    X360 2011 Role-Playing                            Square Enix     0.36
## 2770     3DS 2012       Action Warner Bros. Interactive Entertainment     0.41
## 2771     PSP 2006     Fighting                           Midway Games     0.67
## 2772     3DS 2015 Role-Playing                               Nintendo     0.16
## 2773     GBA 2001         Misc           Konami Digital Entertainment     0.42
## 2774     PS3 2011      Shooter                     Bethesda Softworks     0.29
## 2775    WiiU 2013       Action Warner Bros. Interactive Entertainment     0.31
## 2776     PS3 2010       Racing                             Activision     0.22
## 2777     Wii 2006      Shooter                                Unknown     0.02
## 2778     Wii 2007         Misc                                  Atari     0.68
## 2779      XB 2005       Racing                   Take-Two Interactive     0.61
## 2780      PC 2011       Action                        Electronic Arts     0.16
## 2781     GBA 2002       Action                        Electronic Arts     0.53
## 2782     PS2 2001       Sports                        Electronic Arts     0.36
## 2783     Wii 2009       Action                             Activision     0.36
## 2784      PS 1999       Racing            Sony Computer Entertainment     0.41
## 2785     PS3 2012     Fighting                     Namco Bandai Games     0.27
## 2786      XB 2002      Shooter                                  Atari     0.59
## 2787      DS 2008     Platform                                Unknown     0.02
## 2788     PS3 2007       Action             Disney Interactive Studios     0.17
## 2789     PS3 2007       Sports                        Electronic Arts     0.22
## 2790     PS3 2012     Fighting                                  Atlus     0.30
## 2791     GBA 2003 Role-Playing                               Nintendo     0.31
## 2792      DS 2007   Simulation                      Rising Star Games     0.44
## 2793     PS3 2010 Role-Playing                            Square Enix     0.28
## 2794      DS 2007   Simulation                        Electronic Arts     0.63
## 2795      PS 1997       Sports                        Electronic Arts     0.14
## 2796    SNES 1993     Fighting                     Namco Bandai Games     0.00
## 2797     GBA 2004     Platform                               Nintendo     0.40
## 2798      PC 2013      Shooter                             Activision     0.23
## 2799      GB 1991       Puzzle                               Nintendo     0.00
## 2800     N64 1998     Fighting                         GT Interactive     0.55
## 2801    X360 2011       Racing                            Codemasters     0.11
## 2802     Wii 2009       Sports                        Electronic Arts     0.63
## 2803      DS 2005     Platform                               Nintendo     0.37
## 2804      PS 1999     Platform                        Fox Interactive     0.41
## 2805      DS 2007         Misc                               Nintendo     0.00
## 2806      XB 2001     Platform                                  Atari     0.54
## 2807    2600 1981      Shooter                                  Atari     0.68
## 2808    X360 2010       Sports                        Electronic Arts     0.61
## 2809      PC 2014 Role-Playing                        Electronic Arts     0.32
## 2810      DS 2009    Adventure                             Activision     0.67
## 2811    X360 2011       Racing                            Codemasters     0.23
## 2812    X360 2006       Sports                        Electronic Arts     0.67
## 2813     Wii 2011         Misc                               Nintendo     0.00
## 2814      XB 2004     Strategy                                    THQ     0.54
## 2815     PS2 2004       Puzzle                     Namco Bandai Games     0.47
## 2816     GBA 2003       Action                                  Atari     0.52
## 2817     PS3 2012       Action            Sony Computer Entertainment     0.47
## 2818     Wii 2009       Action                                Ubisoft     0.33
## 2819     PS2 2001       Sports                            Codemasters     0.36
## 2820    X360 2009       Racing                                    THQ     0.52
## 2821      DS 2008   Simulation                                Ubisoft     0.34
## 2822    X360 2012       Sports                        Electronic Arts     0.38
## 2823     3DS 2012   Simulation                               Nintendo     0.16
## 2824      GC 2002      Shooter                        Electronic Arts     0.56
## 2825      PC 2012     Strategy                   Take-Two Interactive     0.26
## 2826      DS 2009     Platform                                Ubisoft     0.35
## 2827     GBA 2005       Action                                Ubisoft     0.52
## 2828     PS2 2005       Action                             Activision     0.60
## 2829     Wii 2012       Action                        Electronic Arts     0.19
## 2830     PSP 2010       Action                                Unknown     0.00
## 2831     PS4 2014 Role-Playing                            Square Enix     0.32
## 2832      PS 1998     Strategy                     Namco Bandai Games     0.00
## 2833      PS 1996      Shooter                         GT Interactive     0.40
## 2834     PS2 2007       Sports                        Electronic Arts     0.59
## 2835      XB 2002      Shooter                        Electronic Arts     0.53
## 2836     PS2 2006       Sports                        Electronic Arts     0.60
## 2837      PS 1999       Racing                                  Atari     0.40
## 2838     GBA 2005       Action                                   Sega     0.00
## 2839      DS 2011       Action Warner Bros. Interactive Entertainment     0.35
## 2840    X360 2007       Sports                                  Spike     0.67
## 2841      PS 2001     Fighting                             Activision     0.40
## 2842    X360 2013       Action                              505 Games     0.35
## 2843     PS2 2001         Misc            Sony Computer Entertainment     0.35
## 2844    2600 1982     Platform                                  Atari     0.67
## 2845     PS3 2010      Shooter                             Activision     0.18
## 2846     PSP 2007       Action                            D3Publisher     0.23
## 2847    X360 2007       Sports                        Electronic Arts     0.62
## 2848     GBA 2002       Puzzle                                  Atari     0.51
## 2849    X360 2011       Racing                                Ubisoft     0.25
## 2850     PS3 2009       Sports            Sony Computer Entertainment     0.66
## 2851    WiiU 2012 Role-Playing                               Nintendo     0.26
## 2852     PS2 2003   Simulation                     Namco Bandai Games     0.05
## 2853     PS3 2011    Adventure                            Deep Silver     0.30
## 2854      PS 1998       Action                      Eidos Interactive     0.40
## 2855      DS 2010       Sports                        Electronic Arts     0.13
## 2856      PC 2007      Shooter                        Electronic Arts     0.00
## 2857      PC 2010      Shooter                        Electronic Arts     0.19
## 2858      XB 2002       Action                        Electronic Arts     0.45
## 2859      XB 2002       Sports                        Electronic Arts     0.67
## 2860     Wii 2007 Role-Playing                            Square Enix     0.18
## 2861     PS3 2013       Sports            Sony Computer Entertainment     0.66
## 2862    X360 2011   Simulation           Konami Digital Entertainment     0.42
## 2863     PS4 2015       Action                            Square Enix     0.16
## 2864     PS2 2003     Fighting                                   Sega     0.35
## 2865     PS3 2011       Sports                   Take-Two Interactive     0.17
## 2866      PS 2000       Action                      Eidos Interactive     0.23
## 2867     PS3 2007       Action                             Tecmo Koei     0.18
## 2868     PS2 2002       Racing                     Jester Interactive     0.35
## 2869     3DS 2014 Role-Playing                   Nippon Ichi Software     0.33
## 2870     PSP 2007       Sports                        Electronic Arts     0.60
## 2871      GC 2002     Fighting                                  Atari     0.55
## 2872      PS 2000       Racing                  Acclaim Entertainment     0.40
## 2873      XB 2005    Adventure                 Microsoft Game Studios     0.49
## 2874     PS2 2003       Action           Konami Digital Entertainment     0.35
## 2875     PSP 2008       Sports                        Electronic Arts     0.65
## 2876     PS4 2015 Role-Playing                            Square Enix     0.29
## 2877      GC 2002     Strategy           Konami Digital Entertainment     0.49
## 2878     Wii 2009         Misc Warner Bros. Interactive Entertainment     0.42
## 2879     PS3 2010       Sports            Sony Computer Entertainment     0.66
## 2880      GC 2002     Platform                  Universal Interactive     0.55
## 2881     GBA 2004       Action                                    THQ     0.51
## 2882     PS2 2004       Action                                    THQ     0.35
## 2883     3DS 2015         Misc                               Nintendo     0.00
## 2884     N64 1999       Racing                             LEGO Media     0.51
## 2885     N64 1999     Fighting                  Acclaim Entertainment     0.57
## 2886     N64 1997       Action                               Nintendo     0.39
## 2887     PSP 2010       Action Warner Bros. Interactive Entertainment     0.14
## 2888    SNES 1995 Role-Playing                                  Quest     0.00
## 2889      GC 2003       Puzzle                               Nintendo     0.20
## 2890      PC 2013       Sports                                   Sega     0.00
## 2891      PS 1995     Fighting            Sony Computer Entertainment     0.15
## 2892     PSP 2010     Fighting                                    THQ     0.22
## 2893      PS 1997         Misc                     Hasbro Interactive     0.39
## 2894      PS 1998      Shooter                  Acclaim Entertainment     0.39
## 2895    XOne 2015       Action           Konami Digital Entertainment     0.37
## 2896    X360 2007 Role-Playing                        SouthPeak Games     0.41
## 2897      XB 2005      Shooter                             Activision     0.53
## 2898    X360 2008       Sports                        Electronic Arts     0.65
## 2899    X360 2008       Sports                        Electronic Arts     0.50
## 2900     PS3 2013      Shooter            Sony Computer Entertainment     0.30
## 2901     PSP 2005       Action                             Activision     0.35
## 2902     PS3 2014       Sports                        Electronic Arts     0.15
## 2903     PS3 2012       Sports                                   Sega     0.06
## 2904    X360 2011       Sports                        Electronic Arts     0.55
## 2905      GC 2003       Sports                             Activision     0.54
## 2906    X360 2008 Role-Playing                            Square Enix     0.34
## 2907    SNES 1994       Puzzle                            Hudson Soft     0.00
## 2908      PS 1998     Strategy                     Virgin Interactive     0.39
## 2909      DS 2008   Simulation                        Electronic Arts     0.32
## 2910      XB 2001       Action                             Activision     0.52
## 2911    X360 2007       Sports                        Electronic Arts     0.65
## 2912     PS2 2003      Shooter            Sony Computer Entertainment     0.34
## 2913      DS 2011   Simulation                             Activision     0.54
## 2914      GC 2004       Sports                        Electronic Arts     0.54
## 2915     GBA 2001       Action                  Majesco Entertainment     0.50
## 2916     PS2 2001       Racing                                  Atari     0.34
## 2917      PS 1997       Sports                        Electronic Arts     0.39
## 2918      XB 2005 Role-Playing                 Microsoft Game Studios     0.48
## 2919     PS3 2009      Shooter                             Activision     0.28
## 2920      DS 2010   Simulation                        Electronic Arts     0.39
## 2921    WiiU 2014       Action                             Activision     0.39
## 2922     PS3 2010       Action                                Ubisoft     0.19
## 2923      PS 1998 Role-Playing                             SquareSoft     0.04
## 2924     GBA 2001     Strategy                               Nintendo     0.50
## 2925      DS 2009    Adventure             Disney Interactive Studios     0.38
## 2926      DS 2009   Simulation                                    THQ     0.43
## 2927     PSP 2005     Platform            Sony Computer Entertainment     0.52
## 2928     PS2 2000       Racing                        Electronic Arts     0.34
## 2929     PS3 2009   Simulation                              505 Games     0.34
## 2930     PS3 2012       Action            Sony Computer Entertainment     0.13
## 2931      PS 2000       Sports                        Electronic Arts     0.39
## 2932     PS2 2004       Action                     Illusion Softworks     0.34
## 2933     PS2 2000   Simulation                     Namco Bandai Games     0.16
## 2934     PS3 2015       Action           Konami Digital Entertainment     0.21
## 2935     PS2 2002      Shooter                      Eidos Interactive     0.34
## 2936    X360 2010       Sports                                Ubisoft     0.38
## 2937     PS3 2008       Sports            Sony Computer Entertainment     0.64
## 2938     GBA 2004    Adventure                               Nintendo     0.37
## 2939    SNES 1994 Role-Playing                               Nintendo     0.00
## 2940     GBA 2005     Platform             Disney Interactive Studios     0.50
## 2941    2600 1981       Action                            Tigervision     0.65
## 2942    X360 2014       Sports                   Take-Two Interactive     0.38
## 2943     3DS 2014       Action Warner Bros. Interactive Entertainment     0.28
## 2944    X360 2009       Action                             Activision     0.42
## 2945     PSP 2007       Action           Konami Digital Entertainment     0.26
## 2946     Wii 2010       Action             Disney Interactive Studios     0.47
## 2947    X360 2007       Action                             Activision     0.54
## 2948     3DS 2000       Sports                               Nintendo     0.00
## 2949      PS 1997       Racing                        Electronic Arts     0.39
## 2950      XB 2005      Shooter                 Microsoft Game Studios     0.54
## 2951     PS3 2015    Adventure                                 Mojang     0.25
## 2952     PS2 2005       Action                           Midway Games     0.58
## 2953     PSP 2006       Racing                                    THQ     0.64
## 2954     PS3 2014       Action                             Activision     0.24
## 2955     GBA 2004         Misc                               Nintendo     0.50
## 2956     NES 1984     Platform                     Namco Bandai Games     0.00
## 2957    SNES 1993       Sports                     Namco Bandai Games     0.00
## 2958      GC 2003     Fighting                                  Atari     0.53
## 2959      PS 1998       Sports            Sony Computer Entertainment     0.38
## 2960     PS3 2010     Platform            Sony Computer Entertainment     0.52
## 2961     PS3 2013       Action                     Namco Bandai Games     0.00
## 2962      PC 2013       Action                                Ubisoft     0.22
## 2963      GC 2002       Action                        Electronic Arts     0.53
## 2964     PS3 2011       Racing                        Electronic Arts     0.20
## 2965      GC 2003       Action                        Electronic Arts     0.53
## 2966     3DS 2015         Misc                               Nintendo     0.01
## 2967    X360 2007       Racing                                    THQ     0.55
## 2968    X360 2008 Role-Playing                            Square Enix     0.25
## 2969      DS 2013     Platform             Disney Interactive Studios     0.28
## 2970      PC 2011   Simulation                        Electronic Arts     0.27
## 2971     PS2 2004 Role-Playing                              Interplay     0.34
## 2972     GBA 2004       Action                             Activision     0.49
## 2973    XOne 2014      Shooter                        Electronic Arts     0.39
## 2974     Wii 2012       Action                               Nintendo     0.34
## 2975     Wii 2009       Action                             Activision     0.60
## 2976      PS 1997       Action                              LucasArts     0.38
## 2977     Wii 2011 Role-Playing                               Nintendo     0.32
## 2978      XB 2003       Sports                        Electronic Arts     0.62
## 2979     PS3 2008       Action                                   Sega     0.32
## 2980     PS4 2015       Action             Disney Interactive Studios     0.21
## 2981     PS3 2007     Platform                             Activision     0.26
## 2982      XB 2004       Sports                        Electronic Arts     0.63
## 2983      PS 1997     Fighting                         GT Interactive     0.38
## 2984    WiiU 2013     Platform                                Ubisoft     0.26
## 2985      GC 2003     Fighting                       Tomy Corporation     0.53
## 2986     PS2 2005       Action                                Ubisoft     0.57
## 2987     PSP 2007       Sports            Sony Computer Entertainment     0.21
## 2988     PS4 2014       Action                            Deep Silver     0.22
## 2989      DS 2010 Role-Playing                               Nintendo     0.32
## 2990      XB 2005       Action                              LucasArts     0.54
## 2991     PS4 2014      Shooter                              505 Games     0.22
## 2992    XOne 2016      Shooter                     Bethesda Softworks     0.39
## 2993      PS 1998     Fighting                             SquareSoft     0.25
## 2994      PS 1998 Role-Playing           Konami Digital Entertainment     0.15
## 2995    XOne 2015       Racing                        Electronic Arts     0.30
## 2996      DS 2007       Racing                                    THQ     0.63
## 2997      XB 2005       Sports                        Electronic Arts     0.29
## 2998      DS 2009    Adventure                                    GSP     0.19
## 2999     Wii 2006      Shooter                                Ubisoft     0.55
## 3000      XB 2004     Fighting                        Electronic Arts     0.51
## 3001     PS2 2006       Racing            Sony Computer Entertainment     0.28
## 3002      PC 2008 Role-Playing                        Electronic Arts     0.00
## 3003     PS2 2002 Role-Playing                                  Atari     0.23
## 3004     Wii 2011         Misc                           Funbox Media     0.59
## 3005     PS3 2008       Action                             Touchstone     0.35
## 3006     PS2 2004         Misc                           Midway Games     0.33
## 3007      DS 2008         Misc                               Nintendo     0.13
## 3008     PS3 2007      Shooter                           Midway Games     0.33
## 3009      DS 2007 Role-Playing                            Square Enix     0.22
## 3010      XB 2003      Shooter                             Activision     0.49
## 3011    XOne 2013       Racing                        Electronic Arts     0.45
## 3012     PS3 2012       Action Warner Bros. Interactive Entertainment     0.26
## 3013     PS3 2007      Shooter                   Take-Two Interactive     0.20
## 3014      PS 1998       Sports                        Electronic Arts     0.37
## 3015      DS 2010    Adventure             Disney Interactive Studios     0.40
## 3016      PS 1996      Shooter           Konami Digital Entertainment     0.37
## 3017     PS3 2006   Simulation                                Ubisoft     0.35
## 3018      XB 2004     Fighting                        Electronic Arts     0.46
## 3019    XOne 2014      Shooter                     Bethesda Softworks     0.33
## 3020     Wii 2010       Sports                                    THQ     0.49
## 3021      DS 2006         Misc                         Rocket Company     0.00
## 3022      PS 1998       Action            Sony Computer Entertainment     0.37
## 3023      XB 2005      Shooter                             Activision     0.48
## 3024     PS2 2002   Simulation                               Metro 3D     0.22
## 3025     Wii 2008       Racing                        Electronic Arts     0.27
## 3026     Wii 2008         Misc                     Namco Bandai Games     0.00
## 3027      PC 2015 Role-Playing                     Namco Bandai Games     0.20
## 3028     PSP 2005       Sports                                   Sega     0.16
## 3029     PS4 2014       Action Warner Bros. Interactive Entertainment     0.24
## 3030     PSP 2007       Action                                    THQ     0.22
## 3031      PC 2011 Role-Playing                                Unknown     0.44
## 3032      PS 1999 Role-Playing            Sony Computer Entertainment     0.19
## 3033     Wii 2008       Sports                                Ubisoft     0.00
## 3034    X360 2010       Action           Konami Digital Entertainment     0.42
## 3035      PC 2013      Shooter                   Take-Two Interactive     0.28
## 3036     PS4 2015    Adventure                                 Mojang     0.23
## 3037     Wii 2008       Puzzle                                Ubisoft     0.18
## 3038      DS 2010   Simulation                              505 Games     0.40
## 3039     Wii 2008       Action                             Activision     0.30
## 3040     Wii 2010         Misc                              MTV Games     0.56
## 3041      PC 2008     Strategy                        Electronic Arts     0.01
## 3042     PS2 2003     Platform                                    THQ     0.33
## 3043     PSP 2006     Fighting                                    THQ     0.33
## 3044      DS 2010         Misc                                Ubisoft     0.00
## 3045    2600 1981       Action                     Mattel Interactive     0.63
## 3046      DS 2007    Adventure                                 Capcom     0.33
## 3047    X360 2012       Sports                        Electronic Arts     0.51
## 3048     PS3 2014      Shooter                   Take-Two Interactive     0.25
## 3049      PC 2010   Simulation                        Electronic Arts     0.01
## 3050      DS 2009    Adventure                 Focus Home Interactive     0.00
## 3051      DS 2006         Misc                           IE Institute     0.00
## 3052      PS 1999   Simulation                   Take-Two Interactive     0.37
## 3053      XB 2004       Sports                        Electronic Arts     0.49
## 3054     PS3 2008       Sports                                Ubisoft     0.31
## 3055    WiiU 2014       Action Warner Bros. Interactive Entertainment     0.35
## 3056     PS2 2007       Sports                             Activision     0.55
## 3057     PS2 2003       Sports            Sony Computer Entertainment     0.32
## 3058     PS2 2007     Fighting                                  Atari     0.26
## 3059      PS 1998       Sports                        Electronic Arts     0.37
## 3060      PS 2001 Role-Playing                        Electronic Arts     0.37
## 3061     PS2 2002       Sports                        Electronic Arts     0.32
## 3062      XB 2003       Action                                    THQ     0.48
## 3063     PS2 2006     Strategy                                  Atari     0.55
## 3064    X360 2009       Sports                        Electronic Arts     0.51
## 3065     PS2 2000       Sports           Konami Digital Entertainment     0.00
## 3066      GC 2005     Platform                             Activision     0.52
## 3067     Wii 2012       Puzzle                     Namco Bandai Games     0.00
## 3068     GBA 2003 Role-Playing                       Enix Corporation     0.00
## 3069     GBA 2004    Adventure                  Majesco Entertainment     0.47
## 3070     PS3 2013     Platform                                Ubisoft     0.14
## 3071      PC 2013         Misc                                Ubisoft     0.35
## 3072     PS2 2004     Fighting                                 Capcom     0.32
## 3073      PS 1998 Role-Playing            Sony Computer Entertainment     0.37
## 3074      PC 2010     Strategy                                   Sega     0.02
## 3075     PS3 2010       Action                         Ubisoft Annecy     0.06
## 3076      DS 2007     Platform                               Nintendo     0.28
## 3077     PSP 2010       Action             Disney Interactive Studios     0.27
## 3078      GC 2003   Simulation                        Electronic Arts     0.43
## 3079     PS3 2008       Sports                        Electronic Arts     0.34
## 3080    2600 1982       Action                             Activision     0.62
## 3081     PSV 2013       Action Warner Bros. Interactive Entertainment     0.15
## 3082     Wii 2008     Strategy                               Nintendo     0.29
## 3083     GBA 2002       Action                         TDK Mediactive     0.47
## 3084     PS2 2004 Role-Playing           Konami Digital Entertainment     0.17
## 3085     PSP 2010       Action                     Namco Bandai Games     0.03
## 3086     GBA 2004     Platform             Disney Interactive Studios     0.47
## 3087      PS 1998         Misc            Sony Computer Entertainment     0.12
## 3088      XB 2005      Shooter                                Ubisoft     0.49
## 3089     PSP 2009       Sports                        Electronic Arts     0.50
## 3090     PSP 2007       Action                             Activision     0.23
## 3091      DS 2007         Misc                     Namco Bandai Games     0.00
## 3092     PS4 2015       Racing                            Codemasters     0.09
## 3093    X360 2008         Misc                 Microsoft Game Studios     0.33
## 3094      PS 1998       Sports                              ASC Games     0.36
## 3095    WiiU 2014       Action             Disney Interactive Studios     0.38
## 3096     PS3 2012       Sports                        Electronic Arts     0.33
## 3097     PS2 2008       Action                             Activision     0.24
## 3098     PS3 2008     Strategy                                Ubisoft     0.32
## 3099    XOne 2014       Action                     Bethesda Softworks     0.35
## 3100    X360 2008       Sports                        Electronic Arts     0.35
## 3101     PS2 2005 Role-Playing                            Square Enix     0.18
## 3102      GC 2003       Racing                               Nintendo     0.41
## 3103     PS2 2005     Platform             Disney Interactive Studios     0.32
## 3104     PSP 2008     Platform                                    THQ     0.29
## 3105     GBA 2004     Platform                               Nintendo     0.25
## 3106      DS 2009       Action                                    THQ     0.31
## 3107     PS2 2002       Racing                                Ubisoft     0.32
## 3108     Wii 2009       Action                             Rondomedia     0.56
## 3109     GBA 2005         Misc                                    THQ     0.47
## 3110      PS 1999 Role-Playing                       Enix Corporation     0.02
## 3111      DS 2009       Puzzle                                    THQ     0.45
## 3112     PS4 2014       Sports    Sony Computer Entertainment America     0.58
## 3113    X360 2009       Sports                        Electronic Arts     0.39
## 3114     GBA 2003     Strategy                               Nintendo     0.47
## 3115      DS 2008 Role-Playing                               Nintendo     0.31
## 3116      PS 1998      Shooter                                  Atari     0.36
## 3117     PS2 2003 Role-Playing                            Square Enix     0.19
## 3118     PS2 2007         Misc            Sony Computer Entertainment     0.00
## 3119    2600 1987       Action                             Activision     0.60
## 3120     PS2 2005 Role-Playing              Sony Online Entertainment     0.32
## 3121     PS2 2005       Action                        Electronic Arts     0.54
## 3122     PS2 2007         Misc            Sony Computer Entertainment     0.00
## 3123      PS 2000    Adventure                  Acclaim Entertainment     0.36
## 3124     PSP 2007       Racing                                    THQ     0.35
## 3125     Wii 2010         Misc             Disney Interactive Studios     0.50
## 3126     PS3 2012     Fighting                             Tecmo Koei     0.23
## 3127     PSP 2007 Role-Playing                            Square Enix     0.20
## 3128     PS2 2002     Strategy                              Banpresto     0.00
## 3129     PS3 2014 Role-Playing                        Electronic Arts     0.26
## 3130     Wii 2011         Misc                                Ubisoft     0.39
## 3131      DS 2008         Misc                     Namco Bandai Games     0.00
## 3132     PS3 2010       Action                                 Capcom     0.17
## 3133      PC 2013      Shooter                        Electronic Arts     0.17
## 3134      DS 2007   Simulation                                    THQ     0.60
## 3135     PS2 2009       Action                        Electronic Arts     0.13
## 3136     GBA 2004     Platform                          Vivendi Games     0.46
## 3137    XOne 2014 Role-Playing                             Activision     0.35
## 3138     PS2 2004     Platform                          Vivendi Games     0.32
## 3139     PSP 2007       Action                          Vivendi Games     0.25
## 3140     PS3 2013      Shooter                                   Sega     0.20
## 3141     PS2 2004     Platform                          Vivendi Games     0.32
## 3142     Wii 2009       Racing                                Unknown     0.00
## 3143      XB 2003      Shooter                   Take-Two Interactive     0.47
## 3144    X360 2010     Fighting                     Namco Bandai Games     0.49
## 3145     PS2 2004      Shooter                        Electronic Arts     0.54
## 3146    XOne 2016       Sports                   Take-Two Interactive     0.54
## 3147     PS3 2008      Shooter                                 Capcom     0.31
## 3148    X360 2012     Strategy                   Take-Two Interactive     0.36
## 3149     3DS 2011     Platform                                Ubisoft     0.23
## 3150     PS4 2016       Action Warner Bros. Interactive Entertainment     0.25
## 3151      XB 2004      Shooter                        Electronic Arts     0.43
## 3152     PS2 2003     Platform                             Activision     0.31
## 3153    X360 2007       Racing                                    THQ     0.25
## 3154      XB 2005       Sports                        Electronic Arts     0.57
## 3155      PC 2011       Action                        Electronic Arts     0.23
## 3156    X360 2006       Action                              LucasArts     0.55
## 3157     N64 1999      Shooter                Red Storm Entertainment     0.48
## 3158     N64 1999     Platform           Konami Digital Entertainment     0.44
## 3159     N64 1999     Platform                                Ubisoft     0.40
## 3160     GBA 2004         Misc                  Majesco Entertainment     0.46
## 3161    X360 2009       Action                        Electronic Arts     0.37
## 3162      XB 2002      Shooter                      Eidos Interactive     0.29
## 3163     PS2 2006       Action                                 Capcom     0.15
## 3164     PS3 2010 Role-Playing                            Square Enix     0.17
## 3165      DS 2009     Platform             Disney Interactive Studios     0.41
## 3166     PS3 2007       Racing                                   Sega     0.07
## 3167     GBA 2004         Misc                  Majesco Entertainment     0.46
## 3168     PSV 2012       Action            Sony Computer Entertainment     0.26
## 3169     GBA 2002         Misc           Konami Digital Entertainment     0.46
## 3170     PS3 2010 Role-Playing            Sony Computer Entertainment     0.23
## 3171     PS3 2009      Shooter                             Activision     0.25
## 3172     PS2 2005         Misc            Sony Computer Entertainment     0.31
## 3173     PS4 2015       Action Warner Bros. Interactive Entertainment     0.22
## 3174     PS3 2010         Misc            Sony Computer Entertainment     0.07
## 3175     N64 1998       Racing                               Nintendo     0.59
## 3176     N64 2000       Sports                        Electronic Arts     0.60
## 3177     PS3 2007       Sports                        Electronic Arts     0.56
## 3178    X360 2013      Shooter                             Activision     0.46
## 3179     Wii 2007       Racing                               Nintendo     0.20
## 3180     Wii 2008       Action                                 Capcom     0.45
## 3181     PS2 2004     Platform                             Activision     0.31
## 3182     PS3 2014       Action Warner Bros. Interactive Entertainment     0.20
## 3183     Wii 2009         Misc                                Ubisoft     0.59
## 3184     Wii 2010      Shooter                                Ubisoft     0.36
## 3185     PS2 2005 Role-Playing                             Activision     0.53
## 3186      PS 1997       Action            Sony Computer Entertainment     0.35
## 3187     PS2 2009         Misc            Sony Computer Entertainment     0.08
## 3188    X360 2014         Misc                                Ubisoft     0.41
## 3189     PS3 2013       Racing                            Codemasters     0.01
## 3190    X360 2007       Racing                                    THQ     0.22
## 3191      XB 2001       Sports                             Activision     0.41
## 3192      PS 1999     Strategy                        Electronic Arts     0.35
## 3193      XB 2002       Sports                        Electronic Arts     0.20
## 3194    X360 2009       Action                                  Atari     0.43
## 3195     PS2 2006       Sports                                Unknown     0.01
## 3196     PS2 2005       Racing                        Electronic Arts     0.53
## 3197     PS3 2006       Sports                             Activision     0.30
## 3198     GBA 2004   Simulation                                Ubisoft     0.45
## 3199     PS3 2011       Action             Disney Interactive Studios     0.30
## 3200     PS3 2009         Misc                             Activision     0.28
## 3201     PSP 2008       Action                                   Sega     0.46
## 3202     3DS 2012         Misc                     Namco Bandai Games     0.00
## 3203      DS 2009       Action                        Electronic Arts     0.21
## 3204     N64 1998     Platform                             Activision     0.49
## 3205    SNES 1991     Platform           Konami Digital Entertainment     0.32
## 3206     Wii 2010         Misc                             Activision     0.49
## 3207     3DS 2012       Action                             Activision     0.38
## 3208    X360 2008       Action                                   Sega     0.38
## 3209     Wii 2007       Sports                             Activision     0.58
## 3210     PS2 2003     Fighting                     Namco Bandai Games     0.00
## 3211     PS3 2011         Misc                                Ubisoft     0.33
## 3212      DS 2010      Shooter                             Activision     0.54
## 3213     PS4 2015       Action            Sony Computer Entertainment     0.23
## 3214     PS2 2002     Platform            Sony Computer Entertainment     0.12
## 3215     Wii 2009      Shooter                               Nintendo     0.43
## 3216    2600 1982       Action                        Universal Gamex     0.58
## 3217    X360 2009      Shooter                             Activision     0.34
## 3218      DS 2007         Misc                                Unknown     0.00
## 3219      PC 2011   Simulation                        Electronic Arts     0.40
## 3220    XOne 2014       Racing                                Ubisoft     0.24
## 3221      DS 2009     Strategy                                Ubisoft     0.31
## 3222     3DS 2016 Role-Playing                            Square Enix     0.00
## 3223    X360 2012       Racing                                   Sega     0.20
## 3224     PS2 2007 Role-Playing                             Tecmo Koei     0.22
## 3225     PS2 2001       Sports                        Electronic Arts     0.31
## 3226     PSP 2009 Role-Playing                             Ghostlight     0.18
## 3227      PS 1997 Role-Playing                                 Square     0.00
## 3228    X360 2011       Sports                        Electronic Arts     0.40
## 3229     PS2 2006       Action                                 Capcom     0.11
## 3230      PS 2000       Sports                        Electronic Arts     0.35
## 3231     Wii 2009   Simulation                                    THQ     0.41
## 3232    XOne 2015       Action Warner Bros. Interactive Entertainment     0.35
## 3233     PS3 2009      Shooter                     Bethesda Softworks     0.22
## 3234      DS 2009       Racing                        Electronic Arts     0.26
## 3235      PS 2000     Platform                             Activision     0.35
## 3236      GC 2002         Misc                     Namco Bandai Games     0.48
## 3237    SNES 1993     Strategy                             Tecmo Koei     0.30
## 3238     SAT 1995      Shooter                                   Sega     0.00
## 3239     PS2 2004 Role-Playing                                Unknown     0.01
## 3240      XB 2005       Sports                             Activision     0.40
## 3241      PS 1996     Fighting                  Acclaim Entertainment     0.35
## 3242    X360 2010       Action                                Ubisoft     0.30
## 3243     PS3 2010      Shooter                                   Sega     0.21
## 3244     PS2 2002 Role-Playing                                Ubisoft     0.16
## 3245      PS 1997       Sports            Sony Computer Entertainment     0.35
## 3246     PS3 2009 Role-Playing                            Deep Silver     0.22
## 3247      GC 2006       Sports                        Electronic Arts     0.48
## 3248      PC 2014      Shooter                                Ubisoft     0.15
## 3249    2600 1982      Shooter                                  Atari     0.58
## 3250      XB 2003       Sports                        Electronic Arts     0.47
## 3251     3DS 2011       Action             Disney Interactive Studios     0.29
## 3252     PS3 2014       Sports           Konami Digital Entertainment     0.10
## 3253    XOne 2015      Shooter                   Take-Two Interactive     0.36
## 3254     PS2 2004     Platform                                    THQ     0.30
## 3255     PS3 2013       Action                            Deep Silver     0.26
## 3256     PS3 2011       Action                         Ubisoft Annecy     0.00
## 3257      DS 2008    Adventure             Disney Interactive Studios     0.35
## 3258      GC 2003       Action                                 Capcom     0.38
## 3259     GBA 2004   Simulation                        Electronic Arts     0.37
## 3260     N64 1999       Racing                        Electronic Arts     0.40
## 3261     PSV 2012       Sports                        Electronic Arts     0.17
## 3262      PS 2000     Platform                      Eidos Interactive     0.34
## 3263      DS 2010         Misc                             Activision     0.58
## 3264     PS2 2004       Sports                                Play It     0.30
## 3265     Wii 2007       Action                                    THQ     0.57
## 3266     PS3 2014       Action           Konami Digital Entertainment     0.14
## 3267    2600 1982       Action                     Wizard Video Games     0.58
## 3268     PS3 2011     Fighting                     Namco Bandai Games     0.27
## 3269     PSP 2009     Fighting                                    THQ     0.25
## 3270      PS 1999       Sports                    ASCII Entertainment     0.21
## 3271     PS2 2004       Racing                      Eidos Interactive     0.30
## 3272      GB 1995       Puzzle                               Nintendo     0.00
## 3273      GC 2003         Misc                     Namco Bandai Games     0.48
## 3274     PS4 2014         Misc                                Ubisoft     0.34
## 3275     SAT 1996     Fighting                                   Sega     0.00
## 3276    SNES 1996 Role-Playing                             SquareSoft     0.00
## 3277    X360 2008     Platform                                    THQ     0.29
## 3278      PC 1998       Action                      Eidos Interactive     0.59
## 3279     3DS 2012    Adventure                     Namco Bandai Games     0.00
## 3280      DS 2011 Role-Playing                            Square Enix     0.00
## 3281     N64 1998       Sports                  Acclaim Entertainment     0.59
## 3282      PS 2001     Strategy                              Banpresto     0.00
## 3283     PS3 2006       Racing            Sony Computer Entertainment     0.00
## 3284     Wii 2009 Role-Playing                      Rising Star Games     0.33
## 3285     PS3 2008       Sports                   Take-Two Interactive     0.56
## 3286     PS2 2008         Misc            Sony Computer Entertainment     0.00
## 3287     PS4 2015       Sports                        Electronic Arts     0.35
## 3288     PS4 2014      Shooter                        Electronic Arts     0.21
## 3289      XB 2002       Sports                 Microsoft Game Studios     0.46
## 3290     PS2 2006       Action                             Tecmo Koei     0.02
## 3291     PS3 2013       Action                             Tecmo Koei     0.12
## 3292     Wii 2010         Misc             Disney Interactive Studios     0.39
## 3293     GBA 2005         Misc                                    THQ     0.44
## 3294     PS2 2002      Shooter                         TDK Mediactive     0.30
## 3295     GBA 2004     Platform                           Gotham Games     0.44
## 3296     Wii 2010         Misc                   Take-Two Interactive     0.35
## 3297    X360 2009       Sports                             Activision     0.46
## 3298    WiiU 2013         Misc                                Ubisoft     0.33
## 3299     3DS 2011   Simulation                              505 Games     0.50
## 3300     GBA 2004         Misc                  Majesco Entertainment     0.44
## 3301     PS2 2003      Shooter                     Namco Bandai Games     0.30
## 3302     Wii 2010       Sports                             Activision     0.58
## 3303      DS 2007         Misc                               Nintendo     0.00
## 3304    X360 2010       Sports           Konami Digital Entertainment     0.09
## 3305     Wii 2008     Platform                               Nintendo     0.24
## 3306      PS 1998     Platform                        Electronic Arts     0.34
## 3307     PS3 2011      Shooter                                   Sega     0.09
## 3308      DS 2008   Simulation                        Electronic Arts     0.31
## 3309      XB 2005      Shooter                        Electronic Arts     0.37
## 3310      PS 1997      Shooter                         GT Interactive     0.34
## 3311     Wii 2010         Misc                     Namco Bandai Games     0.47
## 3312     PSP 2009     Platform            Sony Computer Entertainment     0.18
## 3313    X360 2008       Sports                     Bethesda Softworks     0.56
## 3314      DS 2007   Simulation                        Electronic Arts     0.33
## 3315    X360 2009       Sports                                  Spike     0.56
## 3316      DS 2008   Simulation                                Ubisoft     0.56
## 3317    X360 2010       Racing             Disney Interactive Studios     0.32
## 3318     GBA 2005 Role-Playing                               Nintendo     0.27
## 3319     GBA 2002       Sports                        Electronic Arts     0.44
## 3320      PS 1999       Action                      Eidos Interactive     0.34
## 3321     GBA 2005       Action                        Electronic Arts     0.44
## 3322     GBA 2004       Action                                  Atari     0.44
## 3323      GC 2001       Sports                        Electronic Arts     0.47
## 3324     Wii 2009         Misc                             Activision     0.33
## 3325     Wii 2008         Misc             Disney Interactive Studios     0.37
## 3326     GBA 2001       Action                             Activision     0.43
## 3327     N64 1999       Sports                        Electronic Arts     0.58
## 3328    X360 2007       Action                             Activision     0.51
## 3329     GBA 2002         Misc                               Nintendo     0.43
## 3330      DS 2008   Simulation                        Electronic Arts     0.34
## 3331     PS2 2003     Fighting                                  Atari     0.50
## 3332    X360 2010     Fighting                                Ubisoft     0.31
## 3333    X360 2009      Shooter                                Ubisoft     0.30
## 3334     Wii 2009     Strategy                               Nintendo     0.11
## 3335     GBA 2003       Sports                             Activision     0.43
## 3336     PSV 2011       Sports            Sony Computer Entertainment     0.19
## 3337     GBA 2004       Racing                  Majesco Entertainment     0.43
## 3338     PS2 2005     Platform                                   Sega     0.50
## 3339      GC 2001       Racing                               Nintendo     0.40
## 3340     PS2 2003     Fighting                      Eidos Interactive     0.30
## 3341      XB 2005     Fighting                        Electronic Arts     0.42
## 3342     PSP 2010 Role-Playing                                 Capcom     0.00
## 3343      DS 2007       Action                                   Sega     0.28
## 3344     PS2 2007       Sports                   Take-Two Interactive     0.50
## 3345     Wii 2011       Action             Disney Interactive Studios     0.36
## 3346    WiiU 2013       Action             Disney Interactive Studios     0.33
## 3347      DS 2007         Misc           Konami Digital Entertainment     0.00
## 3348      DS 2009         Misc                               Nintendo     0.18
## 3349     PS3 2009       Sports                             Activision     0.38
## 3350     3DS 2015       Action Warner Bros. Interactive Entertainment     0.31
## 3351     PS3 2011    Adventure                        Electronic Arts     0.22
## 3352     PS4 2014       Action Warner Bros. Interactive Entertainment     0.12
## 3353      PS 1995 Role-Playing           Konami Digital Entertainment     0.21
## 3354     PS2 2009     Platform            Sony Computer Entertainment     0.13
## 3355     PS2 2001       Racing                                Ubisoft     0.29
## 3356     PSP 2009       Action                                Ubisoft     0.22
## 3357     PS2 2006       Action                                    THQ     0.50
## 3358     SAT 1997       Puzzle                                Compile     0.00
## 3359     PS2 2001      Shooter                          Vivendi Games     0.29
## 3360    XOne 2014       Action                            Square Enix     0.34
## 3361     N64 2000       Racing                               Nintendo     0.37
## 3362     N64 1997       Sports           Konami Digital Entertainment     0.09
## 3363    WiiU 2013     Platform                             Activision     0.40
## 3364     PS2 2001       Racing                             Infogrames     0.29
## 3365     Wii 2008         Misc             Disney Interactive Studios     0.32
## 3366      PS 2002     Fighting                     Namco Bandai Games     0.00
## 3367      PS 1998   Simulation           Konami Digital Entertainment     0.00
## 3368    X360 2005       Racing                 Microsoft Game Studios     0.49
## 3369     PS3 2012     Strategy                   Take-Two Interactive     0.24
## 3370    X360 2010       Racing                             Activision     0.25
## 3371      PS 1998    Adventure                        Electronic Arts     0.33
## 3372     3DS 2012       Action Warner Bros. Interactive Entertainment     0.55
## 3373    SNES 1995     Strategy                             SquareSoft     0.00
## 3374     PS3 2010       Sports                        Electronic Arts     0.40
## 3375    X360 2012    Adventure                 Microsoft Game Studios     0.38
## 3376    X360 2008         Misc                        Electronic Arts     0.34
## 3377     PS4 2014       Action             Disney Interactive Studios     0.26
## 3378     PS2 2007       Sports                                  Spike     0.29
## 3379      DS 2004       Racing                                Ubisoft     0.31
## 3380     PS3 2010     Fighting            Sony Computer Entertainment     0.29
## 3381     PS2 2003     Strategy                              Banpresto     0.00
## 3382      DS 2005       Puzzle                               Nintendo     0.26
## 3383      PC 2008       Action                        Electronic Arts     0.00
## 3384     PS2 2004       Racing                                    THQ     0.29
## 3385     PSV 2012     Platform                                Ubisoft     0.13
## 3386    X360 2012       Sports                                   Sega     0.07
## 3387    X360 2008       Sports                                   Sega     0.15
## 3388     PS2 2005     Strategy                              Banpresto     0.00
## 3389     Wii 2010         Misc                                    THQ     0.56
## 3390      PS 1997       Sports           Konami Digital Entertainment     0.00
## 3391      PC 2011       Action                                Ubisoft     0.15
## 3392      PS 1998       Sports                        Electronic Arts     0.33
## 3393      PS 2001         Misc            Sony Computer Entertainment     0.33
## 3394      GC 2002      Shooter                        Electronic Arts     0.46
## 3395      DS 2009 Role-Playing                            Square Enix     0.23
## 3396     Wii 2008       Action                                   Sega     0.31
## 3397     PS3 2010      Shooter                            Square Enix     0.17
## 3398      PS 2000       Sports                           Midway Games     0.33
## 3399      PC 2011     Strategy                                   Sega     0.19
## 3400      PS 1998       Sports           Konami Digital Entertainment     0.00
## 3401     PS2 2008         Misc                              MTV Games     0.29
## 3402     PS3 2012       Action                                   Sega     0.00
## 3403     PSP 2009       Action                             Activision     0.21
## 3404    2600 1981       Puzzle                     Mattel Interactive     0.55
## 3405    X360 2008       Action                                Ubisoft     0.24
## 3406     PS2 2002       Sports                        Electronic Arts     0.21
## 3407      XB 2004       Sports                        Electronic Arts     0.44
## 3408      GC 2002     Platform                  Universal Interactive     0.46
## 3409    2600 1981       Action                                 Coleco     0.55
## 3410      DS 2007         Misc                              505 Games     0.54
## 3411     Wii 2008       Action                   Take-Two Interactive     0.53
## 3412     Wii 2007       Action                             Activision     0.52
## 3413     N64 1997       Racing                  Acclaim Entertainment     0.47
## 3414     N64 1999       Sports                           Midway Games     0.47
## 3415    X360 2013      Shooter                              505 Games     0.33
## 3416      XB 2003       Sports                 Microsoft Game Studios     0.36
## 3417     PS2 2004 Role-Playing                     Namco Bandai Games     0.00
## 3418    X360 2012     Fighting                     Namco Bandai Games     0.39
## 3419     PS3 2011       Sports                        Electronic Arts     0.36
## 3420     PS3 2015 Role-Playing                     Namco Bandai Games     0.05
## 3421     PS2 2010       Action           Konami Digital Entertainment     0.13
## 3422      XB 2005      Shooter                                 Capcom     0.01
## 3423     Wii 2008       Sports                        Electronic Arts     0.51
## 3424    X360 2010         Misc Warner Bros. Interactive Entertainment     0.36
## 3425      PS 1999       Action            Sony Computer Entertainment     0.33
## 3426    X360 2008       Action                                Ubisoft     0.18
## 3427     PS2 2004     Platform                                 Capcom     0.29
## 3428     PSP 2007 Role-Playing                            Square Enix     0.39
## 3429     PS4 2015 Role-Playing                     Namco Bandai Games     0.20
## 3430     PSP 2008       Action                             Koch Media     0.35
## 3431      PC 2011      Shooter                            Square Enix     0.25
## 3432     PS3 2010       Sports                              505 Games     0.28
## 3433     GBA 2003   Simulation                                Ubisoft     0.34
## 3434     PS2 2003       Sports                                  Atari     0.29
## 3435      DS 2009       Sports                        Electronic Arts     0.14
## 3436    SNES 1994       Sports                               Nintendo     0.00
## 3437     PS3 2012      Shooter                     Bethesda Softworks     0.26
## 3438     PS2 2003       Action                                 Capcom     0.22
## 3439     Wii 2008       Action                   Take-Two Interactive     0.15
## 3440     Wii 2007   Simulation                                Ubisoft     0.53
## 3441     PS2 2008       Action                                    THQ     0.29
## 3442     Wii 2009      Shooter                                   Sega     0.29
## 3443    WiiU 2015         Misc                                Ubisoft     0.28
## 3444      PS 1995   Simulation           Konami Digital Entertainment     0.00
## 3445      PS 1997 Role-Playing                        Electronic Arts     0.29
## 3446     Wii 2010       Sports                             Activision     0.53
## 3447     PS4 2014       Sports                        Electronic Arts     0.30
## 3448    2600 1982       Puzzle                           Parker Bros.     0.55
## 3449     PS2 2005 Role-Playing                            Square Enix     0.06
## 3450     PS2 2004 Role-Playing                        Electronic Arts     0.49
## 3451      DS 2008   Simulation                      Rising Star Games     0.35
## 3452     Wii 2009         Misc                        Electronic Arts     0.21
## 3453     Wii 2008     Platform                          Vivendi Games     0.35
## 3454      PC 2009   Simulation                        Electronic Arts     0.02
## 3455    XOne 2014       Sports                 Microsoft Game Studios     0.30
## 3456     Wii 2011     Platform                                Ubisoft     0.23
## 3457    XOne 2015       Sports                   Take-Two Interactive     0.31
## 3458      PC 2014      Shooter                        Electronic Arts     0.21
## 3459     PS3 2008       Sports                        Electronic Arts     0.54
## 3460    X360 2009       Action                                Ubisoft     0.31
## 3461      PS 2000       Sports                                    3DO     0.32
## 3462     3DS 2013     Platform             Disney Interactive Studios     0.27
## 3463     PS2 2003       Action                                  Atari     0.28
## 3464    X360 2010      Shooter                             Activision     0.37
## 3465      DS 2010   Simulation                                Natsume     0.27
## 3466     N64 1997       Sports                        Electronic Arts     0.15
## 3467     N64 1998       Sports                        Electronic Arts     0.14
## 3468     N64 1998       Sports           Konami Digital Entertainment     0.06
## 3469    X360 2006       Sports                                   Sega     0.00
## 3470     PS2 2000      Shooter                             Infogrames     0.28
## 3471      PS 2000 Role-Playing                     Namco Bandai Games     0.23
## 3472      PS 1998 Role-Playing                     Namco Bandai Games     0.00
## 3473      XB 2005       Action                                Ubisoft     0.33
## 3474     PS2 2004 Role-Playing            Sony Computer Entertainment     0.28
## 3475      PS 1998     Platform          BMG Interactive Entertainment     0.32
## 3476     GBA 2004    Adventure                             Activision     0.42
## 3477      DS 2007       Action                                 Capcom     0.25
## 3478     PS3 2013     Fighting                     Namco Bandai Games     0.05
## 3479      DS 2009   Simulation                                Ubisoft     0.53
## 3480     PS2 2002      Shooter           Konami Digital Entertainment     0.28
## 3481      PS 1998       Racing                                    THQ     0.32
## 3482    SNES 1992 Role-Playing                     Namco Bandai Games     0.00
## 3483    X360 2006       Sports                   Take-Two Interactive     0.53
## 3484     PS3 2015       Sports                   Take-Two Interactive     0.21
## 3485      DS 2006    Adventure                                 Capcom     0.24
## 3486    SNES 1996     Strategy                               Nintendo     0.00
## 3487     PS3 2010         Misc                              MTV Games     0.43
## 3488     PS3 2011 Role-Playing                   Nippon Ichi Software     0.27
## 3489     PS3 2009     Fighting                                  PQube     0.36
## 3490      PS 2000       Action                             Activision     0.32
## 3491      GC 2002       Sports                             Activision     0.45
## 3492     PS3 2011       Sports            Sony Computer Entertainment     0.54
## 3493     PS2 2006       Action                     Namco Bandai Games     0.28
## 3494     PS2 2005       Sports                        Electronic Arts     0.48
## 3495     PS3 2009       Sports                        Electronic Arts     0.38
## 3496      DS 2010    Adventure                               Nintendo     0.10
## 3497     Wii 2009       Sports                             Activision     0.52
## 3498      PS 1999 Role-Playing                             SquareSoft     0.32
## 3499     Wii 2010       Puzzle                               Nintendo     0.34
## 3500     N64 1999       Sports                           Midway Games     0.55
## 3501     PS3 2008     Platform            Sony Computer Entertainment     0.00
## 3502     Wii 2010       Racing               System 3 Arcade Software     0.00
## 3503     PS2 2009       Sports                        Electronic Arts     0.28
## 3504     PS3 2008       Action                   Take-Two Interactive     0.08
## 3505     3DS 2013 Role-Playing                                  Atlus     0.28
## 3506      PS 1994   Simulation                        Electronic Arts     0.24
## 3507    X360 2007      Shooter                           Midway Games     0.29
## 3508    X360 2007     Platform                             Activision     0.49
## 3509     PSP 2005       Racing                        SouthPeak Games     0.53
## 3510      XB 2005      Shooter                                Ubisoft     0.32
## 3511     PS2 2008       Puzzle                        Electronic Arts     0.28
## 3512     GBA 2002       Sports                             Activision     0.41
## 3513     Wii 2009       Action                                    THQ     0.23
## 3514     PS2 2005 Role-Playing                     Namco Bandai Games     0.00
## 3515    X360 2011       Action             Disney Interactive Studios     0.37
## 3516    X360 2008       Action                                   Sega     0.27
## 3517      PS 2000     Strategy                     Namco Bandai Games     0.00
## 3518     GBA 2004       Action                          Vivendi Games     0.41
## 3519     PS3 2010       Action                     Namco Bandai Games     0.24
## 3520      DS 2008       Action                                    THQ     0.53
## 3521      PS 1995 Role-Playing            Sony Computer Entertainment     0.11
## 3522     PS2 2008       Action                             Koch Media     0.22
## 3523     PSP 2007       Action                      Eidos Interactive     0.21
## 3524    X360 2011      Shooter                                    THQ     0.25
## 3525      GC 2005       Sports                        Electronic Arts     0.44
## 3526     Wii 2007       Action                      Rising Star Games     0.30
## 3527      PC 2010       Action                                Ubisoft     0.01
## 3528      DS 2008   Simulation                                Ubisoft     0.52
## 3529     PS2 2004     Fighting                     Namco Bandai Games     0.47
## 3530    X360 2013      Shooter                           Trion Worlds     0.38
## 3531      DS 2006   Simulation                                Ubisoft     0.51
## 3532     PS3 2009 Role-Playing                        SouthPeak Games     0.36
## 3533     NES 1986       Action                               Nintendo     0.00
## 3534     N64 1997       Sports                         GT Interactive     0.48
## 3535     Wii 2009       Sports                  Majesco Entertainment     0.52
## 3536     PSP 2011       Action           Konami Digital Entertainment     0.10
## 3537     Wii 2010         Misc                              505 Games     0.27
## 3538      XB 2001      Shooter                 Microsoft Game Studios     0.43
## 3539     PS2 2005       Action                             Tecmo Koei     0.11
## 3540     3DS 2011       Action                             Activision     0.32
## 3541     Wii 2008     Platform                   Take-Two Interactive     0.50
## 3542     PS2 2002         Misc            Sony Computer Entertainment     0.28
## 3543     PS2 2006       Sports                        Electronic Arts     0.47
## 3544      XB 2002       Racing                             Activision     0.42
## 3545    SNES 1992       Puzzle                            Hudson Soft     0.00
## 3546      XB 2003     Platform                                    THQ     0.45
## 3547     PS3 2012      Shooter                   Take-Two Interactive     0.19
## 3548     PS2 2002     Strategy                     Namco Bandai Games     0.00
## 3549      DS 2007    Adventure                                    THQ     0.29
## 3550      XB 2002       Racing                 Microsoft Game Studios     0.39
## 3551     PS2 2004       Action                                 Capcom     0.19
## 3552      PS 2000       Action                                    THQ     0.31
## 3553     PS2 2003      Shooter                                Ubisoft     0.28
## 3554     PS3 2013       Sports                        Electronic Arts     0.28
## 3555    X360 2009         Misc Warner Bros. Interactive Entertainment     0.40
## 3556     Wii 2008    Adventure             Disney Interactive Studios     0.19
## 3557    X360 2008       Action                   Take-Two Interactive     0.09
## 3558     PS3 2009       Action                                Ubisoft     0.21
## 3559    X360 2015       Action Warner Bros. Interactive Entertainment     0.24
## 3560      PS 2000 Role-Playing                                 Capcom     0.11
## 3561      GC 2003       Action                             Activision     0.44
## 3562     PS2 2007 Role-Playing                            Square Enix     0.23
## 3563      DS 2007     Platform                               Nintendo     0.26
## 3564     GBA 2003       Action                  Universal Interactive     0.40
## 3565     GBA 2004       Puzzle                 Zoo Digital Publishing     0.40
## 3566     PS2 2006       Sports                        Electronic Arts     0.28
## 3567     GBA 2003       Action                        Electronic Arts     0.40
## 3568     PS2 2001       Sports                           Midway Games     0.28
## 3569     GBA 2004       Puzzle                               Nintendo     0.31
## 3570      XB 2003   Simulation                        Electronic Arts     0.40
## 3571     PS2 2007       Sports                        Electronic Arts     0.28
## 3572      PS 2001     Platform            Sony Computer Entertainment     0.31
## 3573     PS2 2006         Misc                        Electronic Arts     0.28
## 3574     PSP 2006       Sports                             Activision     0.41
## 3575     GBA 2004         Misc           Konami Digital Entertainment     0.40
## 3576     PS2 2004       Sports                             Activision     0.28
## 3577      DS 2007    Adventure                               Nintendo     0.27
## 3578     PS2 2001     Fighting                        Electronic Arts     0.28
## 3579      PS 1999       Action                                    3DO     0.31
## 3580      DS 2011       Action             Disney Interactive Studios     0.32
## 3581     PS2 2007   Simulation                                Ubisoft     0.28
## 3582      XB 2005      Shooter                        Electronic Arts     0.39
## 3583    X360 2009      Shooter                             Activision     0.28
## 3584     PS2 2001       Sports                  Acclaim Entertainment     0.27
## 3585     GBA 2002       Sports                             Infogrames     0.40
## 3586      GC 2005       Racing                        Electronic Arts     0.43
## 3587      PS 2000       Racing                        Electronic Arts     0.31
## 3588     Wii 2010       Sports                             Activision     0.41
## 3589    X360 2007       Sports                             Activision     0.49
## 3590      XB 2003     Fighting                                    THQ     0.43
## 3591     N64 1999       Action                     Virgin Interactive     0.39
## 3592    SNES 1993     Platform                                 Laguna     0.09
## 3593     PS2 2007       Action                   Take-Two Interactive     0.27
## 3594     3DS 2015 Role-Playing                               Nintendo     0.26
## 3595     PS2 2003 Role-Playing                            Square Enix     0.15
## 3596     Wii 2011         Misc                                    THQ     0.44
## 3597     PSP 2011 Role-Playing                            Square Enix     0.13
## 3598    X360 2008      Shooter                                    THQ     0.34
## 3599    X360 2009         Misc                 Microsoft Game Studios     0.15
## 3600      GB 2001 Role-Playing                               Nintendo     0.00
## 3601     PS2 2005       Action                        Electronic Arts     0.27
## 3602      DS 2008   Simulation                                    THQ     0.27
## 3603     PS2 2003         Misc                          Vivendi Games     0.27
## 3604     GBA 2002         Misc                  Universal Interactive     0.40
## 3605     GBA 2003     Strategy           Konami Digital Entertainment     0.40
## 3606      XB 2002     Platform                 Microsoft Game Studios     0.39
## 3607     Wii 2008       Action                             Activision     0.32
## 3608     PSP 2005       Puzzle                 Ignition Entertainment     0.17
## 3609     PS2 2003       Sports                                   Sega     0.27
## 3610    SNES 1994     Fighting                                 Takara     0.00
## 3611      DS 2006   Simulation                                Ubisoft     0.49
## 3612      XB 2005       Sports                   Take-Two Interactive     0.52
## 3613      DS 2008         Misc                               Nintendo     0.00
## 3614    XOne 2014       Sports                   Take-Two Interactive     0.28
## 3615      DS 2008   Simulation                                Ubisoft     0.48
## 3616     PSV 2013 Role-Playing            Sony Computer Entertainment     0.18
## 3617      DS 2009       Action             Disney Interactive Studios     0.27
## 3618     Wii 2010       Sports                        Electronic Arts     0.24
## 3619     PS2 2001      Shooter                            Codemasters     0.27
## 3620      DS 2006 Role-Playing                      Rising Star Games     0.37
## 3621     Wii 2010       Racing                             Activision     0.50
## 3622     Wii 2006       Sports                             Activision     0.51
## 3623     PS2 2001       Racing                                    THQ     0.27
## 3624      DS 2007   Simulation                                    THQ     0.18
## 3625      XB 2006       Sports                        Electronic Arts     0.42
## 3626     PS3 2011       Action            Sony Computer Entertainment     0.39
## 3627    X360 2011       Racing                                    THQ     0.37
## 3628      PS 1998 Role-Playing                        Kadokawa Shoten     0.27
## 3629     PS3 2015     Fighting                     Namco Bandai Games     0.15
## 3630      PS 1999       Sports                           Midway Games     0.31
## 3631      DS 2010   Simulation                             Activision     0.41
## 3632    X360 2014 Role-Playing                        Electronic Arts     0.35
## 3633     PS2 2001       Action                      Eidos Interactive     0.27
## 3634     PS2 2005       Action           Konami Digital Entertainment     0.34
## 3635     PS3 2013     Platform     Sony Computer Entertainment Europe     0.35
## 3636      XB 2006       Action                        Electronic Arts     0.42
## 3637     SAT 1994       Racing                                   Sega     0.00
## 3638     Wii 2010       Action                        Electronic Arts     0.22
## 3639     PS3 2012       Sports                        Electronic Arts     0.24
## 3640      XB 2002     Fighting                                    THQ     0.40
## 3641      PS 1996 Role-Playing                              Banpresto     0.00
## 3642      DS 2005     Fighting                               Nintendo     0.00
## 3643     PS3 2009     Fighting                                    THQ     0.30
## 3644    2600 1982       Sports                             Activision     0.52
## 3645      PS 2001      Shooter                            D3Publisher     0.31
## 3646      DS 2009         Misc                              Destineer     0.52
## 3647      PS 1999       Action                      Eidos Interactive     0.31
## 3648     SAT 1996    Adventure                                   Sega     0.00
## 3649     3DS 2016       Action                                Level 5     0.00
## 3650     PS2 2001       Action            Sony Computer Entertainment     0.21
## 3651     PS2 2001    Adventure                                Ubisoft     0.27
## 3652     PSV 2012      Shooter            Sony Computer Entertainment     0.29
## 3653     Wii 2010     Fighting                                 Capcom     0.32
## 3654    X360 2007       Action                                Ubisoft     0.47
## 3655     PS3 2007      Shooter                          Vivendi Games     0.18
## 3656     PSP 2008     Platform            Sony Computer Entertainment     0.33
## 3657      PC 2014       Action                                Ubisoft     0.17
## 3658     PS2 2004       Sports                             Enterbrain     0.00
## 3659     PS3 2007       Sports                   Take-Two Interactive     0.50
## 3660      DS 2008       Sports                             Activision     0.51
## 3661      DS 2008       Puzzle                            Deep Silver     0.51
## 3662      XB 2002       Sports                             Activision     0.34
## 3663     GBA 2002     Platform                                 Capcom     0.22
## 3664      PS 2000     Fighting                                    3DO     0.31
## 3665     PS4 2014       Action                             Activision     0.20
## 3666      PS 1996      Shooter                              LucasArts     0.31
## 3667      PS 1999     Strategy                     Namco Bandai Games     0.00
## 3668     SAT 1997     Strategy                              Banpresto     0.00
## 3669      XB 2004     Platform                             Activision     0.40
## 3670     PS2 2002       Sports                                   Sega     0.00
## 3671     PS3 2010      Shooter                     Namco Bandai Games     0.18
## 3672     GBA 2001       Action                                    THQ     0.39
## 3673     SAT 1998     Strategy                              Banpresto     0.00
## 3674    X360 2010       Action                     Namco Bandai Games     0.30
## 3675     3DS 2012 Role-Playing                            Xseed Games     0.31
## 3676     Wii 2008       Sports                                Ubisoft     0.49
## 3677     GBA 2003     Platform                                    THQ     0.39
## 3678     PS3 2010       Action                             Tecmo Koei     0.11
## 3679      PS 1995     Fighting            Sony Computer Entertainment     0.29
## 3680      XB 2002      Shooter                  Acclaim Entertainment     0.39
## 3681     PS2 2005       Racing            Sony Computer Entertainment     0.45
## 3682    X360 2010      Shooter                                    THQ     0.22
## 3683     Wii 2008         Misc                                    THQ     0.51
## 3684     PS2 2003         Misc                            Codemasters     0.27
## 3685      PS 1996         Misc                             Microprose     0.30
## 3686      XB 2004      Shooter                   Take-Two Interactive     0.40
## 3687     PSP 2006     Fighting                                  Atari     0.26
## 3688     PS3 2014       Action Warner Bros. Interactive Entertainment     0.12
## 3689     PS2 2008       Action                                   Sega     0.36
## 3690     PS2 2008         Misc            Sony Computer Entertainment     0.00
## 3691    X360 2007       Sports                        Electronic Arts     0.49
## 3692     PS3 2009       Sports                        Electronic Arts     0.46
## 3693      XB 2004     Platform                                    THQ     0.40
## 3694      XB 2006       Sports                        Electronic Arts     0.16
## 3695     PS2 2000       Sports                             SquareSoft     0.00
## 3696      GB 1999 Role-Playing                              Imagineer     0.00
## 3697     Wii 2006       Racing                               Nintendo     0.40
## 3698    X360 2009 Role-Playing                            Deep Silver     0.29
## 3699     Wii 2008       Racing               System 3 Arcade Software     0.07
## 3700      XB 2003   Simulation           Konami Digital Entertainment     0.42
## 3701     PSP 2010       Racing            Sony Computer Entertainment     0.11
## 3702     PS2 2005       Racing                          Vivendi Games     0.27
## 3703    X360 2011 Role-Playing                                Unknown     0.40
## 3704     PS3 2012       Racing                                   Sega     0.08
## 3705     PS3 2011         Misc                                Ubisoft     0.25
## 3706     PS2 2003     Strategy                            Square Enix     0.14
## 3707     GBA 2003     Platform                                    THQ     0.39
## 3708     PS3 2015       Action Warner Bros. Interactive Entertainment     0.15
## 3709      DS 2008 Role-Playing                               Nintendo     0.00
## 3710      DS 2010 Role-Playing                                Level 5     0.00
## 3711    XOne 2015    Adventure                                 Mojang     0.29
## 3712     PS4 2015       Action                                 Capcom     0.13
## 3713     Wii 2007       Action                   Take-Two Interactive     0.25
## 3714     PS2 2004       Racing                     Namco Bandai Games     0.26
## 3715      DS 2010       Puzzle                            D3Publisher     0.42
## 3716      DS 2007       Sports                                Unknown     0.01
## 3717    2600 1982       Action                           CPG Products     0.50
## 3718     N64 1999       Action                           Midway Games     0.43
## 3719     N64 1998       Sports                        Electronic Arts     0.11
## 3720     PS3 2011     Fighting                     Namco Bandai Games     0.00
## 3721    X360 2011     Fighting                     Namco Bandai Games     0.39
## 3722     PS3 2013 Role-Playing                     Namco Bandai Games     0.21
## 3723      PS 1998         Misc            Sony Computer Entertainment     0.09
## 3724      GC 2005       Action                               Nintendo     0.29
## 3725     PS2 2002 Role-Playing                       Enix Corporation     0.00
## 3726      DS 2008         Misc                                Ubisoft     0.24
## 3727      PS 1999         Misc                             Aruze Corp     0.00
## 3728    X360 2013       Sports                        Electronic Arts     0.40
## 3729     PSP 2010 Role-Playing                                   Sega     0.12
## 3730    X360 2014       Action Warner Bros. Interactive Entertainment     0.28
## 3731     Wii 2012       Sports                        Electronic Arts     0.51
## 3732      DS 2008 Role-Playing                      Rising Star Games     0.33
## 3733     PS3 2009      Shooter Warner Bros. Interactive Entertainment     0.13
## 3734     PS3 2011       Racing             Disney Interactive Studios     0.22
## 3735     GBA 2004         Misc                                    THQ     0.39
## 3736      DS 2010       Action                             Activision     0.32
## 3737      GC 2001       Sports                        Electronic Arts     0.42
## 3738      DS 2009     Fighting                                    THQ     0.35
## 3739      XB 2004      Shooter                             Activision     0.46
## 3740      DS 2008       Puzzle                     Empire Interactive     0.42
## 3741      DS 2006      Shooter                               Nintendo     0.39
## 3742     PS2 2004       Sports           Konami Digital Entertainment     0.00
## 3743     PS2 2003       Sports                                   Sega     0.26
## 3744     3DS 2011 Role-Playing                               Nintendo     0.00
## 3745     PS2 2006     Platform                             Activision     0.45
## 3746      PS 2001       Sports                             Activision     0.30
## 3747     PS4 2016       Action Warner Bros. Interactive Entertainment     0.14
## 3748    X360 2012       Action             Disney Interactive Studios     0.32
## 3749    2600 1982     Platform                           Parker Bros.     0.50
## 3750      DS 2008 Role-Playing           Konami Digital Entertainment     0.04
## 3751     PS2 2003     Platform                          Vivendi Games     0.26
## 3752     PS2 2003     Fighting            Sony Computer Entertainment     0.26
## 3753     Wii 2008 Role-Playing                     Namco Bandai Games     0.22
## 3754      GC 2003       Action                                Unknown     0.01
## 3755     PS2 2005       Action                          Vivendi Games     0.26
## 3756      PC 2015      Shooter                        Electronic Arts     0.13
## 3757     SAT 1998    Adventure                                   Sega     0.00
## 3758      DS 2009       Puzzle                             Rondomedia     0.21
## 3759     PS2 2001      Shooter                     Namco Bandai Games     0.26
## 3760      PS 1996    Adventure                    ASCII Entertainment     0.07
## 3761     PS2 2005       Sports                        Electronic Arts     0.45
## 3762     Wii 2008       Action                                    THQ     0.49
## 3763     PS2 2004         Misc            Sony Computer Entertainment     0.26
## 3764     PS3 2013 Role-Playing                   Nippon Ichi Software     0.25
## 3765     PSP 2010 Role-Playing                            Square Enix     0.15
## 3766     PS2 2003       Action                      Eidos Interactive     0.26
## 3767     GBA 2004         Misc                  Majesco Entertainment     0.38
## 3768     PS2 2004       Sports                        Electronic Arts     0.44
## 3769      PS 2000       Racing                        Electronic Arts     0.30
## 3770     PS2 2004      Shooter                                    SCi     0.26
## 3771      XB 2004         Misc                                   Sega     0.40
## 3772      DS 2006 Role-Playing                                   Sega     0.18
## 3773      DS 2009   Simulation                        Electronic Arts     0.26
## 3774     PS2 2003       Sports                           Midway Games     0.26
## 3775      PS 1999     Platform                      Eidos Interactive     0.30
## 3776     PS2 2008       Racing                        Electronic Arts     0.26
## 3777      XB 2004       Sports                           Midway Games     0.40
## 3778      PS 1996         Misc            Sony Computer Entertainment     0.30
## 3779    WiiU 2015       Action Warner Bros. Interactive Entertainment     0.28
## 3780    X360 2011         Misc Warner Bros. Interactive Entertainment     0.39
## 3781    SNES 1993       Sports                            Hudson Soft     0.00
## 3782    SNES 1994     Strategy                             Tecmo Koei     0.00
## 3783    SNES 1993       Sports                             Tecmo Koei     0.00
## 3784      XB 2005       Action                                Ubisoft     0.34
## 3785     PS3 2010         Misc            Sony Computer Entertainment     0.09
## 3786    WiiU 2015     Platform                               Nintendo     0.23
## 3787      XB 2005       Racing                        Electronic Arts     0.32
## 3788     PSP 2011       Sports                        Electronic Arts     0.12
## 3789      XB 2005      Shooter                        Electronic Arts     0.32
## 3790      PC 2011       Action Warner Bros. Interactive Entertainment     0.16
## 3791     PS2 2004     Platform                        Electronic Arts     0.26
## 3792      XB 2002       Action                  Universal Interactive     0.31
## 3793     PS2 2005       Sports            Sony Computer Entertainment     0.26
## 3794    WiiU 2012       Racing                                   Sega     0.20
## 3795     N64 2000       Action                             Activision     0.43
## 3796     Wii 2008   Simulation                              505 Games     0.48
## 3797     PSP 2007      Shooter                                Ubisoft     0.35
## 3798      GC 2004 Role-Playing                             Activision     0.41
## 3799     Wii 2010    Adventure             Disney Interactive Studios     0.27
## 3800      DS 2010   Simulation                        Electronic Arts     0.50
## 3801      PS 1997     Strategy                             SquareSoft     0.00
## 3802     PS3 2011      Shooter                        Electronic Arts     0.23
## 3803    X360 2009      Shooter Warner Bros. Interactive Entertainment     0.32
## 3804    X360 2010       Sports                        Electronic Arts     0.28
## 3805     PS3 2007       Racing                                    THQ     0.17
## 3806      DS 2007         Misc                              Mindscape     0.48
## 3807     PSP 2009       Racing                            Codemasters     0.08
## 3808     PS2 2001       Action                   Take-Two Interactive     0.26
## 3809      GC 2002       Action                        Electronic Arts     0.41
## 3810     PS2 2005       Racing                                    THQ     0.26
## 3811     PS2 2005       Action                   Take-Two Interactive     0.44
## 3812     PSV 2013       Action Warner Bros. Interactive Entertainment     0.20
## 3813    SNES 1994       Sports                     Namco Bandai Games     0.00
## 3814     Wii 2008       Action                   Take-Two Interactive     0.48
## 3815     PS3 2013      Shooter                             Activision     0.28
## 3816      DS 2009       Puzzle                               Nintendo     0.30
## 3817    XOne 2014         Misc                                Ubisoft     0.35
## 3818     PSP 2007       Action           Konami Digital Entertainment     0.22
## 3819     N64 1999       Racing                        Electronic Arts     0.49
## 3820     N64 1996       Sports                               Nintendo     0.49
## 3821      PS 2000         Misc                             Aruze Corp     0.00
## 3822     PS2 2003      Shooter                             Activision     0.26
## 3823     GBA 2005       Sports                               Nintendo     0.24
## 3824      DC 1999   Simulation                                   Sega     0.00
## 3825      DS 2008       Action Warner Bros. Interactive Entertainment     0.47
## 3826      PS 1999    Adventure           Konami Digital Entertainment     0.29
## 3827     Wii 2006       Racing                                Ubisoft     0.46
## 3828     PS2 2006 Role-Playing                     Namco Bandai Games     0.00
## 3829      DS 2008 Role-Playing             Disney Interactive Studios     0.37
## 3830      DS 2009         Misc                                Ubisoft     0.09
## 3831     Wii 2009     Fighting                               Nintendo     0.45
## 3832     PSP 2006     Fighting                        Electronic Arts     0.46
## 3833     PS2 2007       Action                                   Sega     0.13
## 3834      PS 2001 Role-Playing                                 Square     0.29
## 3835    X360 2007       Sports                        Electronic Arts     0.47
## 3836      PS 2001      Shooter            Sony Computer Entertainment     0.29
## 3837      DS 2009      Shooter                              LucasArts     0.44
## 3838     PS2 2002       Action           Konami Digital Entertainment     0.18
## 3839     PS2 2005       Puzzle                        Electronic Arts     0.26
## 3840      XB 2002       Sports                        Electronic Arts     0.39
## 3841     PS3 2008       Action                             Gamebridge     0.18
## 3842     PS3 2008       Sports                        Electronic Arts     0.46
## 3843     PS3 2011 Role-Playing              Sony Online Entertainment     0.35
## 3844      PS 2000     Fighting                           Midway Games     0.29
## 3845     NES 1993     Platform                                 Capcom     0.28
## 3846      PS 1999       Action                             Infogrames     0.29
## 3847     3DS 2014 Role-Playing                            Square Enix     0.15
## 3848      PS 1998     Fighting                                 Capcom     0.12
## 3849     Wii 2008       Action                   Take-Two Interactive     0.17
## 3850    X360 2009   Simulation                              505 Games     0.23
## 3851     PSV 2012       Action            Sony Computer Entertainment     0.26
## 3852     PS3 2007       Action                                    THQ     0.09
## 3853     Wii 2010         Misc             Disney Interactive Studios     0.46
## 3854     PS3 2008       Action                             Activision     0.21
## 3855     PS2 2000       Sports                        Electronic Arts     0.17
## 3856     PS2 2003       Sports                                   Sega     0.00
## 3857     PS2 2006       Action                      Eidos Interactive     0.25
## 3858     Wii 2007       Action                                    THQ     0.44
## 3859     PS2 2003      Shooter                        Electronic Arts     0.25
## 3860      XB 2005      Shooter                             Activision     0.38
## 3861     GBA 2005    Adventure             Disney Interactive Studios     0.37
## 3862     PS3 2007       Action            Sony Computer Entertainment     0.36
## 3863     PS3 2006       Sports                        Electronic Arts     0.47
## 3864     PS2 2005       Action                                    THQ     0.25
## 3865      PS 1999     Strategy                             SquareSoft     0.10
## 3866      DS 2006         Misc                               Nintendo     0.00
## 3867     PS2 2005       Sports                        Electronic Arts     0.25
## 3868     GBA 2002       Sports                             Activision     0.37
## 3869     GBA 2004       Action                        Electronic Arts     0.37
## 3870      DS 2007         Misc                                Ubisoft     0.48
## 3871      PS 1999      Shooter            Sony Computer Entertainment     0.17
## 3872      PC 2006   Simulation                        Electronic Arts     0.46
## 3873      DS 2008       Action                                   Sega     0.35
## 3874      XB 2002       Sports                                   Sega     0.38
## 3875      PS 2001       Sports                        Electronic Arts     0.29
## 3876     PS2 2002         Misc            Sony Computer Entertainment     0.25
## 3877     Wii 2007         Misc                                Ubisoft     0.46
## 3878     PS2 2002       Action                      Eidos Interactive     0.13
## 3879      PC 2009 Role-Playing                        Electronic Arts     0.00
## 3880    X360 2013     Fighting                     Namco Bandai Games     0.29
## 3881     Wii 2011         Misc                      DTP Entertainment     0.00
## 3882     PS2 2001         Misc            Sony Computer Entertainment     0.25
## 3883    XOne 2014       Action Warner Bros. Interactive Entertainment     0.34
## 3884     PSP 2010 Role-Playing                            Square Enix     0.13
## 3885     PS3 2010       Action                                Ubisoft     0.17
## 3886      PS 1996       Sports           Konami Digital Entertainment     0.08
## 3887      DS 2009       Puzzle                                Ubisoft     0.35
## 3888     PS2 2002       Racing        Midas Interactive Entertainment     0.25
## 3889      PC 2015     Strategy                             Activision     0.18
## 3890    X360 2012       Sports                        Electronic Arts     0.29
## 3891     PSP 2009     Fighting                     Namco Bandai Games     0.12
## 3892    X360 2009       Action                        Electronic Arts     0.26
## 3893     PS4 2014 Role-Playing                            Square Enix     0.17
## 3894     Wii 2009       Sports           Konami Digital Entertainment     0.12
## 3895    X360 2011      Shooter                             Activision     0.25
## 3896      DS 2008         Misc                               Nintendo     0.00
## 3897      GC 2003       Sports                        Electronic Arts     0.40
## 3898     PS2 2003       Sports           Konami Digital Entertainment     0.00
## 3899     PS2 2000 Role-Playing                                    THQ     0.25
## 3900      PS 1997       Sports                              Interplay     0.28
## 3901     PSP 2006       Sports                        Electronic Arts     0.47
## 3902     Wii 2008       Sports                                   Sega     0.46
## 3903     Wii 2007     Strategy                               Nintendo     0.28
## 3904     PSP 2004       Action                             Tecmo Koei     0.18
## 3905     GBA 2005         Misc                                    THQ     0.37
## 3906    X360 2009     Fighting                     Namco Bandai Games     0.36
## 3907     N64 1999         Misc                                    THQ     0.41
## 3908     NES 1985     Platform                               Nintendo     0.00
## 3909     N64 1999       Sports           Konami Digital Entertainment     0.01
## 3910    X360 2010       Sports                   Take-Two Interactive     0.47
## 3911      DS 2009       Action                             Activision     0.33
## 3912     PS3 2010      Shooter                             Activision     0.24
## 3913     Wii 2006     Platform                                    THQ     0.45
## 3914     PS3 2008       Action                                Ubisoft     0.19
## 3915      XB 2003       Sports                        Electronic Arts     0.44
## 3916      PS 1996     Strategy                              Banpresto     0.00
## 3917     GBA 2002     Platform                                    THQ     0.37
## 3918    X360 2006     Fighting                                    THQ     0.44
## 3919     PS2 2006   Simulation                     Namco Bandai Games     0.15
## 3920     PS3 2010     Strategy                                Ubisoft     0.18
## 3921     PS3 2008 Role-Playing                            Square Enix     0.32
## 3922     PSP 2007       Racing                                  Atari     0.08
## 3923    WiiU 2015       Action Warner Bros. Interactive Entertainment     0.30
## 3924      DS 2007       Puzzle                               Nintendo     0.17
## 3925     PSP 2007 Role-Playing                            Square Enix     0.36
## 3926     PS2 2006       Sports                        Electronic Arts     0.42
## 3927     PSP 2009       Action                        Electronic Arts     0.18
## 3928    XOne 2016       Action                 Microsoft Game Studios     0.27
## 3929     Wii 2010       Action                   Take-Two Interactive     0.47
## 3930      XB 2004         Misc                    Crave Entertainment     0.37
## 3931     PS2 2007       Sports                   Take-Two Interactive     0.25
## 3932      WS 2000 Role-Playing                             SquareSoft     0.00
## 3933    X360 2006       Racing                        Electronic Arts     0.42
## 3934     PS4 2015       Action                        Electronic Arts     0.18
## 3935      PC 2008   Simulation                             Rondomedia     0.00
## 3936     GBA 2004     Fighting                                  Atari     0.36
## 3937      PC 2012       Action                     Bethesda Softworks     0.26
## 3938      DS 2007   Simulation                                    THQ     0.46
## 3939      XB 2004       Sports                           Midway Games     0.37
## 3940     PS2 2004       Action           Konami Digital Entertainment     0.25
## 3941    2600 1988      Shooter                             Activision     0.47
## 3942     PS2 2005         Misc                                 Capcom     0.22
## 3943    XOne 2015         Misc                             Activision     0.29
## 3944     PS3 2014      Shooter                     Bethesda Softworks     0.14
## 3945     PS2 2002         Misc                             Infogrames     0.25
## 3946      DS 2009    Adventure                                    GSP     0.12
## 3947      PS 1997       Sports            Sony Computer Entertainment     0.28
## 3948     GBA 2004       Action                                    THQ     0.36
## 3949    X360 2012       Racing                            Codemasters     0.10
## 3950    X360 2008       Sports                        Electronic Arts     0.45
## 3951     PS2 2006       Racing                                   Sega     0.42
## 3952     PS2 2003     Platform Warner Bros. Interactive Entertainment     0.25
## 3953      DS 2007   Simulation                               Nintendo     0.00
## 3954    2600 1983       Action                                  Atari     0.47
## 3955    X360 2011    Adventure                        Electronic Arts     0.27
## 3956    X360 2011       Action           Konami Digital Entertainment     0.10
## 3957     PS3 2006       Sports                        Electronic Arts     0.31
## 3958      XB 2003       Racing                   Take-Two Interactive     0.42
## 3959     PS3 2009 Role-Playing                   Nippon Ichi Software     0.22
## 3960     PS3 2011 Role-Playing                                 Capcom     0.00
## 3961      DS 2005     Fighting                                  Atari     0.14
## 3962      GC 2006    Adventure                                    THQ     0.39
## 3963      PS 2001         Misc                                    THQ     0.28
## 3964     PS2 2001       Action                  Universal Interactive     0.25
## 3965     PS2 2006       Action                      Eidos Interactive     0.25
## 3966     PS2 2008         Misc             Disney Interactive Studios     0.25
## 3967    2600 1982      Shooter                             Activision     0.47
## 3968     PS2 2002         Misc                             Activision     0.25
## 3969     PS2 2008     Platform                          Vivendi Games     0.25
## 3970    X360 2015       Sports                   Take-Two Interactive     0.27
## 3971    X360 2014       Action Warner Bros. Interactive Entertainment     0.20
## 3972     Wii 2010   Simulation                              505 Games     0.34
## 3973     Wii 2007         Misc                        Electronic Arts     0.43
## 3974     3DS 2012         Misc                            Square Enix     0.22
## 3975     PS3 2011     Fighting                   Nippon Ichi Software     0.27
## 3976     Wii 2006       Sports                        Electronic Arts     0.46
## 3977     N64 2000       Action                                    THQ     0.40
## 3978    X360 2007   Simulation           Konami Digital Entertainment     0.46
## 3979     PS2 2002   Simulation                             Activision     0.24
## 3980     GBA 2001 Role-Playing                               Nintendo     0.13
## 3981     Wii 2011         Misc                               Nintendo     0.27
## 3982     PS2 2004     Strategy                              Banpresto     0.00
## 3983      DS 2010    Adventure             Disney Interactive Studios     0.27
## 3984    X360 2007       Sports                        Electronic Arts     0.45
## 3985      DS 2004       Action                             Activision     0.41
## 3986      PS 1995       Sports                                 Jaleco     0.28
## 3987      XB 2004     Fighting                             Tecmo Koei     0.30
## 3988      PS 1997 Role-Playing                    ASCII Entertainment     0.11
## 3989     PSV 2013       Sports                        Electronic Arts     0.11
## 3990     PS2 2002      Shooter                              LucasArts     0.24
## 3991     PS3 2009       Action                        Electronic Arts     0.20
## 3992     PS2 2004       Action                                    THQ     0.24
## 3993    X360 2013       Action           Konami Digital Entertainment     0.29
## 3994     PS2 2010       Sports                        Electronic Arts     0.41
## 3995    X360 2012       Sports                   Take-Two Interactive     0.47
## 3996    XOne 2014      Shooter                                   Sega     0.22
## 3997      DS 2008         Misc                                Ubisoft     0.46
## 3998     PS2 2004 Role-Playing                                 Capcom     0.11
## 3999    X360 2011       Racing             Disney Interactive Studios     0.28
## 4000     Wii 2009       Racing                             Activision     0.29
## 4001      GC 2004       Sports                             Activision     0.38
## 4002     PS2 2003       Racing                                    THQ     0.24
## 4003    SNES 1996       Sports                     Namco Bandai Games     0.00
## 4004     PS3 2008       Action                     Namco Bandai Games     0.09
## 4005     PS2 2005       Action                             Activision     0.24
## 4006     GBA 2001     Platform                                Ubisoft     0.36
## 4007     PS2 2008     Strategy                     Namco Bandai Games     0.00
## 4008      PS 1996 Role-Playing            Sony Computer Entertainment     0.00
## 4009     PS2 2007       Action                      Eidos Interactive     0.41
## 4010     PS2 2005       Action                             Activision     0.41
## 4011     PS3 2012       Action             Disney Interactive Studios     0.21
## 4012     PS2 2002      Shooter                             Infogrames     0.24
## 4013    X360 2014       Action                     Bethesda Softworks     0.25
## 4014    2600 1982       Sports                                  Atari     0.46
## 4015     PS2 2007     Platform                                    THQ     0.24
## 4016    2600 1981       Action                                  Atari     0.46
## 4017    2600 1982       Action                        Answer Software     0.46
## 4018     3DS 2011       Racing                     Namco Bandai Games     0.19
## 4019     Wii 2007       Racing                                    THQ     0.46
## 4020    X360 2011       Action                     Namco Bandai Games     0.30
## 4021     3DS 2011       Action                                 Capcom     0.16
## 4022     3DS 2011       Action                                   Sega     0.26
## 4023    X360 2006       Sports                             Activision     0.44
## 4024     GBA 2004       Sports                             Activision     0.35
## 4025     PS3 2011       Racing            Sony Computer Entertainment     0.21
## 4026    2600 1980       Sports                             Activision     0.46
## 4027     PS3 2015       Action                            Square Enix     0.00
## 4028     PSV 2014       Action Warner Bros. Interactive Entertainment     0.09
## 4029     PS2 2005       Action                                  Atari     0.41
## 4030    X360 2010      Shooter                            Square Enix     0.20
## 4031    X360 2012       Action Warner Bros. Interactive Entertainment     0.31
## 4032      GC 2002     Fighting                                    THQ     0.38
## 4033     3DS 2013     Platform                                   Sega     0.24
## 4034     GBA 2003       Action                                    THQ     0.35
## 4035      XB 2004      Shooter                        Electronic Arts     0.34
## 4036     Wii 2008    Adventure                        Scholastic Inc.     0.45
## 4037      DS 2006     Platform                                    THQ     0.45
## 4038      GC 2003   Simulation                        Electronic Arts     0.35
## 4039     PS2 2005 Role-Playing                            Square Enix     0.12
## 4040      DS 2008       Sports                        Electronic Arts     0.12
## 4041     PS2 2006      Shooter                     Namco Bandai Games     0.00
## 4042    SNES 1993       Puzzle                               Nintendo     0.00
## 4043      XB 2006       Action                          Vivendi Games     0.37
## 4044     Wii 2009      Shooter                             Activision     0.24
## 4045     3DS 2014         Misc                               Nintendo     0.18
## 4046     N64 1997       Sports                        Electronic Arts     0.16
## 4047    X360 2008     Fighting                                  Atari     0.24
## 4048      DS 2010       Action                             Activision     0.42
## 4049      PC 2010      Shooter                        Electronic Arts     0.20
## 4050    X360 2012      Shooter                     Bethesda Softworks     0.28
## 4051     SAT 1997       Sports                                   Sega     0.00
## 4052     PS3 2013       Action                              505 Games     0.07
## 4053     PS2 2004       Sports                                  Atari     0.24
## 4054     PS2 2009       Racing            Sony Computer Entertainment     0.00
## 4055     PS2 2003       Sports                  Universal Interactive     0.24
## 4056     3DS 2012       Action             Disney Interactive Studios     0.36
## 4057      DS 2013       Action Warner Bros. Interactive Entertainment     0.28
## 4058     PS2 2003         Misc                     Namco Bandai Games     0.00
## 4059    X360 2008    Adventure                                  Atari     0.14
## 4060      PS 2001     Fighting                                  Atari     0.00
## 4061     PS2 2009      Shooter                             Activision     0.25
## 4062     PSP 2008       Sports                                   Sega     0.00
## 4063      PC 2008      Shooter                       City Interactive     0.00
## 4064      GC 2001       Racing                  Acclaim Entertainment     0.36
## 4065     PS2 2003       Racing                           Midway Games     0.24
## 4066     PS3 2014       Racing                            Codemasters     0.07
## 4067      XB 2002       Action                     Namco Bandai Games     0.36
## 4068     Wii 2009       Sports                               XS Games     0.45
## 4069      PS 1999       Action                        Fox Interactive     0.27
## 4070      DS 2008    Adventure                                Ubisoft     0.08
## 4071     3DS 2011       Racing                                Ubisoft     0.27
## 4072     PS2 2001         Misc                            Hudson Soft     0.00
## 4073     3DS 2011       Action                               Nintendo     0.31
## 4074     PS2 2005 Role-Playing                     Namco Bandai Games     0.07
## 4075    SNES 1995   Simulation                                    THQ     0.00
## 4076      DS 2007       Action                          Vivendi Games     0.42
## 4077      PC 2008       Action                                Ubisoft     0.01
## 4078     PS3 2015      Shooter                        Electronic Arts     0.12
## 4079     Wii 2007       Action                        Electronic Arts     0.38
## 4080      DS 2008         Misc                                Ubisoft     0.44
## 4081     PS3 2009      Shooter Warner Bros. Interactive Entertainment     0.19
## 4082     PSV 2012       Racing                                   Sega     0.12
## 4083    X360 2007         Misc                 Microsoft Game Studios     0.43
## 4084     Wii 2009      Shooter                        Electronic Arts     0.33
## 4085      DS 2007       Puzzle                                Ubisoft     0.00
## 4086     PS2 2007       Action                             Activision     0.40
## 4087     PSV 2012       Action           Konami Digital Entertainment     0.16
## 4088      DS 2006 Role-Playing                               Nintendo     0.16
## 4089     GBA 2005       Action                             Activision     0.35
## 4090     Wii 2009       Sports                     Namco Bandai Games     0.15
## 4091     Wii 2007   Simulation                        Electronic Arts     0.42
## 4092     3DS 2014       Sports                               Nintendo     0.15
## 4093     GBA 2004       Racing                 Zoo Digital Publishing     0.35
## 4094      PS 1999 Role-Playing           Konami Digital Entertainment     0.00
## 4095      XB 2004       Sports                        Electronic Arts     0.36
## 4096     Wii 2009       Action           Konami Digital Entertainment     0.23
## 4097    2600 1983      Shooter                                  Atari     0.45
## 4098    SNES 1991    Adventure           Konami Digital Entertainment     0.00
## 4099    X360 2008         Misc                 Microsoft Game Studios     0.27
## 4100    X360 2008      Shooter                            D3Publisher     0.22
## 4101    X360 2010      Shooter                             Activision     0.20
## 4102     PS2 2003         Misc                                  Atari     0.24
## 4103     PS2 2006       Action                                    THQ     0.40
## 4104      PS 1999     Fighting                  Acclaim Entertainment     0.27
## 4105     Wii 2008         Misc               System 3 Arcade Software     0.42
## 4106    X360 2006       Sports                        Electronic Arts     0.44
## 4107      PS 1998     Fighting                             Activision     0.27
## 4108      PC 2014       Action                    Activision Blizzard     0.08
## 4109     PSP 2009         Misc                              MTV Games     0.24
## 4110      DS 2010    Adventure                                 Capcom     0.25
## 4111    X360 2008     Platform                          Vivendi Games     0.22
## 4112     PSP 2010       Sports                        Electronic Arts     0.09
## 4113     PS2 2003   Simulation                              LucasArts     0.24
## 4114      DS 2008       Action                   Take-Two Interactive     0.44
## 4115     N64 1998       Sports                  Acclaim Entertainment     0.44
## 4116     N64 1999   Simulation                           Pack In Soft     0.25
## 4117     PS2 2008       Sports                        Electronic Arts     0.40
## 4118     PS2 2007   Simulation                                    THQ     0.24
## 4119    WiiU 2012       Action                        Electronic Arts     0.18
## 4120      DS 2005   Simulation                      Rising Star Games     0.41
## 4121      PS 1999       Racing                             Activision     0.27
## 4122     PS3 2011 Role-Playing                                Unknown     0.26
## 4123      PC 2014   Simulation                                   Sega     0.00
## 4124     PS2 2000     Strategy                        Electronic Arts     0.23
## 4125     Wii 2010       Racing                        Electronic Arts     0.18
## 4126    WiiU 2015       Action                             Activision     0.25
## 4127    X360 2008   Simulation                 Microsoft Game Studios     0.16
## 4128      DS 2011       Action                   Take-Two Interactive     0.45
## 4129     Wii 2010       Action                               Nintendo     0.38
## 4130      PS 1999       Sports                            989 Studios     0.27
## 4131     Wii 2007     Platform                             Activision     0.42
## 4132     GBA 2001       Racing                              Rebellion     0.34
## 4133     PS3 2007       Action                             Tecmo Koei     0.14
## 4134     Wii 2008       Action                      Eidos Interactive     0.14
## 4135      DS 2009 Role-Playing                            Square Enix     0.12
## 4136    X360 2014 Role-Playing                 Microsoft Game Studios     0.25
## 4137      XB 2005       Sports                        Electronic Arts     0.35
## 4138    X360 2006       Sports                        Electronic Arts     0.19
## 4139     PS2 2009       Action                                    THQ     0.19
## 4140    2600 1981       Racing                             Activision     0.45
## 4141     Wii 2008       Racing                                Xplosiv     0.06
## 4142     Wii 2008   Simulation                        Electronic Arts     0.37
## 4143     PS2 2002       Racing                 Ignition Entertainment     0.23
## 4144      DS 2009       Racing                                    THQ     0.35
## 4145     Wii 2008       Racing                                Ubisoft     0.15
## 4146      DS 2009         Misc                  Majesco Entertainment     0.01
## 4147     PS2 2000       Puzzle            Sony Computer Entertainment     0.14
## 4148    2600 1989       Action                             Activision     0.45
## 4149      PS 1996      Shooter                  Acclaim Entertainment     0.24
## 4150     N64 1998       Sports                        Electronic Arts     0.45
## 4151     3DS 2015 Role-Playing                               Nintendo     0.16
## 4152     PSP 2007       Sports                                Unknown     0.03
## 4153     PS3 2008      Shooter                            D3Publisher     0.23
## 4154    X360 2008      Shooter                           Midway Games     0.25
## 4155     PS2 2002     Fighting                             Activision     0.23
## 4156    X360 2012     Fighting                                 Capcom     0.31
## 4157     PS2 2006       Action                        Electronic Arts     0.39
## 4158     Wii 2009       Racing                        Electronic Arts     0.19
## 4159      DS 2006       Action                                Ubisoft     0.43
## 4160    X360 2010 Role-Playing                        Electronic Arts     0.33
## 4161    SNES 1995       Puzzle                                Compile     0.00
## 4162      PS 2000       Action                           Midway Games     0.26
## 4163      DS 2005     Platform           Konami Digital Entertainment     0.37
## 4164     PS3 2014     Fighting                     Namco Bandai Games     0.15
## 4165     PS3 2013       Action                             Activision     0.23
## 4166      PS 1995       Action                              Psygnosis     0.26
## 4167     PS2 2001       Action            Sony Computer Entertainment     0.23
## 4168     PS3 2012       Action           Konami Digital Entertainment     0.21
## 4169    X360 2014       Sports                        Electronic Arts     0.14
## 4170     Wii 2010     Fighting                                    THQ     0.30
## 4171     Wii 2011 Role-Playing                            Square Enix     0.00
## 4172     PS2 2000     Fighting                     Empire Interactive     0.05
## 4173     Wii 2008   Simulation                                Ubisoft     0.42
## 4174    WiiU 2014       Action Warner Bros. Interactive Entertainment     0.23
## 4175     GBA 2002     Platform                               Nintendo     0.00
## 4176     PS2 2006 Role-Playing                            Square Enix     0.04
## 4177     PS2 2002       Racing                                    THQ     0.23
## 4178    X360 2007 Role-Playing                 Microsoft Game Studios     0.41
## 4179     PSV 2012       Action                        Electronic Arts     0.00
## 4180     PSV 2011       Sports                                   Sega     0.05
## 4181      PC 2009     Strategy                                    THQ     0.00
## 4182     PSP 2007       Racing                                   Sega     0.10
## 4183      DS 2010       Action                                Level 5     0.00
## 4184      DS 2007     Platform                             Activision     0.41
## 4185     PS3 2015       Action             Disney Interactive Studios     0.14
## 4186     PS2 2005       Racing                           Midway Games     0.23
## 4187     N64 1998     Platform                               Nintendo     0.27
## 4188     N64 1997       Racing                                  Titus     0.28
## 4189     N64 1998 Role-Playing           Konami Digital Entertainment     0.38
## 4190      PS 1999         Misc                   Hudson Entertainment     0.00
## 4191     N64 1997      Shooter                           Midway Games     0.38
## 4192     Wii 2009       Puzzle                        Electronic Arts     0.34
## 4193      PC 2010   Simulation                        Electronic Arts     0.00
## 4194    X360 2005     Fighting                             Tecmo Koei     0.30
## 4195    2600 1987       Action                             Activision     0.44
## 4196    X360 2011       Action                                   Sega     0.28
## 4197     Wii 2009     Platform             Disney Interactive Studios     0.29
## 4198     PS2 2006       Sports                           Midway Games     0.23
## 4199      XB 2006       Racing                        Electronic Arts     0.35
## 4200     GBA 2004     Platform                                    THQ     0.02
## 4201    XOne 2015       Sports                        Electronic Arts     0.37
## 4202      PC 2011       Sports                        Electronic Arts     0.04
## 4203      PS 1999         Misc                            Codemasters     0.26
## 4204      DS 2007       Action                             Activision     0.43
## 4205    X360 2013       Sports                   Take-Two Interactive     0.44
## 4206    SNES 1995         Misc                            Hudson Soft     0.00
## 4207     PS2 2005       Sports           Konami Digital Entertainment     0.00
## 4208      PC 2011   Simulation                        Electronic Arts     0.00
## 4209     PS2 2009       Racing                                    THQ     0.27
## 4210     PS2 2003       Racing                            Codemasters     0.23
## 4211    X360 2014       Sports                        Electronic Arts     0.35
## 4212     GBA 2006    Adventure             Disney Interactive Studios     0.33
## 4213     PS2 2005         Misc                             Activision     0.39
## 4214     3DS 2012 Role-Playing                                Level 5     0.00
## 4215      PS 1996       Sports                        Electronic Arts     0.26
## 4216     Wii 2010         Misc                           Nordic Games     0.00
## 4217     GBA 2005       Action                                Ubisoft     0.33
## 4218     PS3 2011       Racing                                    THQ     0.24
## 4219      DS 2008       Action                                 Capcom     0.22
## 4220      DS 2007       Puzzle                 Ignition Entertainment     0.43
## 4221     PS2 2004     Fighting                                  Atari     0.23
## 4222      GC 2005         Misc                               Nintendo     0.36
## 4223      GC 2004       Action           Konami Digital Entertainment     0.30
## 4224      DS 2007       Sports                                Ubisoft     0.46
## 4225     PS2 2002       Sports                             Activision     0.23
## 4226     PS2 2007    Adventure           Konami Digital Entertainment     0.23
## 4227      DS 2008     Platform                          Vivendi Games     0.26
## 4228     GBA 2001      Shooter                                    THQ     0.33
## 4229     PS3 2007       Racing                                    THQ     0.35
## 4230     GBA 2004       Puzzle                               Nintendo     0.25
## 4231      XB 2005      Shooter                                    THQ     0.34
## 4232     GBA 2002         Misc                             Infogrames     0.33
## 4233     3DS 2012 Role-Playing                                Unknown     0.00
## 4234     Wii 2011         Misc                 GameMill Entertainment     0.44
## 4235      PS 1999       Sports                                Ubisoft     0.26
## 4236     Wii 2007       Action                          Vivendi Games     0.40
## 4237     PS3 2011      Shooter Warner Bros. Interactive Entertainment     0.21
## 4238     GBA 2005     Platform             Disney Interactive Studios     0.33
## 4239     PS2 2002       Action                                Wanadoo     0.20
## 4240     PSP 2007      Shooter            Sony Computer Entertainment     0.25
## 4241    SNES 1992       Sports                     Namco Bandai Games     0.00
## 4242     PS2 2001     Strategy                                    THQ     0.13
## 4243    SNES 1993     Platform                     Namco Bandai Games     0.00
## 4244     GBA 2002     Platform                             Activision     0.33
## 4245      PC 2014      Shooter                     Bethesda Softworks     0.12
## 4246     PS3 2011      Shooter                                    THQ     0.13
## 4247     GBA 2004     Platform                                    THQ     0.33
## 4248     3DS 2012       Action                               Nintendo     0.20
## 4249      DS 2008     Strategy                   Take-Two Interactive     0.38
## 4250     PSP 2006       Racing            Sony Computer Entertainment     0.37
## 4251      DS 2008     Platform                   Take-Two Interactive     0.27
## 4252     PS2 2007         Misc            Sony Computer Entertainment     0.23
## 4253     PS2 2005      Shooter                                Ubisoft     0.38
## 4254     Wii 2010       Sports           Konami Digital Entertainment     0.36
## 4255      DS 2011       Action                             Activision     0.34
## 4256     PS2 2005     Fighting                                  Atari     0.38
## 4257     GBA 2001     Platform                                    THQ     0.33
## 4258     PS3 2008     Platform                          Vivendi Games     0.19
## 4259      PS 1999       Racing                           Midway Games     0.26
## 4260     PSP 2006      Shooter                                Ubisoft     0.23
## 4261      DS 2008    Adventure                                    THQ     0.42
## 4262     3DS 2016       Action                               Nintendo     0.04
## 4263      PS 1996       Sports            Sony Computer Entertainment     0.26
## 4264    X360 2013       Action                             Activision     0.26
## 4265     PS2 2005      Shooter                                Ubisoft     0.38
## 4266     PS3 2011       Sports                                   Sega     0.09
## 4267    XOne 2014       Sports                        Electronic Arts     0.30
## 4268    2600 1983       Action                                  Atari     0.43
## 4269     PS2 2002       Action            Sony Computer Entertainment     0.22
## 4270     PS2 2003         Misc            Sony Computer Entertainment     0.22
## 4271     GBA 2001       Action                                    THQ     0.33
## 4272     GBA 2003       Racing                          Vivendi Games     0.33
## 4273     PS3 2009       Action                              LucasArts     0.19
## 4274     PS3 2015   Simulation                             Koch Media     0.11
## 4275      DS 2006     Fighting                                   Sega     0.30
## 4276     Wii 2011       Sports                        Electronic Arts     0.43
## 4277      DS 2009         Misc Warner Bros. Interactive Entertainment     0.33
## 4278    XOne 2015       Action Warner Bros. Interactive Entertainment     0.26
## 4279      DS 2011         Misc                                    THQ     0.37
## 4280     PS2 2009     Platform            Sony Computer Entertainment     0.22
## 4281     PS2 2002         Misc                            Hudson Soft     0.00
## 4282    X360 2008     Strategy                        Electronic Arts     0.18
## 4283     PSP 2006       Action                      Eidos Interactive     0.09
## 4284    X360 2015       Action                             Activision     0.24
## 4285    X360 2007       Action                                   Sega     0.30
## 4286      PS 2000       Racing                             Activision     0.25
## 4287     Wii 2010       Action Warner Bros. Interactive Entertainment     0.29
## 4288     PSV 2015 Role-Playing                     Namco Bandai Games     0.08
## 4289      PS 1999     Fighting                     Virgin Interactive     0.25
## 4290     PS2 2005      Shooter                              NovaLogic     0.22
## 4291     PSP 2007       Racing                        Electronic Arts     0.02
## 4292    X360 2006       Sports                        Electronic Arts     0.42
## 4293    X360 2009       Racing                                Ubisoft     0.24
## 4294    SNES 1994      Shooter                                  Taito     0.00
## 4295     PS2 2002 Role-Playing                                  Atari     0.14
## 4296    X360 2013     Platform                                Ubisoft     0.19
## 4297     GBA 2003 Role-Playing                               Nintendo     0.00
## 4298     PS3 2010 Role-Playing                             Tecmo Koei     0.22
## 4299     Wii 2009    Adventure                             Activision     0.42
## 4300     3DS 2015       Puzzle                               Nintendo     0.05
## 4301    X360 2010       Action                        Electronic Arts     0.21
## 4302      XB 2003       Sports                 Microsoft Game Studios     0.36
## 4303     Wii 2010         Misc             Disney Interactive Studios     0.43
## 4304      PS 1995   Simulation            Sony Computer Entertainment     0.25
## 4305     Wii 2007       Action             Disney Interactive Studios     0.39
## 4306     PS3 2011      Shooter                                    THQ     0.20
## 4307     PS3 2011         Misc            Sony Computer Entertainment     0.00
## 4308     PSV 2015         Misc                   Nippon Ichi Software     0.13
## 4309     PS3 2009 Role-Playing                     Namco Bandai Games     0.00
## 4310    XOne 2014       Action                            Square Enix     0.26
## 4311     PSP 2009       Action                         Ubisoft Annecy     0.03
## 4312     GBA 2005     Platform                                    THQ     0.33
## 4313     PSV 2013 Role-Playing                     Namco Bandai Games     0.15
## 4314      PS 1999      Shooter                                  Atari     0.25
## 4315     3DS 2014       Action Warner Bros. Interactive Entertainment     0.21
## 4316     Wii 2007    Adventure                             Activision     0.42
## 4317    SNES 1996       Sports           Konami Digital Entertainment     0.00
## 4318     PS4 2014    Adventure                         Telltale Games     0.12
## 4319     PS2 2005       Sports           Konami Digital Entertainment     0.00
## 4320      GC 2003       Action                                  Atari     0.34
## 4321     Wii 2008     Platform                          Vivendi Games     0.36
## 4322      XB 2004       Racing                        Electronic Arts     0.34
## 4323    SNES 1995       Sports                                  Epoch     0.00
## 4324      DS 2007       Puzzle                  Majesco Entertainment     0.42
## 4325      GC 2002 Role-Playing                             Infogrames     0.23
## 4326      DS 2012         Misc                             Activision     0.03
## 4327     PS2 2002       Action                     BAM! Entertainment     0.22
## 4328     PSV 2012      Shooter            Sony Computer Entertainment     0.21
## 4329     Wii 2012       Sports                   Take-Two Interactive     0.39
## 4330     3DS 2011     Fighting                         Ubisoft Annecy     0.13
## 4331      DS 2007         Misc                  Majesco Entertainment     0.00
## 4332      DS 2008         Misc                                Ubisoft     0.41
## 4333     PS2 2006       Sports                        Electronic Arts     0.38
## 4334      PC 2014       Action                                Ubisoft     0.14
## 4335     Wii 2008         Misc           Konami Digital Entertainment     0.42
## 4336    X360 2011       Sports                   Take-Two Interactive     0.40
## 4337    X360 2008      Shooter                             Activision     0.30
## 4338    2600 1985       Puzzle                             Activision     0.42
## 4339      PS 1998       Sports                            989 Studios     0.25
## 4340     PS2 2005      Shooter                           Midway Games     0.22
## 4341      PS 1998       Sports                     Namco Bandai Games     0.00
## 4342    X360 2007       Racing                                   Sega     0.12
## 4343     PS2 2004       Sports                        Electronic Arts     0.22
## 4344    X360 2008     Fighting                           Midway Games     0.26
## 4345      XB 2003      Shooter                             Activision     0.34
## 4346     Wii 2007     Strategy                              LucasArts     0.39
## 4347    2600 1981   Simulation                                  Atari     0.42
## 4348     PS3 2010       Action                             Activision     0.26
## 4349    X360 2011      Shooter Warner Bros. Interactive Entertainment     0.30
## 4350      DS 2007         Misc                                Ubisoft     0.41
## 4351     PS4 2016      Shooter                        Electronic Arts     0.17
## 4352     Wii 2009         Misc                              MTV Games     0.42
## 4353     PS3 2015       Sports           Konami Digital Entertainment     0.08
## 4354      PS 1998       Action                             Activision     0.25
## 4355      DS 2009       Action                             Activision     0.27
## 4356     Wii 2009       Sports           Konami Digital Entertainment     0.09
## 4357     GBA 2004         Misc           Konami Digital Entertainment     0.32
## 4358     PS3 2009         Misc            Sony Computer Entertainment     0.11
## 4359     PSV 2013 Role-Playing                     Namco Bandai Games     0.00
## 4360     Wii 2009       Action                               Nintendo     0.10
## 4361     PS2 2001       Sports           Konami Digital Entertainment     0.00
## 4362     PS4 2015       Action                     Namco Bandai Games     0.08
## 4363     PS2 2003       Action                                    THQ     0.22
## 4364    SNES 1993     Fighting                                 Takara     0.00
## 4365     N64 1998       Action                         GT Interactive     0.36
## 4366     N64 2000       Puzzle                               Nintendo     0.36
## 4367     PS3 2008 Role-Playing                                  Atari     0.19
## 4368     Wii 2009   Simulation           Konami Digital Entertainment     0.26
## 4369     3DS 2014       Sports                        Electronic Arts     0.09
## 4370     Wii 2007   Simulation                                Ubisoft     0.41
## 4371      DS 2007       Action                             Activision     0.41
## 4372     GBA 2001     Fighting                             Infogrames     0.32
## 4373     PS2 2006 Role-Playing                             Tecmo Koei     0.22
## 4374      PS 1995 Role-Playing                                  Atlus     0.00
## 4375      DS 2009         Misc                             Activision     0.21
## 4376    X360 2012     Fighting                     Namco Bandai Games     0.26
## 4377     GBA 2004       Racing                                    THQ     0.32
## 4378    X360 2008       Action                                   Sega     0.16
## 4379    X360 2009   Simulation                                Unknown     0.03
## 4380      PS 1995       Action                     Namco Bandai Games     0.00
## 4381     PSP 2010       Action                                Unknown     0.00
## 4382     PS2 2009         Misc            Sony Computer Entertainment     0.00
## 4383     PSP 2010      Shooter            Sony Computer Entertainment     0.17
## 4384      PS 1999 Role-Playing                                 Square     0.00
## 4385     PS2 2008         Misc             Disney Interactive Studios     0.09
## 4386    X360 2009       Sports                        Electronic Arts     0.40
## 4387     PS2 2004       Action                             Tecmo Koei     0.04
## 4388     PS3 2007       Sports                             Activision     0.36
## 4389      PS 1994       Sports            Sony Computer Entertainment     0.25
## 4390      XB 2005     Fighting                                    THQ     0.34
## 4391    X360 2010       Sports                              505 Games     0.38
## 4392     PSP 2007     Strategy                                    THQ     0.04
## 4393      GC 2004       Sports                        Electronic Arts     0.35
## 4394    2600 1987      Shooter                                  Atari     0.42
## 4395      GC 2004     Fighting                                    THQ     0.35
## 4396      DS 2005       Action                            Square Enix     0.13
## 4397      XB 2003       Racing                  Acclaim Entertainment     0.36
## 4398      PS 2000       Racing                      Eidos Interactive     0.25
## 4399     PS2 2002       Racing                        Electronic Arts     0.22
## 4400      PS 1996 Role-Playing           Konami Digital Entertainment     0.14
## 4401    WiiU 2015       Sports                               Nintendo     0.13
## 4402     Wii 2008       Sports                        Electronic Arts     0.18
## 4403    2600 1981       Action                            Tigervision     0.42
## 4404     PS2 2004       Action                                    THQ     0.22
## 4405     GBA 2004       Sports                               Nintendo     0.32
## 4406     PSP 2008     Platform                          Vivendi Games     0.11
## 4407     Wii 2009         Misc           Konami Digital Entertainment     0.24
## 4408      DS 2009   Simulation                              505 Games     0.42
## 4409    XOne 2013         Misc                                Ubisoft     0.30
## 4410     PS2 2004         Misc           Konami Digital Entertainment     0.22
## 4411     PS3 2013      Shooter                              505 Games     0.21
## 4412     PS2 2006       Sports                                  Spike     0.37
## 4413     PS2 2005         Misc            Sony Computer Entertainment     0.37
## 4414      XB 2005       Sports           Konami Digital Entertainment     0.06
## 4415     N64 1999       Sports                        Electronic Arts     0.42
## 4416     PS2 2004       Action           Konami Digital Entertainment     0.22
## 4417     PS2 2005         Misc                                    THQ     0.37
## 4418    X360 2015       Action             Disney Interactive Studios     0.19
## 4419      DS 2009       Puzzle Warner Bros. Interactive Entertainment     0.30
## 4420     PS2 2002    Adventure                          Vivendi Games     0.22
## 4421    WiiU 2015       Action             Disney Interactive Studios     0.20
## 4422     PS2 2004       Action                             Activision     0.22
## 4423      XB 2005 Role-Playing                             Activision     0.30
## 4424     Wii 2009         Misc                     Namco Bandai Games     0.41
## 4425    X360 2012       Action                             Activision     0.28
## 4426     PS3 2013       Action                            Deep Silver     0.14
## 4427      DS 2004   Simulation                        Electronic Arts     0.40
## 4428     PS2 2003       Action                        Electronic Arts     0.22
## 4429      XB 2006       Action                        Electronic Arts     0.33
## 4430    X360 2013       Action                                 Capcom     0.26
## 4431    XOne 2016      Shooter                        Electronic Arts     0.26
## 4432      PS 1996       Sports                     Namco Bandai Games     0.00
## 4433      XB 2002       Sports                        Electronic Arts     0.35
## 4434     PS2 2005      Shooter                        Electronic Arts     0.37
## 4435     Wii 2009       Action             Disney Interactive Studios     0.19
## 4436     Wii 2009       Action                            D3Publisher     0.25
## 4437      XB 2005       Action                          Vivendi Games     0.33
## 4438     GBA 2003     Platform                               Nintendo     0.00
## 4439      PS 1997      Shooter                        Fox Interactive     0.25
## 4440    X360 2011       Racing                        Electronic Arts     0.18
## 4441      PS 1999       Racing                             SquareSoft     0.07
## 4442     PS3 2012       Action                             Tecmo Koei     0.19
## 4443    X360 2011      Shooter                                Ubisoft     0.28
## 4444      XB 2006       Action                              LucasArts     0.33
## 4445     Wii 2008         Misc                                Ubisoft     0.10
## 4446      DS 2007         Misc                                Ubisoft     0.40
## 4447    X360 2007      Shooter                   Take-Two Interactive     0.36
## 4448     PS2 2005      Shooter                     Namco Bandai Games     0.00
## 4449      PS 2000       Puzzle                     Namco Bandai Games     0.25
## 4450      PS 1996 Role-Playing                       Crystal Dynamics     0.25
## 4451    SNES 1996       Puzzle                            Hudson Soft     0.00
## 4452     NES 1991       Puzzle                            Hudson Soft     0.16
## 4453     N64 1997      Shooter                         GT Interactive     0.35
## 4454     Wii 2009      Shooter                               Nintendo     0.20
## 4455     Wii 2009         Misc                    Knowledge Adventure     0.41
## 4456     PS3 2010       Action                              505 Games     0.18
## 4457      GC 2005         Misc                                    THQ     0.34
## 4458     PS2 2007     Strategy                              Banpresto     0.00
## 4459      PS 2001       Action                                    3DO     0.24
## 4460      DS 2007   Simulation                                Ubisoft     0.41
## 4461      DS 2007   Simulation                             Activision     0.40
## 4462     PSP 2009     Strategy           Konami Digital Entertainment     0.19
## 4463      XB 2004       Racing                                    THQ     0.34
## 4464     PS2 2002       Sports           Konami Digital Entertainment     0.00
## 4465      PS 2000       Sports            Sony Computer Entertainment     0.24
## 4466      GC 2004     Fighting                       Tomy Corporation     0.00
## 4467      DS 2010       Action                                    THQ     0.26
## 4468      GC 2003     Platform                               Nintendo     0.34
## 4469     GBA 2003       Action                                    THQ     0.31
## 4470      XB 2005      Shooter                                Unknown     0.02
## 4471     PS2 2003         Misc                     Namco Bandai Games     0.00
## 4472      DS 2010       Sports                                Mastiff     0.41
## 4473     PS2 2005     Fighting                                Unknown     0.00
## 4474     PS3 2012         Misc                                Ubisoft     0.26
## 4475      GC 2002      Shooter                      Eidos Interactive     0.34
## 4476     GBA 2003       Action                  Majesco Entertainment     0.31
## 4477    X360 2012       Action                                 Capcom     0.28
## 4478      GC 2002    Adventure                               Nintendo     0.34
## 4479     GBA 2004       Action                                    THQ     0.31
## 4480     PS2 2005     Fighting                                  Atari     0.36
## 4481     PS2 2009         Misc            Sony Computer Entertainment     0.00
## 4482     SAT 1996    Adventure                                   Sega     0.00
## 4483     Wii 2007     Platform                                    THQ     0.40
## 4484     PS2 2005       Action                     Namco Bandai Games     0.00
## 4485      DS 2010   Simulation           Konami Digital Entertainment     0.00
## 4486     PS2 2002       Sports                           Midway Games     0.21
## 4487     Wii 2011         Misc                                Ubisoft     0.41
## 4488     PS2 2007       Action                                    THQ     0.36
## 4489     PSP 2007     Fighting                                  Atari     0.19
## 4490      DS 2006       Puzzle                               Nintendo     0.16
## 4491      XB 2002   Simulation                             Activision     0.35
## 4492     Wii 2009       Sports                                Mastiff     0.41
## 4493     GBA 2004    Adventure                               Nintendo     0.26
## 4494     PS3 2010 Role-Playing                                   Sega     0.19
## 4495     3DS 2011       Puzzle                          Tetris Online     0.20
## 4496      DS 2009         Misc                   Take-Two Interactive     0.39
## 4497     PS2 2003       Action            Sony Computer Entertainment     0.21
## 4498     N64 2001       Sports                        Electronic Arts     0.41
## 4499     GBA 2004       Racing                        Electronic Arts     0.31
## 4500     PS2 2008       Action                             Activision     0.17
## 4501      PS 2001      Shooter                   Take-Two Interactive     0.24
## 4502      XB 2001       Sports                        Electronic Arts     0.32
## 4503     GBA 2005   Simulation                                    THQ     0.31
## 4504      PC 2013       Sports                        Electronic Arts     0.01
## 4505     PS2 2005       Action             Disney Interactive Studios     0.36
## 4506     PS4 2014       Racing                                Ubisoft     0.13
## 4507      DS 2010         Misc                                    THQ     0.41
## 4508     SAT 1996     Platform                                   Sega     0.00
## 4509      XB 2003       Sports                        Electronic Arts     0.40
## 4510      PC 2016      Shooter                             Activision     0.22
## 4511    XOne 2015         Misc                 Harmonix Music Systems     0.35
## 4512     Wii 2010       Sports                        Electronic Arts     0.38
## 4513     PS2 2003       Action                        Electronic Arts     0.21
## 4514    WiiU 2016         Misc                 Microsoft Game Studios     0.18
## 4515      PS 2001       Sports            Sony Computer Entertainment     0.24
## 4516     PS4 2014       Action                            Square Enix     0.16
## 4517     PS2 2000      Shooter                      Eidos Interactive     0.21
## 4518    2600 1981       Action                             Activision     0.40
## 4519     PS2 2004 Role-Playing                     Namco Bandai Games     0.21
## 4520      DS 2009 Role-Playing                      Rising Star Games     0.28
## 4521     GBA 2002     Platform                     BAM! Entertainment     0.31
## 4522     GBA 2003     Platform                                 Capcom     0.18
## 4523    SNES 1994   Simulation                       Enix Corporation     0.00
## 4524     Wii 2010       Sports                        Electronic Arts     0.23
## 4525     PS3 2010 Role-Playing                   Nippon Ichi Software     0.12
## 4526    X360 2012      Shooter                   Take-Two Interactive     0.21
## 4527     GBA 2004         Misc                  Majesco Entertainment     0.31
## 4528     PS2 2009       Action                                  Atari     0.15
## 4529     PS2 2003       Action                              Interplay     0.21
## 4530     Wii 2010       Action                             Activision     0.24
## 4531    X360 2007     Strategy                        Electronic Arts     0.35
## 4532     N64 1998       Racing                           Midway Games     0.28
## 4533     N64 1997     Platform                               Nintendo     0.25
## 4534      PC 2012      Shooter                   Take-Two Interactive     0.15
## 4535      DS 2008   Simulation                                Ubisoft     0.39
## 4536      DS 2006     Platform           Konami Digital Entertainment     0.33
## 4537      PC 2011         Misc                    TopWare Interactive     0.00
## 4538     PS2 2004       Sports            Sony Computer Entertainment     0.36
## 4539     Wii 2013       Sports                        Electronic Arts     0.00
## 4540     PS2 2003 Role-Playing              Sony Online Entertainment     0.21
## 4541      PS 1996       Sports            Sony Computer Entertainment     0.10
## 4542      DS 2009    Adventure                               ChunSoft     0.37
## 4543     PS2 2001   Simulation                     Namco Bandai Games     0.09
## 4544     PS3 2012   Simulation           Konami Digital Entertainment     0.21
## 4545     PS3 2007       Action                        Electronic Arts     0.16
## 4546     PSP 2006 Role-Playing                                Ubisoft     0.17
## 4547     PS2 2008         Misc                        Electronic Arts     0.21
## 4548     PS2 2006 Role-Playing                            Square Enix     0.07
## 4549      PC 2006   Simulation                 Microsoft Game Studios     0.02
## 4550    XOne 2014       Action Warner Bros. Interactive Entertainment     0.23
## 4551      GC 2002       Sports                        Electronic Arts     0.33
## 4552     Wii 2009       Racing                        Electronic Arts     0.39
## 4553    X360 2008         Misc             Disney Interactive Studios     0.39
## 4554     GBA 2002       Sports                                  Atari     0.31
## 4555    WiiU 2012      Shooter                             Activision     0.21
## 4556     PS3 2010       Action             Disney Interactive Studios     0.27
## 4557      XB 2003         Misc                           Midway Games     0.33
## 4558      DS 2009      Shooter                             Activision     0.37
## 4559     Wii 2007   Simulation                                Ubisoft     0.39
## 4560      DS 2011       Action                                Ubisoft     0.24
## 4561     PS2 2009       Action                             Activision     0.21
## 4562      PS 1997       Sports                            989 Studios     0.24
## 4563     PS4 2014       Action                             Activision     0.18
## 4564     PS2 2005         Misc                                   Sega     0.21
## 4565     PSP 2007       Action             Disney Interactive Studios     0.15
## 4566     PSP 2006       Racing                                    THQ     0.11
## 4567      DS 2006       Action                            D3Publisher     0.39
## 4568     SAT 1997 Role-Playing                                   Sega     0.00
## 4569     PSP 2011     Strategy                              Banpresto     0.00
## 4570      GC 2002       Sports                        Electronic Arts     0.33
## 4571      DS 2009       Action                            D3Publisher     0.22
## 4572     PSP 2009       Action                            D3Publisher     0.13
## 4573      DS 2008 Role-Playing                            Square Enix     0.23
## 4574     PS2 2007     Platform                          Vivendi Games     0.21
## 4575     GBA 2001 Role-Playing                                 Capcom     0.14
## 4576     PS3 2009         Misc Warner Bros. Interactive Entertainment     0.24
## 4577     PS2 2006      Shooter                      Eidos Interactive     0.35
## 4578     PS2 2005       Sports                   Take-Two Interactive     0.21
## 4579      GC 2003      Shooter                        Electronic Arts     0.33
## 4580      XB 2003   Simulation                        Electronic Arts     0.31
## 4581    X360 2009         Misc                             Activision     0.23
## 4582     PS2 2003    Adventure            Sony Computer Entertainment     0.21
## 4583      PS 1999    Adventure            Sony Computer Entertainment     0.24
## 4584    SNES 1991       Action                     Namco Bandai Games     0.00
## 4585      PS 1998       Action                              Psygnosis     0.24
## 4586     3DS 2013 Role-Playing                      Rising Star Games     0.22
## 4587      GC 2005       Sports                             Activision     0.33
## 4588    X360 2011       Sports                   Take-Two Interactive     0.15
## 4589     GBA 2004     Platform                               Nintendo     0.00
## 4590      DS 2008     Platform                          Vivendi Games     0.39
## 4591     Wii 2007      Shooter                        Electronic Arts     0.34
## 4592     PSP 2007     Strategy           Konami Digital Entertainment     0.03
## 4593      PS 1997   Simulation                              Psygnosis     0.24
## 4594     PS2 2003       Sports                  Acclaim Entertainment     0.21
## 4595      PS 2003       Sports                           Gotham Games     0.23
## 4596     PSV 2012 Role-Playing                                 GungHo     0.22
## 4597      DS 2010       Action                        Electronic Arts     0.20
## 4598      DS 2006   Simulation                                Ubisoft     0.38
## 4599      DS 2009       Action                                    THQ     0.42
## 4600      PS 2001       Racing                        Electronic Arts     0.23
## 4601     SAT 1997 Role-Playing                                    ESP     0.00
## 4602      XB 2004       Sports                            Global Star     0.32
## 4603     GBA 2005         Misc           Konami Digital Entertainment     0.30
## 4604     PS2 2003       Racing                                    THQ     0.21
## 4605     PS2 2007       Action                                    THQ     0.21
## 4606     PS2 2002       Action                                  Atari     0.21
## 4607     Wii 2007     Platform                                   Sega     0.33
## 4608     PS2 2004       Racing                 Zoo Digital Publishing     0.35
## 4609    X360 2010      Shooter                                   Sega     0.19
## 4610     GBA 2004       Action                                Ubisoft     0.30
## 4611      DS 2009     Fighting                                    THQ     0.37
## 4612     GBA 2004     Platform                             Activision     0.30
## 4613      PS 1998       Racing                                    TYO     0.23
## 4614     PSP 2005       Sports                        Electronic Arts     0.39
## 4615      PS 1999 Role-Playing            Sony Computer Entertainment     0.00
## 4616      DS 2007         Misc                              Telegames     0.39
## 4617     PSP 2008     Fighting                     Namco Bandai Games     0.00
## 4618      XB 2002       Racing                                  Atari     0.35
## 4619     PS2 2004       Sports           Konami Digital Entertainment     0.00
## 4620      DS 2010    Adventure                                 Capcom     0.20
## 4621     PS2 2003       Action                                    THQ     0.21
## 4622     N64 1998       Racing                           Midway Games     0.35
## 4623     N64 2000       Sports                           Midway Games     0.34
## 4624     N64 2001       Puzzle                               Nintendo     0.34
## 4625     N64 1999       Sports           Konami Digital Entertainment     0.00
## 4626     N64 2000      Shooter                                    3DO     0.34
## 4627      GC 2004      Shooter                        Electronic Arts     0.32
## 4628     PS3 2010         Misc                              MTV Games     0.19
## 4629     PS4 2015       Action                     Bethesda Softworks     0.09
## 4630     PS2 2008       Sports            Sony Computer Entertainment     0.35
## 4631    XOne 2014       Action             Disney Interactive Studios     0.24
## 4632      XB 2004   Simulation           Konami Digital Entertainment     0.32
## 4633      GC 2004     Platform                                 Capcom     0.32
## 4634    X360 2006   Simulation                                Ubisoft     0.36
## 4635    SNES 1995       Sports                     Namco Bandai Games     0.00
## 4636     GBA 2004         Misc                  Majesco Entertainment     0.30
## 4637     PS2 2008       Sports                             Activision     0.21
## 4638      DS 2010         Misc                     Namco Bandai Games     0.00
## 4639      GC 2005       Action                        Electronic Arts     0.32
## 4640     Wii 2009    Adventure                    Knowledge Adventure     0.39
## 4641     PS2 2007     Strategy                              LucasArts     0.20
## 4642      DS 2009   Simulation                                Ubisoft     0.35
## 4643    X360 2005       Action                                   Sega     0.36
## 4644      PS 2001       Action                                 Capcom     0.14
## 4645     Wii 2008       Racing                             Activision     0.39
## 4646     PS2 2002      Shooter                  Universal Interactive     0.20
## 4647      GC 2005       Puzzle                                   Sega     0.32
## 4648     PS2 2005       Action           Konami Digital Entertainment     0.18
## 4649     PS3 2010       Action                                Ubisoft     0.21
## 4650      DS 2008   Simulation                      Rising Star Games     0.22
## 4651      PS 1998       Sports           Konami Digital Entertainment     0.02
## 4652     GBA 2001     Platform                                    THQ     0.30
## 4653      XB 2006      Shooter                        Electronic Arts     0.31
## 4654     Wii 2007    Adventure                               Nintendo     0.18
## 4655      XB 2006       Action                                    THQ     0.31
## 4656     PSP 2009       Action                              LucasArts     0.21
## 4657     PSP 2010       Action                   Take-Two Interactive     0.39
## 4658    WiiU 2015         Misc                               Nintendo     0.19
## 4659     3DS 2016       Action                               Nintendo     0.16
## 4660     PS3 2010       Action                        Electronic Arts     0.13
## 4661     Wii 2011       Sports                     Namco Bandai Games     0.16
## 4662     PS3 2011     Fighting                                    THQ     0.16
## 4663      XB 2004 Role-Playing                        Electronic Arts     0.31
## 4664     PSP 2010       Sports                                   Sega     0.00
## 4665     PS2 2007       Action             Disney Interactive Studios     0.20
## 4666      PS 2000    Adventure                                 Capcom     0.17
## 4667      PS 1997     Fighting                                 Capcom     0.16
## 4668     PS2 2004         Misc                   Mud Duck Productions     0.20
## 4669     PSP 2007     Platform           Konami Digital Entertainment     0.22
## 4670     PS2 2004       Action                           Midway Games     0.20
## 4671     SAT 1995     Fighting                                   Sega     0.00
## 4672     PS3 2009       Puzzle                     Namco Bandai Games     0.26
## 4673      XB 2001   Simulation                              LucasArts     0.30
## 4674    X360 2007      Shooter                          Vivendi Games     0.36
## 4675     PS2 2003       Sports                  Acclaim Entertainment     0.20
## 4676     PS2 2003   Simulation           Konami Digital Entertainment     0.15
## 4677      DS 2009       Action                                  Atari     0.26
## 4678     3DS 2013       Action                             Screenlife     0.00
## 4679     PS2 2003         Misc            Sony Computer Entertainment     0.20
## 4680     GBA 2001    Adventure                     BAM! Entertainment     0.30
## 4681     PS2 2003       Sports            Sony Computer Entertainment     0.20
## 4682     GBA 2001    Adventure                                Ubisoft     0.30
## 4683     PSV 2013         Misc                   Nippon Ichi Software     0.14
## 4684      XB 2002     Fighting                                Unknown     0.02
## 4685      PC 1998       Action                      Eidos Interactive     0.41
## 4686     PS2 2010       Sports           Konami Digital Entertainment     0.04
## 4687      DC 1999       Racing                                   Sega     0.00
## 4688      PS 1998      Shooter                             Activision     0.23
## 4689     PS2 2007       Action                          Vivendi Games     0.34
## 4690      PC 2007      Shooter                   Take-Two Interactive     0.01
## 4691     PS3 2007       Racing                                    THQ     0.37
## 4692     PS2 2010       Sports            Sony Computer Entertainment     0.20
## 4693      PS 2000         Misc                     Hasbro Interactive     0.23
## 4694      XB 2005      Shooter                                Ubisoft     0.26
## 4695     PSP 2009     Fighting                     Namco Bandai Games     0.00
## 4696      PS 2000       Sports            Sony Computer Entertainment     0.23
## 4697      PS 1999       Action                   Take-Two Interactive     0.23
## 4698      PS 2000       Sports           Konami Digital Entertainment     0.00
## 4699     PS3 2015      Shooter                             Activision     0.16
## 4700     SAT 1995       Action                     Namco Bandai Games     0.00
## 4701    X360 2012       Action                        Electronic Arts     0.28
## 4702     PSP 2009      Shooter                             Activision     0.17
## 4703    X360 2014      Shooter                     Bethesda Softworks     0.18
## 4704      DS 2009    Adventure                                    THQ     0.15
## 4705    X360 2015   Simulation                             Koch Media     0.21
## 4706     PS2 2002     Platform                                    THQ     0.20
## 4707      DS 2007         Misc                            Square Enix     0.00
## 4708      DS 2008     Platform           Konami Digital Entertainment     0.31
## 4709     PS3 2010     Fighting                                  PQube     0.21
## 4710     PS2 2006       Action                             Activision     0.20
## 4711     PSP 2007       Action Warner Bros. Interactive Entertainment     0.27
## 4712     SAT 1996    Adventure                                   Sega     0.00
## 4713     PS2 2005    Adventure                                    THQ     0.34
## 4714     Wii 2009         Misc                                Ubisoft     0.28
## 4715     Wii 2009   Simulation                        Electronic Arts     0.36
## 4716     PS3 2012       Action                        Electronic Arts     0.37
## 4717      PS 1996       Racing                            Pioneer LDC     0.23
## 4718     PSV 2015       Action Warner Bros. Interactive Entertainment     0.09
## 4719     Wii 2009         Misc                            Hudson Soft     0.00
## 4720     PSP 2009       Action                                    THQ     0.24
## 4721    X360 2008       Action                             Activision     0.36
## 4722     PS2 2002    Adventure            Sony Computer Entertainment     0.00
## 4723     Wii 2011         Misc                                    THQ     0.36
## 4724     PSP 2009       Racing                                    THQ     0.29
## 4725    X360 2011   Simulation                                    THQ     0.30
## 4726      PS 1997     Strategy                     Virgin Interactive     0.23
## 4727      DS 2009       Action                              LucasArts     0.23
## 4728     NES 1985       Puzzle                     Namco Bandai Games     0.00
## 4729     N64 1999 Role-Playing                               Nintendo     0.10
## 4730     N64 1999       Action                                  Titus     0.33
## 4731     PS3 2008       Sports                        Electronic Arts     0.08
## 4732     PS2 2002       Action                                  Atari     0.20
## 4733     PSV 2014       Action Warner Bros. Interactive Entertainment     0.05
## 4734     PS2 2007 Role-Playing            Sony Computer Entertainment     0.20
## 4735      PS 1997   Simulation            Sony Computer Entertainment     0.13
## 4736     Wii 2009       Racing                              Zoo Games     0.39
## 4737     Wii 2008       Sports                                    RTL     0.18
## 4738    X360 2010         Misc                              MTV Games     0.24
## 4739      PS 1999   Simulation                                  Taito     0.00
## 4740     PS3 2012       Action                             Activision     0.19
## 4741      PC 2014      Shooter                             Activision     0.14
## 4742     Wii 2011         Misc                                    THQ     0.26
## 4743     PS3 2010         Misc                        Electronic Arts     0.16
## 4744     PS2 2009         Misc                             Activision     0.15
## 4745    WiiU 2013       Action                               Nintendo     0.20
## 4746     Wii 2010       Action                      Rising Star Games     0.21
## 4747    X360 2006      Shooter                        Electronic Arts     0.35
## 4748     PS2 2001   Simulation                               Metro 3D     0.11
## 4749     PS2 2006         Misc            Sony Computer Entertainment     0.20
## 4750      GC 2002     Fighting                           Midway Games     0.31
## 4751     Wii 2006 Role-Playing                             Activision     0.37
## 4752     PS2 2010       Action                   Take-Two Interactive     0.34
## 4753     PSP 2010         Misc                     Namco Bandai Games     0.00
## 4754      PS 1996         Misc                     Empire Interactive     0.23
## 4755      PS 1998       Sports                        Magical Company     0.15
## 4756     PS2 2008       Sports                   Take-Two Interactive     0.34
## 4757     GBA 2001         Misc           Konami Digital Entertainment     0.00
## 4758     Wii 2008       Racing Warner Bros. Interactive Entertainment     0.36
## 4759    X360 2010       Action                              505 Games     0.21
## 4760     Wii 2008   Simulation                        Electronic Arts     0.34
## 4761     PS3 2008     Fighting                           Midway Games     0.22
## 4762    X360 2011         Misc                                Ubisoft     0.29
## 4763      PC 2011      Shooter                   Take-Two Interactive     0.18
## 4764     PSP 2010         Misc                                   Sega     0.00
## 4765     PS2 2009 Role-Playing                             Activision     0.23
## 4766    SNES 1995       Puzzle                               Nintendo     0.00
## 4767     PS2 2005     Platform                           Midway Games     0.34
## 4768    SNES 1994       Sports           Konami Digital Entertainment     0.00
## 4769     PS2 2001     Platform                                Ubisoft     0.20
## 4770    XOne 2015      Shooter                   Take-Two Interactive     0.24
## 4771    X360 2011      Shooter                 Microsoft Game Studios     0.26
## 4772      PS 2000     Fighting                        Electronic Arts     0.23
## 4773     PS2 2005       Action                        Electronic Arts     0.34
## 4774      PC 2012       Action                        Electronic Arts     0.02
## 4775     PS3 2012       Action                                 Capcom     0.18
## 4776      DS 2009       Action                                Ubisoft     0.19
## 4777      DS 2009         Misc                     Mentor Interactive     0.38
## 4778     PS2 2002       Action                             Activision     0.20
## 4779      PS 2003         Misc            Sony Computer Entertainment     0.23
## 4780      PS 2001       Sports            Sony Computer Entertainment     0.23
## 4781    2600 1983    Adventure                                  Atari     0.38
## 4782     PS3 2008         Misc             Disney Interactive Studios     0.08
## 4783     3DS 2014   Simulation                               Nintendo     0.00
## 4784    X360 2007       Action                                Ubisoft     0.36
## 4785    2600 1981       Action                                 Coleco     0.38
## 4786     Wii 2010       Action                                   Sega     0.17
## 4787     PSV 2014         Misc                                   Sega     0.13
## 4788    X360 2007     Strategy                            Codemasters     0.34
## 4789      GC 2003     Platform                                    THQ     0.31
## 4790     PS3 2007       Action                             Activision     0.32
## 4791     PS3 2008       Sports                                   Sega     0.13
## 4792     3DS 2011       Action Warner Bros. Interactive Entertainment     0.18
## 4793    WiiU 2013 Role-Playing                            Square Enix     0.00
## 4794     PS3 2008     Platform                                    THQ     0.12
## 4795      GB 1997 Role-Playing                              Imagineer     0.00
## 4796     PS2 2009       Sports                   Take-Two Interactive     0.33
## 4797     PS2 2002         Misc                           Midway Games     0.20
## 4798     GBA 2002       Action                                Unknown     0.02
## 4799     Wii 2012       Action                             Activision     0.38
## 4800     Wii 2009         Misc                     Namco Bandai Games     0.00
## 4801     PS3 2014       Action                            Square Enix     0.10
## 4802    2600 1982       Action                                   Sega     0.37
## 4803     PS2 2005 Role-Playing                           Midway Games     0.20
## 4804      GC 2003       Sports                        Electronic Arts     0.31
## 4805      DS 2005     Strategy                               Nintendo     0.30
## 4806      DS 2009       Action           Konami Digital Entertainment     0.27
## 4807     PS2 2008       Action                             Tecmo Koei     0.00
## 4808     PSP 2005     Fighting                                    THQ     0.36
## 4809     PS2 2008       Action             Disney Interactive Studios     0.20
## 4810     GBA 2005       Action                                    THQ     0.29
## 4811      PS 1997     Strategy            Sony Computer Entertainment     0.00
## 4812      GC 2005     Strategy                               Nintendo     0.25
## 4813      PS 1999       Sports                            989 Studios     0.22
## 4814      GC 2004       Action                                    THQ     0.31
## 4815    XOne 2014         Misc                                Ubisoft     0.29
## 4816    SNES 1994     Fighting                                 Takara     0.00
## 4817    XOne 2014       Sports                        Electronic Arts     0.31
## 4818     Wii 2007       Action                                Ubisoft     0.34
## 4819     Wii 2009       Action                            Square Enix     0.22
## 4820     PS3 2009       Sports                       Activision Value     0.37
## 4821    XOne 2016       Sports                        Electronic Arts     0.23
## 4822     SAT 1995     Fighting                                   Sega     0.00
## 4823      PS 1999       Sports                            989 Studios     0.22
## 4824     PS3 2010       Action                                   Sega     0.14
## 4825     PS2 2008     Platform                          Vivendi Games     0.12
## 4826     PSP 2011         Misc                     Namco Bandai Games     0.00
## 4827     N64 1999       Racing                               Nintendo     0.32
## 4828     N64 1997       Racing                                  Kemco     0.32
## 4829     N64 1999       Sports                  Acclaim Entertainment     0.37
## 4830     N64 1997     Fighting                           Midway Games     0.32
## 4831     PS2 2001       Racing                  Acclaim Entertainment     0.20
## 4832     PS2 2004         Misc                                  Atari     0.33
## 4833      PS 1999     Platform                             Infogrames     0.22
## 4834    X360 2010       Sports                        Electronic Arts     0.27
## 4835      DS 2009    Adventure                 Focus Home Interactive     0.06
## 4836     PS2 2007       Racing                             Activision     0.20
## 4837     PS2 2005       Sports            Sony Computer Entertainment     0.33
## 4838    X360 2009       Action                              LucasArts     0.18
## 4839     PS2 2007       Sports                              505 Games     0.20
## 4840      PC 2010       Action                   Take-Two Interactive     0.17
## 4841     GBA 2001       Action                                    THQ     0.29
## 4842     Wii 2009       Action                                    THQ     0.38
## 4843      XB 2005       Racing                                    THQ     0.32
## 4844      GC 2006       Action                           Midway Games     0.31
## 4845      DS 2009       Action                                   Sega     0.22
## 4846      GC 2004   Simulation                        Electronic Arts     0.24
## 4847      PS 1999       Racing                        Electronic Arts     0.22
## 4848     GBA 2006 Role-Playing                               Nintendo     0.00
## 4849     GBA 2004       Action                                    THQ     0.29
## 4850      DS 2007       Puzzle                      Eidos Interactive     0.34
## 4851    X360 2010       Sports                             Activision     0.32
## 4852    X360 2009     Fighting                                    THQ     0.20
## 4853    WiiU 2014       Sports                               Nintendo     0.19
## 4854    X360 2007       Action                      Eidos Interactive     0.12
## 4855      PS 1999         Misc                          Vivendi Games     0.22
## 4856    SNES 1995 Role-Playing                               ChunSoft     0.00
## 4857    WiiU 2013     Platform                                   Sega     0.24
## 4858     PS3 2008       Action                                   Sega     0.17
## 4859      DS 1989 Role-Playing                                Unknown     0.02
## 4860      GC 2002      Shooter                             Activision     0.31
## 4861      XB 2001       Sports                        Electronic Arts     0.35
## 4862      PS 2000    Adventure            Sony Computer Entertainment     0.00
## 4863     PS3 2012   Simulation                     Namco Bandai Games     0.09
## 4864     PS2 2003     Platform            Sony Computer Entertainment     0.19
## 4865      PS 1996     Strategy                     Virgin Interactive     0.22
## 4866      XB 2004     Fighting                                Unknown     0.02
## 4867     PS3 2010       Sports                        Electronic Arts     0.22
## 4868      PC 2010 Role-Playing                        Electronic Arts     0.01
## 4869     PS2 2004     Strategy                     Namco Bandai Games     0.00
## 4870      GC 2004      Shooter                             Activision     0.31
## 4871      DS 2010       Action Warner Bros. Interactive Entertainment     0.26
## 4872      DS 2007 Role-Playing                            D3Publisher     0.37
## 4873    X360 2015    Adventure                            Square Enix     0.17
## 4874    X360 2006       Action                      Eidos Interactive     0.29
## 4875    SNES 1995 Role-Playing                     Namco Bandai Games     0.00
## 4876    X360 2010 Role-Playing                                   Sega     0.23
## 4877     PS2 2005       Racing                     Jester Interactive     0.33
## 4878     PS2 2004     Fighting           Konami Digital Entertainment     0.19
## 4879     PS3 2013         Misc                                Ubisoft     0.17
## 4880     PS2 2007       Action                   Take-Two Interactive     0.19
## 4881      XB 2005       Action                             Activision     0.26
## 4882     PS3 2013       Racing                            Codemasters     0.07
## 4883     3DS 2012       Action Warner Bros. Interactive Entertainment     0.19
## 4884     PS2 2007       Racing                                    THQ     0.19
## 4885     PS3 2015       Action                             Activision     0.15
## 4886     N64 1998       Sports                        Electronic Arts     0.38
## 4887     Wii 2009       Sports                   Take-Two Interactive     0.36
## 4888     PS3 2011 Role-Playing                            Square Enix     0.17
## 4889     PS3 2008       Action                                   Sega     0.14
## 4890     Wii 2007       Sports                              505 Games     0.36
## 4891      DS 2008       Racing                             Activision     0.37
## 4892     PSP 2011 Role-Playing                                Level 5     0.00
## 4893      PS 2000       Racing                     Hasbro Interactive     0.22
## 4894      PS 1997     Fighting                     Virgin Interactive     0.22
## 4895    2600 1982       Racing                     Mattel Interactive     0.37
## 4896     PS2 2002      Shooter                     Namco Bandai Games     0.00
## 4897     GBA 2003       Action                                    THQ     0.28
## 4898     Wii 2008     Fighting                       Tomy Corporation     0.34
## 4899     PS2 2008       Sports                        Electronic Arts     0.32
## 4900     PSP 2011       Action                              LucasArts     0.14
## 4901      XB 2002      Shooter                                   Sega     0.29
## 4902     Wii 2008 Role-Playing                      Rising Star Games     0.18
## 4903     GBA 2002 Role-Playing                               Nintendo     0.00
## 4904     PSP 2009       Action                                    THQ     0.39
## 4905     3DS 2011       Sports                        Electronic Arts     0.08
## 4906      DS 2008       Sports                                Ubisoft     0.36
## 4907    X360 2012      Shooter                   Take-Two Interactive     0.24
## 4908     PSP 2008       Sports                        Electronic Arts     0.23
## 4909    2600 1981       Action                             Activision     0.37
## 4910      DS 2008         Misc                             Activision     0.36
## 4911     PSP 2006     Platform            Sony Computer Entertainment     0.14
## 4912      PS 1998       Sports                   Take-Two Interactive     0.22
## 4913      DS 2008         Misc                                    THQ     0.36
## 4914      GC 2004         Misc                               Nintendo     0.30
## 4915     PS4 2013         Misc                                Ubisoft     0.18
## 4916     PS3 2013    Adventure           Konami Digital Entertainment     0.31
## 4917      PS 2001 Role-Playing                             Enterbrain     0.00
## 4918     3DS 2012 Role-Playing                     Namco Bandai Games     0.18
## 4919    X360 2011      Shooter                                    THQ     0.18
## 4920     PSV 2012       Racing            Sony Computer Entertainment     0.14
## 4921      DS 2009       Racing                        Electronic Arts     0.22
## 4922     Wii 2011    Adventure                               Nintendo     0.19
## 4923      DS 2005     Platform                               Nintendo     0.34
## 4924    X360 2010       Sports                        Electronic Arts     0.18
## 4925     3DS 2011     Strategy                                Ubisoft     0.25
## 4926     Wii 2011         Misc                     Namco Bandai Games     0.00
## 4927      PC 2005     Strategy                 Microsoft Game Studios     0.00
## 4928      XB 2003       Sports                        Electronic Arts     0.29
## 4929     PS3 2015       Sports            Sony Computer Entertainment     0.30
## 4930     GBA 2004       Sports                        Electronic Arts     0.28
## 4931     N64 1999       Sports                  Acclaim Entertainment     0.36
## 4932     N64 2000     Fighting                               Nintendo     0.00
## 4933     N64 1998       Racing                  Acclaim Entertainment     0.31
## 4934     N64 1999       Action                                    3DO     0.31
## 4935     Wii 2013   Simulation                       City Interactive     0.02
## 4936      GC 2005    Adventure                               Nintendo     0.23
## 4937      PC 2009   Simulation                                Ubisoft     0.00
## 4938     PS2 2003         Misc            Sony Computer Entertainment     0.19
## 4939     Wii 2008         Misc                             Activision     0.36
## 4940     PS2 2000     Fighting                                Ubisoft     0.16
## 4941     PS2 2002       Action                      Eidos Interactive     0.19
## 4942     Wii 2010         Misc Warner Bros. Interactive Entertainment     0.37
## 4943    WiiU 2012       Action                             Activision     0.23
## 4944    WiiU 2012         Misc                                Ubisoft     0.22
## 4945    SNES 1991     Fighting                    Human Entertainment     0.00
## 4946     PS2 2005       Sports                             Activision     0.19
## 4947     PS3 2006 Role-Playing                             Activision     0.33
## 4948      DS 2009    Adventure                                    THQ     0.24
## 4949     PS3 2008       Racing                                 Capcom     0.07
## 4950     Wii 2008   Simulation                                Ubisoft     0.34
## 4951     PS2 2003         Misc                                Ubisoft     0.19
## 4952     PS3 2013       Sports                        Electronic Arts     0.16
## 4953    SNES 1992     Fighting                                 Takara     0.00
## 4954    X360 2013   Simulation                 Focus Home Interactive     0.22
## 4955      GB 2001 Role-Playing                              Banpresto     0.00
## 4956     Wii 2007    Adventure                                Ubisoft     0.35
## 4957     3DS 2011       Sports                        Electronic Arts     0.36
## 4958     GBA 2005   Simulation                        Electronic Arts     0.28
## 4959     PS2 2006     Platform                          Vivendi Games     0.19
## 4960     PS3 2014       Sports    Sony Computer Entertainment America     0.35
## 4961    SNES 1994       Sports                     Namco Bandai Games     0.00
## 4962     PS2 2002       Racing                                 Capcom     0.19
## 4963      XB 2005      Shooter                                Ubisoft     0.29
## 4964      DS 2009         Misc                              Avanquest     0.26
## 4965     Wii 2009       Sports                              505 Games     0.36
## 4966     PS2 2007       Sports                        Electronic Arts     0.19
## 4967     PS2 2008         Misc           Konami Digital Entertainment     0.19
## 4968    2600 1981       Action                               Data Age     0.36
## 4969      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 4970     3DS 2011       Action                             Tecmo Koei     0.12
## 4971    X360 2006       Action                      Eidos Interactive     0.27
## 4972      DS 2009       Action                             Activision     0.20
## 4973     Wii 2009         Misc                           Nordic Games     0.00
## 4974     GBA 2003       Sports                        Electronic Arts     0.28
## 4975      DS 2007         Misc                                Ubisoft     0.38
## 4976     PS4 2015       Action                            Deep Silver     0.13
## 4977     PS2 2003       Action                                    THQ     0.19
## 4978     3DS 2013       Action                     Namco Bandai Games     0.05
## 4979      DS 2008 Role-Playing                                   Sega     0.16
## 4980      PS 1996       Sports                 Electronic Arts Victor     0.21
## 4981     PS3 2009       Sports                                   Sega     0.09
## 4982    SNES 1991       Sports                               Nintendo     0.00
## 4983     PS2 2003 Role-Playing                             Ghostlight     0.07
## 4984      GB 1998     Platform                               Nintendo     0.00
## 4985      PS 1997       Racing                         GT Interactive     0.21
## 4986     PSV 2013 Role-Playing                   Nippon Ichi Software     0.16
## 4987      PS 1998       Racing                    Human Entertainment     0.00
## 4988      DS 2009   Simulation                                Ubisoft     0.24
## 4989      XB 2004       Sports                                   Sega     0.29
## 4990     PS2 2007       Action Warner Bros. Interactive Entertainment     0.19
## 4991     Wii 2008       Sports                       Activision Value     0.36
## 4992     Wii 2009 Role-Playing                      Rising Star Games     0.17
## 4993     PS2 2007     Strategy                     Namco Bandai Games     0.00
## 4994    WiiU 2012       Action Warner Bros. Interactive Entertainment     0.17
## 4995     PS3 2008         Misc             Disney Interactive Studios     0.27
## 4996     Wii 2009         Misc                               Pinnacle     0.00
## 4997     PSV 2015 Role-Playing                     Namco Bandai Games     0.00
## 4998     PS3 2010       Sports                       Black Bean Games     0.15
## 4999     GBA 2005     Platform                      Jack of All Games     0.27
## 5000     PSP 2009     Fighting                     Namco Bandai Games     0.13
## 5001     PS2 2001       Sports            Sony Computer Entertainment     0.19
## 5002      GC 2002      Shooter                  Acclaim Entertainment     0.30
## 5003    X360 2015      Shooter                             Activision     0.22
## 5004      DS 2007   Simulation                                  Atari     0.07
## 5005     PS2 2002     Strategy                     Namco Bandai Games     0.00
## 5006     GBA 2002       Action                                Ubisoft     0.27
## 5007     PS2 2008       Sports                                   Sega     0.10
## 5008     PS2 2002       Action                                   Sega     0.19
## 5009     PS3 2007       Sports                        Electronic Arts     0.29
## 5010     SAT 1995 Role-Playing                                  Atlus     0.00
## 5011     3DS 2011     Platform                                Ubisoft     0.11
## 5012     PS3 2007       Sports                        Electronic Arts     0.35
## 5013      GC 2005     Fighting                        Electronic Arts     0.30
## 5014     PS3 2014       Sports                        Electronic Arts     0.21
## 5015      PS 1994       Sports            Sony Computer Entertainment     0.11
## 5016    XOne 2016       Racing                 Microsoft Game Studios     0.15
## 5017     Wii 2009       Action                            Codemasters     0.12
## 5018      PS 1998       Action                      Eidos Interactive     0.21
## 5019      PS 2000     Strategy                     Namco Bandai Games     0.00
## 5020     PS2 2005         Misc                                    THQ     0.19
## 5021     PS2 2004       Racing                     Empire Interactive     0.19
## 5022     3DS 2013    Adventure                                 Capcom     0.00
## 5023      GC 2003       Sports                        Electronic Arts     0.29
## 5024     PS2 2010       Sports                        Electronic Arts     0.19
## 5025     PS4 2015 Role-Playing                     Namco Bandai Games     0.16
## 5026     GBA 2004       Action             Disney Interactive Studios     0.27
## 5027     3DS 2012       Action           Konami Digital Entertainment     0.15
## 5028     PS2 2003     Strategy                                  Atari     0.19
## 5029      DS 2006         Misc                               Nintendo     0.31
## 5030     PS3 2006       Sports                   Take-Two Interactive     0.30
## 5031      PS 1996       Action                     Namco Bandai Games     0.00
## 5032     PS2 2002 Role-Playing                       Enix Corporation     0.07
## 5033     PS2 2000      Shooter           Konami Digital Entertainment     0.19
## 5034      GB 1991 Role-Playing                             SquareSoft     0.00
## 5035     Wii 2009       Sports                                   Sega     0.13
## 5036     PS2 2008     Platform                   Take-Two Interactive     0.19
## 5037     PS2 2008       Action                                   Sega     0.32
## 5038     PS2 2008      Shooter                        Electronic Arts     0.21
## 5039     Wii 2011       Sports                             Activision     0.34
## 5040     PS3 2010     Fighting                        Electronic Arts     0.16
## 5041     PSP 2010       Action                                   Sega     0.18
## 5042     Wii 2009       Racing                            Codemasters     0.11
## 5043     SAT 1996   Simulation           Konami Digital Entertainment     0.00
## 5044      PS 1999       Action            Sony Computer Entertainment     0.21
## 5045      DS 2009         Misc                             Activision     0.13
## 5046      XB 2002       Action                              Interplay     0.28
## 5047     PS2 2007       Racing                                    THQ     0.32
## 5048      PS 1998       Racing                         GT Interactive     0.21
## 5049    SNES 1995     Strategy                              Banpresto     0.00
## 5050     PSP 2007       Sports                        Electronic Arts     0.14
## 5051      GC 2003    Adventure                               Nintendo     0.24
## 5052     PSP 2011         Misc                     Namco Bandai Games     0.00
## 5053     3DS 2012 Role-Playing                                  Atlus     0.12
## 5054      PS 2000       Racing            Sony Computer Entertainment     0.21
## 5055      PS 1999       Sports                             989 Sports     0.21
## 5056    WiiU 2012       Action Warner Bros. Interactive Entertainment     0.26
## 5057     PS3 2016       Sports                        Electronic Arts     0.02
## 5058      PC 2011       Action                                    THQ     0.16
## 5059     PS4 2014         Misc                                Ubisoft     0.19
## 5060     PS2 2008       Action                             Activision     0.12
## 5061     Wii 2010   Simulation                             Activision     0.32
## 5062      PC 1999     Strategy                             Microprose     0.02
## 5063      DS 2008   Simulation                                Ubisoft     0.35
## 5064     Wii 2010         Misc                              MTV Games     0.22
## 5065    2600 1982       Action                                  Atari     0.35
## 5066      DS 2010       Racing                             Activision     0.35
## 5067     PSV 2013       Action                             Tecmo Koei     0.05
## 5068     PS2 2004         Misc            Sony Computer Entertainment     0.18
## 5069      XB 2005   Simulation           Konami Digital Entertainment     0.28
## 5070     PS3 2014     Fighting                     Namco Bandai Games     0.00
## 5071     PS2 2010     Fighting                                    THQ     0.24
## 5072      PC 2010       Racing                        Electronic Arts     0.12
## 5073      DS 2006     Platform                          Vivendi Games     0.34
## 5074     3DS 2011       Sports           Konami Digital Entertainment     0.11
## 5075     3DS 2011 Role-Playing                             Ghostlight     0.28
## 5076      DS 2009 Role-Playing                     Namco Bandai Games     0.13
## 5077     Wii 2009     Fighting                                    THQ     0.31
## 5078     PS3 2011      Shooter                                   Sega     0.15
## 5079      PC 2019       Racing                            Codemasters     0.00
## 5080      GC 2004       Action                        Electronic Arts     0.29
## 5081    X360 2005      Shooter                             Activision     0.32
## 5082      DS 2008    Adventure                                Ubisoft     0.35
## 5083    2600 1986      Shooter                                  Atari     0.35
## 5084      DS 2008   Simulation                                Ubisoft     0.35
## 5085     PS2 2006     Fighting                                  Atari     0.09
## 5086      DS 2009   Simulation                                    THQ     0.35
## 5087    WiiU 2012       Sports                                Ubisoft     0.21
## 5088     PS3 2014      Shooter                                   Sega     0.12
## 5089      DS 2008     Fighting                            Takara Tomy     0.19
## 5090     PS3 2009       Action           Konami Digital Entertainment     0.13
## 5091      DS 2007     Platform                          Vivendi Games     0.32
## 5092      PS 1997     Fighting                             SquareSoft     0.00
## 5093      DS 2010       Action                        Scholastic Inc.     0.35
## 5094    X360 2009         Misc                        Electronic Arts     0.12
## 5095     PS2 2008       Sports                        Electronic Arts     0.16
## 5096      GC 2005       Action                             Activision     0.29
## 5097     PS4 2016    Adventure                            Square Enix     0.14
## 5098    X360 2007 Role-Playing                 Microsoft Game Studios     0.18
## 5099      XB 2002       Sports                 Microsoft Game Studios     0.28
## 5100     Wii 2007       Sports                   Take-Two Interactive     0.34
## 5101    X360 2006       Sports                                  Spike     0.34
## 5102      PS 1994      Shooter            Sony Computer Entertainment     0.08
## 5103     PS2 2006   Simulation                                Ubisoft     0.18
## 5104     Wii 2009       Action                      Eidos Interactive     0.17
## 5105      PC 2016      Shooter                                Ubisoft     0.20
## 5106     PSP 2011 Role-Playing                                   Sega     0.00
## 5107      DS 2008   Simulation                                Ubisoft     0.34
## 5108    XOne 2015       Action Warner Bros. Interactive Entertainment     0.21
## 5109      GC 2002     Platform                                    THQ     0.29
## 5110     PS2 2003       Sports                                Natsume     0.18
## 5111     PS2 2004       Sports                             Activision     0.18
## 5112     PSP 2010       Action                                Ubisoft     0.09
## 5113     PS2 2006       Action                           Midway Games     0.18
## 5114     PS2 2002       Sports                                    3DO     0.18
## 5115     PSP 2010       Sports                        Electronic Arts     0.35
## 5116    SNES 1994       Sports                    Human Entertainment     0.00
## 5117     SAT 1995      Shooter                                   Sega     0.00
## 5118     Wii 2011       Sports                        Electronic Arts     0.21
## 5119      PC 2011      Shooter                     Bethesda Softworks     0.14
## 5120     PS2 2007       Action                             Activision     0.31
## 5121      PS 1998    Adventure            Sony Computer Entertainment     0.00
## 5122    X360 2011 Role-Playing                            Square Enix     0.21
## 5123     PSP 2007       Racing                                    THQ     0.06
## 5124     Wii 2009       Sports                              Destineer     0.35
## 5125     N64 2000 Role-Playing                               ChunSoft     0.00
## 5126     N64 1999      Shooter                  Acclaim Entertainment     0.30
## 5127     N64 2000       Action                                    THQ     0.30
## 5128    2600 1981       Action                                 Imagic     0.35
## 5129      GC 2004 Role-Playing                               Nintendo     0.29
## 5130     PSP 2012       Action                        Electronic Arts     0.05
## 5131     PS3 2009     Strategy                        Electronic Arts     0.14
## 5132     PSP 2007       Action                        Electronic Arts     0.10
## 5133      PC 2008     Strategy                                   Sega     0.00
## 5134      GC 2002       Action                               Nintendo     0.28
## 5135      DS 2007       Puzzle                     Namco Bandai Games     0.00
## 5136     GBA 2003       Sports                    Knowledge Adventure     0.26
## 5137     PS3 2009     Platform                                 Capcom     0.12
## 5138    X360 2009      Shooter Warner Bros. Interactive Entertainment     0.17
## 5139     GBA 2003    Adventure                            Square Enix     0.00
## 5140     PS4 2015       Action                     Bethesda Softworks     0.11
## 5141     PSP 2006 Role-Playing                             Activision     0.33
## 5142     PSP 2005       Sports                        Electronic Arts     0.34
## 5143    SNES 1994     Strategy                              Banpresto     0.00
## 5144     PS2 2006       Sports                        Electronic Arts     0.17
## 5145     N64 1999       Sports           Konami Digital Entertainment     0.37
## 5146     3DS 2014         Misc                            Square Enix     0.13
## 5147      DS 2005   Simulation                               Nintendo     0.30
## 5148    SNES 1994 Role-Playing                                  Atlus     0.00
## 5149     PS2 2006 Role-Playing                     Namco Bandai Games     0.09
## 5150     Wii 2008   Simulation                           Game Factory     0.34
## 5151      PC 2014     Strategy                   Take-Two Interactive     0.11
## 5152      PC 2011       Action                        Electronic Arts     0.09
## 5153      DC 1998     Fighting                                   Sega     0.00
## 5154     PS3 2011       Action                             Activision     0.11
## 5155      GB 1997     Strategy                    ASCII Entertainment     0.00
## 5156     PS4 2013     Platform                             Activision     0.20
## 5157     PSV 2012       Action Warner Bros. Interactive Entertainment     0.17
## 5158     PS4 2015         Misc                 Harmonix Music Systems     0.25
## 5159      PC 2009      Shooter                         Valve Software     0.00
## 5160     PS2 2007   Simulation                        Electronic Arts     0.30
## 5161     PSP 2006       Sports                        Electronic Arts     0.34
## 5162     Wii 2008       Action             Disney Interactive Studios     0.31
## 5163      PS 1998    Adventure                            Hudson Soft     0.00
## 5164      DS 2009       Racing                             Activision     0.25
## 5165      DS 2007       Sports                                  Atari     0.33
## 5166      GC 2004      Shooter                        Electronic Arts     0.28
## 5167    SNES 1994       Sports                            Media Rings     0.00
## 5168     PS2 2008     Fighting                     Namco Bandai Games     0.08
## 5169     SAT 1996    Adventure                                    Elf     0.00
## 5170    X360 2010       Action                                Ubisoft     0.24
## 5171     PS2 2001       Sports           Konami Digital Entertainment     0.18
## 5172     Wii 2007       Puzzle                                 Funsta     0.01
## 5173     PS4 2016       Action                                 Capcom     0.09
## 5174    SNES 1994     Fighting                    Human Entertainment     0.00
## 5175    SNES 1993     Fighting                     Namco Bandai Games     0.00
## 5176     PS2 2002    Adventure                               ChunSoft     0.00
## 5177     PS2 2003       Sports                                    3DO     0.18
## 5178     PS2 2005       Action                          Vivendi Games     0.18
## 5179     PS2 2005      Shooter                           Midway Games     0.18
## 5180      DS 2010     Fighting                     Namco Bandai Games     0.00
## 5181     PSP 2006 Role-Playing                            Square Enix     0.17
## 5182     PSP 2008       Sports                        Electronic Arts     0.07
## 5183    X360 2013       Action                            Deep Silver     0.17
## 5184    X360 2013       Sports                        Electronic Arts     0.21
## 5185     PSP 2008     Platform            Sony Computer Entertainment     0.21
## 5186     PS2 2001   Simulation                             Tecmo Koei     0.11
## 5187     PS2 2005       Action                                    THQ     0.18
## 5188    X360 2010       Action                             Activision     0.24
## 5189    X360 2009     Fighting                                  PQube     0.21
## 5190      PS 1997   Simulation                             Activision     0.20
## 5191     PS3 2013      Shooter                            D3Publisher     0.04
## 5192     GBA 2002       Action                               Nintendo     0.26
## 5193     PS2 2001 Role-Playing            Sony Computer Entertainment     0.14
## 5194     Wii 2009         Misc                                Ubisoft     0.33
## 5195      PS 1997       Action                     Namco Bandai Games     0.00
## 5196      GC 2003       Sports                                Unknown     0.03
## 5197     PS2 2005       Racing                                Unknown     0.00
## 5198      DS 2008       Racing Warner Bros. Interactive Entertainment     0.29
## 5199     Wii 2009       Sports                   Take-Two Interactive     0.33
## 5200    WiiU 2012       Action                                Ubisoft     0.19
## 5201    SNES 1997     Platform                               Nintendo     0.00
## 5202      PS 1997       Sports                               Starfish     0.20
## 5203     PS2 2000       Sports            Sony Computer Entertainment     0.18
## 5204      XB 2005       Action                   Take-Two Interactive     0.27
## 5205     NES 1993       Action                                  Ocean     0.25
## 5206     N64 1997       Action           Konami Digital Entertainment     0.07
## 5207     N64 1997       Puzzle                               Nintendo     0.29
## 5208     N64 2000       Action                                    THQ     0.29
## 5209     PSV 2013     Fighting                Marvelous Entertainment     0.13
## 5210     Wii 2008       Sports                            Zushi Games     0.33
## 5211      PS 2001       Racing                             Activision     0.20
## 5212     PS3 2009         Misc                             Activision     0.20
## 5213     GBA 2001       Sports                             Activision     0.26
## 5214     Wii 2008       Sports                     Bethesda Softworks     0.33
## 5215      XB 2004   Simulation                 Microsoft Game Studios     0.27
## 5216      PC 2014       Action Warner Bros. Interactive Entertainment     0.12
## 5217     GBA 2002   Simulation                                Jorudan     0.00
## 5218    SNES 1994 Role-Playing                                 Laguna     0.00
## 5219    WiiU 2013      Shooter                             Activision     0.23
## 5220      PS 1999       Racing                             LEGO Media     0.20
## 5221     Wii 2011       Sports                   Take-Two Interactive     0.30
## 5222     Wii 2009     Fighting                                Ubisoft     0.33
## 5223    X360 2011         Misc                 Microsoft Game Studios     0.27
## 5224      XB 2003       Sports                                   Sega     0.27
## 5225      DS 2007       Racing              Destination Software, Inc     0.33
## 5226     PS2 2005     Fighting                                  Atari     0.00
## 5227    X360 2015         Misc                                Ubisoft     0.23
## 5228      DS 2007     Strategy                                    THQ     0.07
## 5229     PS2 2004       Sports                 Zoo Digital Publishing     0.18
## 5230     PS2 2004       Sports                                   Sega     0.00
## 5231     PS3 2010       Action                                 Capcom     0.18
## 5232     PS3 2012      Shooter                             Activision     0.11
## 5233     PSP 2012     Strategy                     Namco Bandai Games     0.00
## 5234     Wii 2011     Fighting                                    THQ     0.24
## 5235     PS2 2003     Platform                   Take-Two Interactive     0.18
## 5236     PS2 2003 Role-Playing            Sony Computer Entertainment     0.18
## 5237      PS 2000   Simulation           Konami Digital Entertainment     0.00
## 5238     PS3 2008    Adventure                                   Sega     0.00
## 5239     Wii 2009         Misc                              Mindscape     0.00
## 5240     GBA 2001     Strategy                              Banpresto     0.00
## 5241    X360 2010      Shooter                 Microsoft Game Studios     0.00
## 5242     Wii 2007       Action                 Zoo Digital Publishing     0.33
## 5243      PC 2013     Strategy                                    THQ     0.06
## 5244     PS3 2013      Shooter                           Trion Worlds     0.19
## 5245     Wii 2011         Misc                           Nordic Games     0.00
## 5246      PS 1995     Fighting                                    New     0.00
## 5247    2600 1981       Action                     Mattel Interactive     0.33
## 5248     Wii 2010   Simulation           Konami Digital Entertainment     0.29
## 5249      XB 2002       Action                        Electronic Arts     0.27
## 5250    X360 2010     Fighting                        Electronic Arts     0.23
## 5251     PSP 2011 Role-Playing                     Namco Bandai Games     0.00
## 5252      PS 1998       Racing                  Acclaim Entertainment     0.20
## 5253    SNES 1994     Platform           Konami Digital Entertainment     0.00
## 5254     PS3 2008         Misc                        Electronic Arts     0.25
## 5255      DS 2010     Platform                                 Capcom     0.21
## 5256     PS2 2001       Racing                           Midway Games     0.17
## 5257     PSP 2009       Action                        Electronic Arts     0.24
## 5258     PS2 2009       Sports                   Take-Two Interactive     0.17
## 5259     PSP 2009       Sports                                   Sega     0.00
## 5260      DC 1999       Sports                                   Sega     0.00
## 5261      DS 2008    Adventure                   Take-Two Interactive     0.33
## 5262      PS 1997       Racing                              Psygnosis     0.06
## 5263      XB 2001     Platform                         TDK Mediactive     0.25
## 5264      DS 2009    Adventure                                Ubisoft     0.16
## 5265     PSP 2007      Shooter            Sony Computer Entertainment     0.32
## 5266      PS 1998       Action            Sony Computer Entertainment     0.20
## 5267     Wii 2006   Simulation                               Nintendo     0.28
## 5268     GBA 2005       Sports                                  Atari     0.25
## 5269    XOne 2016 Role-Playing                     Namco Bandai Games     0.23
## 5270     PS2 2005       Sports                 Zoo Digital Publishing     0.17
## 5271      GC 2005    Adventure                                    THQ     0.27
## 5272     PS2 2006 Role-Playing           Konami Digital Entertainment     0.08
## 5273      GB 1996       Puzzle                               Nintendo     0.00
## 5274     PS3 2013       Action                                 Capcom     0.10
## 5275     Wii 2007     Strategy                               Nintendo     0.22
## 5276     PS2 2004       Sports                            Global Star     0.17
## 5277     Wii 2010         Misc                                    THQ     0.25
## 5278     3DS 2013       Action                     Namco Bandai Games     0.00
## 5279     PS3 2010       Sports                                   Sega     0.09
## 5280     PS2 2003         Misc                            Hudson Soft     0.00
## 5281     PS3 2009       Action                      Eidos Interactive     0.14
## 5282    X360 2012     Fighting                     Namco Bandai Games     0.19
## 5283     PS2 2003       Action                                Ubisoft     0.17
## 5284     GBA 2002       Action                             Activision     0.25
## 5285      XB 2003       Sports                 Zoo Digital Publishing     0.26
## 5286    X360 2009      Shooter Warner Bros. Interactive Entertainment     0.13
## 5287     PS2 2006       Sports           Konami Digital Entertainment     0.00
## 5288     3DS 2014 Role-Playing                               Nintendo     0.08
## 5289    WiiU 2016      Shooter                               Nintendo     0.16
## 5290    SNES 1995       Action                                 Laguna     0.04
## 5291      DS 2009       Action                      Eidos Interactive     0.17
## 5292    SNES 1993       Racing                               Nintendo     0.00
## 5293     PS2 2001     Fighting                     Virgin Interactive     0.15
## 5294     PS2 2003       Racing                                    THQ     0.17
## 5295      PS 2000 Role-Playing                                  Atlus     0.03
## 5296     GBA 2003       Action                                    THQ     0.25
## 5297      DS 2011     Fighting                     Namco Bandai Games     0.00
## 5298     PS3 2011     Fighting                     Namco Bandai Games     0.20
## 5299     Wii 2010         Misc           Konami Digital Entertainment     0.31
## 5300      DS 2008   Simulation                        Electronic Arts     0.30
## 5301     Wii 2009    Adventure             Disney Interactive Studios     0.13
## 5302     Wii 2013     Strategy                             Activision     0.21
## 5303     Wii 2010     Fighting                                Unknown     0.03
## 5304      DS 2007     Platform                                 Capcom     0.23
## 5305     N64 2000       Sports           Konami Digital Entertainment     0.00
## 5306     PS3 2013      Shooter                       City Interactive     0.05
## 5307     PS3 2010       Sports                                Ubisoft     0.11
## 5308     Wii 2011       Action                        Electronic Arts     0.18
## 5309    X360 2010     Strategy                            Square Enix     0.23
## 5310     PS2 2003       Action                                 Capcom     0.17
## 5311      GC 2006       Racing                        Electronic Arts     0.27
## 5312     GBA 2003       Action                                    THQ     0.25
## 5313      DS 2005       Action                                    THQ     0.32
## 5314     PS2 2004     Platform                                    THQ     0.17
## 5315      PS 2000       Action                                    THQ     0.19
## 5316      XB 2003         Misc                 Microsoft Game Studios     0.26
## 5317    X360 2011     Fighting                                    THQ     0.18
## 5318     PS3 2010      Shooter            Sony Computer Entertainment     0.13
## 5319     PS2 2007       Sports                   Take-Two Interactive     0.17
## 5320     PS2 2009         Misc                             Activision     0.17
## 5321     PS2 2002     Fighting                      Sammy Corporation     0.09
## 5322    X360 2008       Racing                                 Capcom     0.11
## 5323     PSP 2010     Strategy           Konami Digital Entertainment     0.13
## 5324     PS3 2008      Shooter                             Activision     0.23
## 5325     PS2 2005      Shooter                                Ubisoft     0.17
## 5326      PS 2001 Role-Playing                     Namco Bandai Games     0.00
## 5327     PS2 2008     Platform                    Brash Entertainment     0.17
## 5328     PS2 2002       Sports                  Acclaim Entertainment     0.17
## 5329     PS2 2003         Misc           Konami Digital Entertainment     0.17
## 5330      GC 2004       Sports                        Electronic Arts     0.27
## 5331      DS 2008         Misc                                Nobilis     0.32
## 5332     PS2 2003      Shooter                          Vivendi Games     0.17
## 5333     PS4 2015   Simulation                             Koch Media     0.10
## 5334     PS2 2000       Sports           Konami Digital Entertainment     0.00
## 5335      PS 1998       Racing                            989 Studios     0.19
## 5336     PS2 2000 Role-Playing                                Ubisoft     0.10
## 5337    X360 2007       Action                        Electronic Arts     0.30
## 5338      PS 1999 Role-Playing                        Kadokawa Shoten     0.19
## 5339     SAT 1996     Fighting                                 Capcom     0.00
## 5340     PS2 2002     Platform                                    THQ     0.17
## 5341      DS 2010    Adventure             Disney Interactive Studios     0.18
## 5342     PSP 2006       Sports            Sony Computer Entertainment     0.32
## 5343     PS3 2012       Racing                            Codemasters     0.06
## 5344      GC 2006     Platform                             Activision     0.27
## 5345     PSP 2011     Fighting                     Namco Bandai Games     0.09
## 5346     PS4 2015         Misc                                Ubisoft     0.16
## 5347     PS2 2005    Adventure                            Global Star     0.17
## 5348      DS 2007       Action             Disney Interactive Studios     0.30
## 5349    X360 2008       Sports                        Electronic Arts     0.08
## 5350      PS 1998       Puzzle            Sony Computer Entertainment     0.00
## 5351      DS 2009   Simulation                                Ubisoft     0.32
## 5352     GBA 2005         Misc                 Zoo Digital Publishing     0.25
## 5353     PSP 2011     Strategy                     Namco Bandai Games     0.00
## 5354     PSP 2011       Action             Disney Interactive Studios     0.11
## 5355     GBA 2002     Platform                                    THQ     0.25
## 5356     PS2 2008         Misc             Disney Interactive Studios     0.17
## 5357     PS2 2006       Action                             Tecmo Koei     0.11
## 5358      DC 1999     Fighting                     Namco Bandai Games     0.00
## 5359      PS 1999       Racing                              Psygnosis     0.19
## 5360      DS 2007 Role-Playing                               Nintendo     0.20
## 5361     PS3 2007       Action                                    THQ     0.13
## 5362     GBA 2004     Platform                               Nintendo     0.10
## 5363    XOne 2014       Action                             Activision     0.25
## 5364      DS 2007       Action                                    THQ     0.31
## 5365    X360 2006      Shooter                          Vivendi Games     0.28
## 5366    X360 2006       Action                 Microsoft Game Studios     0.27
## 5367    2600 1980       Action                             Activision     0.32
## 5368     GBA 2002       Action                                  Atari     0.25
## 5369     PS2 2003   Simulation                             Tecmo Koei     0.08
## 5370      DS 2010       Action                                   Sega     0.15
## 5371     Wii 2010       Action                       City Interactive     0.15
## 5372     PS2 2004    Adventure             Disney Interactive Studios     0.17
## 5373     SAT 1995      Shooter                                   Sega     0.00
## 5374    X360 2011       Action                        Electronic Arts     0.19
## 5375     PS2 2009       Racing            Sony Computer Entertainment     0.07
## 5376     GBA 2004     Platform                                    THQ     0.25
## 5377      DS 2010 Role-Playing                                  Atlus     0.24
## 5378      PS 1997     Fighting                     Virgin Interactive     0.19
## 5379     PS2 2000       Puzzle                  Acclaim Entertainment     0.17
## 5380      XB 2004      Shooter                      Eidos Interactive     0.26
## 5381     PS2 2001   Simulation                      Eidos Interactive     0.17
## 5382    2600 1982       Action                       ITT Family Games     0.32
## 5383    2600 1983       Action                             Activision     0.32
## 5384    X360 2016       Action Warner Bros. Interactive Entertainment     0.17
## 5385    X360 2005       Action                 Microsoft Game Studios     0.28
## 5386     Wii 2011       Action                     Namco Bandai Games     0.29
## 5387      GC 2005     Fighting                                    THQ     0.26
## 5388     PS3 2009       Action                             Tecmo Koei     0.14
## 5389      XB 2004   Simulation                        Electronic Arts     0.22
## 5390    2600 1981       Action           20th Century Fox Video Games     0.32
## 5391     Wii 2011       Action                                Ubisoft     0.13
## 5392     Wii 2007       Action                             Activision     0.31
## 5393     PS3 2012       Action           Konami Digital Entertainment     0.15
## 5394     SAT 1995     Fighting                     Virgin Interactive     0.00
## 5395     N64 1998       Racing                         GT Interactive     0.27
## 5396    2600 1982       Action           20th Century Fox Video Games     0.32
## 5397     PS3 2009       Action                        Electronic Arts     0.15
## 5398     3DS 2011     Strategy                                Ubisoft     0.22
## 5399      PS 1998         Misc                    ASCII Entertainment     0.19
## 5400     Wii 2008       Racing                                    THQ     0.29
## 5401    2600 1981      Shooter                                 Coleco     0.32
## 5402     PSP 2007       Sports                                   Sega     0.00
## 5403     PS2 2004    Adventure                          Vivendi Games     0.17
## 5404     PS3 2011       Action                        Electronic Arts     0.14
## 5405      XB 2006       Sports                        Electronic Arts     0.25
## 5406      DS 2007         Misc                            Hudson Soft     0.00
## 5407      PS 1997      Shooter            Sony Computer Entertainment     0.05
## 5408      DS 2009       Puzzle                           PopCap Games     0.31
## 5409      DS 2008         Misc                              505 Games     0.31
## 5410    XOne 2014     Platform                                Ubisoft     0.13
## 5411      DS 2007       Puzzle                            D3Publisher     0.28
## 5412     PSP 2008 Role-Playing                            Square Enix     0.14
## 5413      DS 2008   Simulation                                Nobilis     0.30
## 5414      PS 1998       Action            Sony Computer Entertainment     0.19
## 5415    X360 2011       Sports           Home Entertainment Suppliers     0.09
## 5416      XB 2002       Racing                           Midway Games     0.25
## 5417     3DS 2013     Strategy                             Activision     0.15
## 5418      DS 2008   Simulation                                Ubisoft     0.31
## 5419     PS3 2008       Sports                        Electronic Arts     0.29
## 5420    XOne 2013   Simulation                 Microsoft Game Studios     0.18
## 5421     GBA 2005       Racing             Disney Interactive Studios     0.24
## 5422      PC 2011   Simulation                        Electronic Arts     0.11
## 5423      GC 2003       Action           Konami Digital Entertainment     0.26
## 5424      DS 2009   Simulation                      Eidos Interactive     0.21
## 5425     PS2 2009         Misc             Disney Interactive Studios     0.10
## 5426     PS3 2010         Misc            Sony Computer Entertainment     0.00
## 5427     PS4 2016 Role-Playing                                  Atlus     0.00
## 5428     PS3 2007         Misc            Sony Computer Entertainment     0.28
## 5429    X360 2007       Action             Disney Interactive Studios     0.29
## 5430     PSV 2012       Racing            Sony Computer Entertainment     0.17
## 5431     PS2 2008       Action                     Namco Bandai Games     0.04
## 5432      DS 2011       Action                     Namco Bandai Games     0.27
## 5433      PS 1996       Action                        Electronic Arts     0.19
## 5434     PS2 2001       Racing                                  Atari     0.16
## 5435      DS 2006    Adventure                                    THQ     0.30
## 5436    X360 2015      Shooter                        Electronic Arts     0.17
## 5437      XB 2005      Shooter                              NovaLogic     0.25
## 5438      DS 2009       Action                  Majesco Entertainment     0.12
## 5439     PS2 2005         Misc                     Oxygen Interactive     0.16
## 5440     PS3 2011       Action                            Ackkstudios     0.00
## 5441     PS3 2011      Shooter                            Codemasters     0.06
## 5442    X360 2009       Action                 Microsoft Game Studios     0.14
## 5443      XB 2006      Shooter                                Ubisoft     0.21
## 5444      DS 2009       Action                             Activision     0.17
## 5445    X360 2008      Shooter                              LucasArts     0.15
## 5446      PS 1996       Racing                                 Jaleco     0.06
## 5447     Wii 2011 Role-Playing                               Nintendo     0.13
## 5448     PS3 2012       Action                                   Sega     0.09
## 5449    X360 2011     Fighting                      Rising Star Games     0.23
## 5450     PS2 2003    Adventure                                Ubisoft     0.16
## 5451     GBA 2003     Platform                                    THQ     0.24
## 5452      PS 1998       Puzzle            Sony Computer Entertainment     0.06
## 5453     Wii 2010         Misc                            Deep Silver     0.00
## 5454      DS 2007 Role-Playing                     Namco Bandai Games     0.14
## 5455     PSP 2006     Fighting                                 Capcom     0.27
## 5456     PSP 2006 Role-Playing                                Ubisoft     0.14
## 5457    X360 2009       Sports                                   Sega     0.12
## 5458      PS 1998       Action                      Eidos Interactive     0.19
## 5459     PSP 2009 Role-Playing                     Namco Bandai Games     0.00
## 5460     Wii 2011         Misc                             Activision     0.31
## 5461     Wii 2010       Action                                   Sega     0.15
## 5462     PSP 2004         Misc            Sony Computer Entertainment     0.13
## 5463     PS3 2012      Shooter                   Take-Two Interactive     0.14
## 5464     PS3 2009         Misc            Sony Computer Entertainment     0.00
## 5465     Wii 2009 Role-Playing                             Activision     0.26
## 5466     PSV 2011     Fighting                                 Capcom     0.20
## 5467      GC 2003     Fighting                                    THQ     0.26
## 5468      DS 2007       Puzzle                               Nintendo     0.14
## 5469      GC 2005   Simulation                        Electronic Arts     0.26
## 5470      XB 2003       Action                  Universal Interactive     0.25
## 5471    X360 2007       Action                                Ubisoft     0.29
## 5472     Wii 2009      Shooter                            Zushi Games     0.31
## 5473     Wii 2010         Misc                            D3Publisher     0.31
## 5474     PS2 2001     Platform            Sony Computer Entertainment     0.12
## 5475      XB 2003      Shooter                      Eidos Interactive     0.25
## 5476    X360 2010 Role-Playing                                   Sega     0.12
## 5477     Wii 2008   Simulation                                Ubisoft     0.30
## 5478     PS2 2002       Action            Sony Computer Entertainment     0.16
## 5479      XB 2001       Racing                        Electronic Arts     0.25
## 5480     PSP 2006 Role-Playing            Sony Computer Entertainment     0.21
## 5481     PS3 2009       Sports                        Electronic Arts     0.31
## 5482      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 5483     PS4 2015     Fighting                             Tecmo Koei     0.09
## 5484      GC 2004     Platform                                    THQ     0.26
## 5485     PS3 2011       Sports                              505 Games     0.00
## 5486      PC 2012       Action                        Electronic Arts     0.14
## 5487     PS2 2002       Sports                             Activision     0.16
## 5488     GBA 2005       Action                             Activision     0.24
## 5489    WiiU 2014       Action                                   Sega     0.21
## 5490     PS2 2002     Fighting                  Acclaim Entertainment     0.16
## 5491      PS 1999       Sports                     Namco Bandai Games     0.00
## 5492     PSV 2011     Platform            Sony Computer Entertainment     0.15
## 5493    X360 2012       Action           Konami Digital Entertainment     0.22
## 5494      GB 1990       Sports                     Namco Bandai Games     0.00
## 5495    SNES 1994       Sports                            Hudson Soft     0.00
## 5496     Wii 2009       Action                  Majesco Entertainment     0.17
## 5497     PSP 2006         Misc                                 Capcom     0.26
## 5498      DS 2008       Sports                        Electronic Arts     0.30
## 5499     PS2 2009       Sports            Sony Computer Entertainment     0.16
## 5500     PS4 2016 Role-Playing                            Square Enix     0.10
## 5501     PS2 2001       Sports            Sony Computer Entertainment     0.16
## 5502     GBA 2004     Platform                               Nintendo     0.17
## 5503     PS3 2014     Fighting                     Namco Bandai Games     0.10
## 5504     PS2 2009       Action Warner Bros. Interactive Entertainment     0.14
## 5505      XB 2006     Fighting                        Electronic Arts     0.26
## 5506     GBA 2001       Racing                                    THQ     0.24
## 5507     PS2 2003       Action                                 Capcom     0.05
## 5508     PS3 2008       Sports                        Electronic Arts     0.08
## 5509     PSP 2014 Role-Playing                      Rising Star Games     0.00
## 5510     N64 1998       Action                                    3DO     0.26
## 5511     PSP 2011         Misc                                   Sega     0.00
## 5512    X360 2009     Strategy                      Eidos Interactive     0.17
## 5513      PS 1998     Platform                             Activision     0.18
## 5514     PS2 2006 Role-Playing                             Tecmo Koei     0.09
## 5515     PS3 2010       Sports                             Activision     0.26
## 5516    X360 2010       Sports                            Hudson Soft     0.27
## 5517     PS2 2002    Adventure                                 Capcom     0.10
## 5518    SNES 1991       Sports                              Banpresto     0.00
## 5519      DS 2008    Adventure                        Scholastic Inc.     0.31
## 5520     PS3 2011       Action             Disney Interactive Studios     0.15
## 5521      GC 2005      Shooter                             Activision     0.25
## 5522     Wii 2006       Action           Konami Digital Entertainment     0.22
## 5523     PSP 2007     Strategy                                    THQ     0.11
## 5524    X360 2013       Racing                            Codemasters     0.01
## 5525     PS2 2003 Role-Playing                             Tecmo Koei     0.16
## 5526     PS2 2005     Fighting                 Ignition Entertainment     0.16
## 5527     Wii 2007       Sports                        Electronic Arts     0.29
## 5528     PSP 2009       Racing            Sony Computer Entertainment     0.09
## 5529     PS3 2009       Racing                                Ubisoft     0.12
## 5530      GC 2006     Platform                                    THQ     0.25
## 5531      DS 2009   Simulation                        SouthPeak Games     0.28
## 5532     PSP 2008       Sports            Sony Computer Entertainment     0.30
## 5533    X360 2011         Misc                                Ubisoft     0.20
## 5534      PS 1994      Shooter           Konami Digital Entertainment     0.00
## 5535     GBA 2003     Platform             Disney Interactive Studios     0.24
## 5536      DC 2001    Adventure                                   Sega     0.00
## 5537      DS 2011       Action                              Avanquest     0.12
## 5538      PS 2000       Sports            Sony Computer Entertainment     0.18
## 5539     GBA 2003         Misc                                    THQ     0.24
## 5540     PS3 2013     Strategy                             Activision     0.10
## 5541      GC 2005     Fighting                       Tomy Corporation     0.00
## 5542    SNES 1991     Strategy                     Namco Bandai Games     0.00
## 5543     Wii 2010     Platform                            D3Publisher     0.19
## 5544    X360 2008       Action                                   Sega     0.19
## 5545      DS 2010       Action                        Electronic Arts     0.22
## 5546      GC 2005       Sports                        Electronic Arts     0.25
## 5547      DS 2007         Misc                         Rocket Company     0.00
## 5548    X360 2011         Misc                   Take-Two Interactive     0.14
## 5549    X360 2007 Role-Playing                                  Atari     0.19
## 5550      PS 1997         Misc                                 Takara     0.00
## 5551      DS 2007       Sports                        Electronic Arts     0.29
## 5552      PS 1996       Sports                        Electronic Arts     0.16
## 5553     PS3 2010       Action                     Namco Bandai Games     0.09
## 5554     PS3 2007 Role-Playing            Sony Computer Entertainment     0.20
## 5555     3DS 2015     Fighting                     Namco Bandai Games     0.12
## 5556     PS2 2007       Action                             Tecmo Koei     0.00
## 5557    XOne 2014      Shooter                              505 Games     0.19
## 5558      GC 2006       Action                                    THQ     0.25
## 5559     PS3 2011       Action                                 Capcom     0.11
## 5560    2600 1983       Action                           Parker Bros.     0.31
## 5561      DS 2010 Role-Playing                                  Atlus     0.13
## 5562     PSV 2012       Action Warner Bros. Interactive Entertainment     0.10
## 5563      GC 2005       Sports                        Electronic Arts     0.25
## 5564     Wii 2008         Misc           Konami Digital Entertainment     0.30
## 5565    2600 1981       Action                         Starpath Corp.     0.30
## 5566    WiiU 2013       Action Warner Bros. Interactive Entertainment     0.20
## 5567      DS 2009   Simulation                              505 Games     0.30
## 5568     GBA 2005       Puzzle                               Nintendo     0.12
## 5569     Wii 2006     Fighting                                   Sega     0.22
## 5570      PS 1995     Fighting                       Tomy Corporation     0.00
## 5571      XB 2006       Sports                   Take-Two Interactive     0.24
## 5572     PS2 2004         Misc                                Play It     0.16
## 5573     PSV 2014       Action            Sony Computer Entertainment     0.14
## 5574      PC 2011      Shooter                        Electronic Arts     0.13
## 5575     PS3 2010         Misc           Konami Digital Entertainment     0.25
## 5576    X360 2009       Action                            Codemasters     0.15
## 5577     PSP 2009       Sports                   Take-Two Interactive     0.30
## 5578     PS3 2014     Fighting                     Namco Bandai Games     0.04
## 5579      PC 2008 Role-Playing                                  Atari     0.32
## 5580     GBA 2004       Action           Konami Digital Entertainment     0.23
## 5581     PS2 2004       Action                                    THQ     0.16
## 5582     PSP 2012     Fighting                     Namco Bandai Games     0.00
## 5583      PC 2013       Action Warner Bros. Interactive Entertainment     0.13
## 5584     PS2 2003      Shooter                          Vivendi Games     0.16
## 5585      PS 1999       Sports                        Electronic Arts     0.18
## 5586     PS3 2015       Action                                 Capcom     0.06
## 5587    X360 2006       Racing                                  Atari     0.23
## 5588     PS3 2008       Action                                   Sega     0.13
## 5589     PSV 2012       Sports                        Electronic Arts     0.30
## 5590      DS 2008       Action                                    THQ     0.18
## 5591    X360 2009       Sports                        Electronic Arts     0.30
## 5592    X360 2012     Fighting                         Ubisoft Annecy     0.19
## 5593      DS 2011 Role-Playing                             Ghostlight     0.17
## 5594     N64 1998       Sports                  Acclaim Entertainment     0.30
## 5595      DS 2008         Misc                            Hudson Soft     0.00
## 5596    XOne 2016       Action Warner Bros. Interactive Entertainment     0.18
## 5597     PSP 2009     Fighting                     Namco Bandai Games     0.15
## 5598     PS2 2001       Racing            Sony Computer Entertainment     0.16
## 5599    X360 2007       Puzzle                     Namco Bandai Games     0.14
## 5600      PS 1997       Puzzle                  Acclaim Entertainment     0.18
## 5601      XB 2005       Sports                        Electronic Arts     0.28
## 5602     PS3 2009       Action                            Codemasters     0.11
## 5603      PS 2002 Role-Playing                       Enix Corporation     0.00
## 5604     PSP 2010      Shooter                        Electronic Arts     0.12
## 5605      DS 2010     Platform                            D3Publisher     0.22
## 5606     Wii 2008       Racing                 Zoo Digital Publishing     0.30
## 5607      PC 2009       Action                      Eidos Interactive     0.00
## 5608    X360 2007       Action                          Vivendi Games     0.27
## 5609    X360 2008     Platform                          Vivendi Games     0.16
## 5610    X360 2006      Shooter                   Take-Two Interactive     0.27
## 5611     Wii 2009         Misc                   Take-Two Interactive     0.30
## 5612      PS 1996       Action                        Electronic Arts     0.05
## 5613      PS 1997       Sports            Sony Computer Entertainment     0.18
## 5614     PS4 2014       Action                            Square Enix     0.09
## 5615    X360 2005       Sports                             Activision     0.28
## 5616      PS 1999   Simulation                                Ubisoft     0.11
## 5617    X360 2014      Shooter                              505 Games     0.16
## 5618     PS2 2003     Fighting                                  Atari     0.00
## 5619      PC 2016     Strategy                                Unknown     0.00
## 5620      PC 2010     Strategy                                Ubisoft     0.00
## 5621     PS2 2008       Action                   Take-Two Interactive     0.16
## 5622     PS4 2016       Action                                Ubisoft     0.03
## 5623      DS 2009       Sports                                    THQ     0.18
## 5624    X360 2011         Misc                              Zoo Games     0.30
## 5625     PS2 2005      Shooter                                Ubisoft     0.16
## 5626      DS 2006       Action                               Nintendo     0.00
## 5627    X360 2007   Simulation           Konami Digital Entertainment     0.30
## 5628     Wii 2009   Simulation                        Electronic Arts     0.15
## 5629      GC 2003       Action                                Ubisoft     0.25
## 5630     PS2 2000   Simulation            Sony Computer Entertainment     0.16
## 5631     N64 1997       Sports           Konami Digital Entertainment     0.15
## 5632      PS 2000     Platform                                Ubisoft     0.18
## 5633      GB 1995       Puzzle                               Nintendo     0.00
## 5634     PS4 2016       Racing                            Codemasters     0.03
## 5635     GBA 2001       Action                  Majesco Entertainment     0.23
## 5636      PS 2000       Sports                        Electronic Arts     0.18
## 5637      DS 2011         Misc                               P2 Games     0.00
## 5638      PS 1997       Racing            Sony Computer Entertainment     0.18
## 5639     Wii 2007       Sports                                  Atari     0.27
## 5640     PS2 2003     Platform           Konami Digital Entertainment     0.16
## 5641      PS 1995         Misc                        Electronic Arts     0.18
## 5642     PSP 2008       Sports                                Ubisoft     0.26
## 5643     PS2 2004         Misc           Konami Digital Entertainment     0.16
## 5644     Wii 2008       Sports                                Ubisoft     0.00
## 5645     PS2 2001   Simulation                    ASCII Entertainment     0.00
## 5646     SAT 1995     Fighting                     Virgin Interactive     0.00
## 5647      PS 1999       Sports           Konami Digital Entertainment     0.00
## 5648     GBA 2005         Misc                  Majesco Entertainment     0.23
## 5649     PS2 2002     Fighting                                Ubisoft     0.16
## 5650     PSP 2005     Fighting                        Electronic Arts     0.29
## 5651     GBA 2005     Platform                                    THQ     0.23
## 5652     NES 1991       Puzzle                                    BPS     0.00
## 5653    X360 2009       Action                        Electronic Arts     0.17
## 5654     PS2 2003       Sports                             Activision     0.16
## 5655     PS2 2009         Misc                              MTV Games     0.16
## 5656      DS 2009       Puzzle                             Rondomedia     0.14
## 5657     GBA 2002    Adventure                     BAM! Entertainment     0.23
## 5658      DS 2011       Action                                   Sega     0.05
## 5659    2600 1982       Action                               Data Age     0.30
## 5660      PS 1997    Adventure                  Acclaim Entertainment     0.18
## 5661      DS 2008       Sports                             Enterbrain     0.00
## 5662     PS4 2016     Platform                        Electronic Arts     0.10
## 5663     PSP 2007       Action                   Take-Two Interactive     0.04
## 5664      XB 2002       Sports                                   Sega     0.24
## 5665     Wii 2008 Role-Playing                      Eidos Interactive     0.28
## 5666     Wii 2010     Strategy                            Square Enix     0.00
## 5667    SNES 1993 Role-Playing                            Hudson Soft     0.00
## 5668     PS2 2003     Fighting                     Namco Bandai Games     0.00
## 5669     GBA 2002         Misc                                  Atari     0.23
## 5670     Wii 2010         Misc                                Unknown     0.05
## 5671      PS 1997   Simulation                    Human Entertainment     0.00
## 5672      PS 1997     Strategy                              Banpresto     0.00
## 5673    SNES 1994 Role-Playing                             SquareSoft     0.00
## 5674      XB 2003       Sports                 Microsoft Game Studios     0.24
## 5675     GBA 2001       Sports                        Electronic Arts     0.23
## 5676     PS2 2008       Sports                        Electronic Arts     0.03
## 5677    X360 2007      Shooter                            Codemasters     0.28
## 5678      DS 2009   Simulation                        Electronic Arts     0.29
## 5679      XB 2004     Strategy                            Deep Silver     0.24
## 5680     PS2 2001       Racing                Gathering of Developers     0.16
## 5681    X360 2010       Sports                             Activision     0.28
## 5682    SNES 1996         Misc                            Hudson Soft     0.00
## 5683      PS 2001       Action                                    THQ     0.18
## 5684     PS2 2000     Strategy                             Tecmo Koei     0.08
## 5685     PSP 2007       Action                             Activision     0.08
## 5686    X360 2011    Adventure                            Deep Silver     0.20
## 5687    X360 2010     Fighting                                  PQube     0.23
## 5688     PS2 2002    Adventure            Sony Computer Entertainment     0.15
## 5689     PS2 2009         Misc                             Activision     0.10
## 5690     PSP 2007       Racing            Sony Computer Entertainment     0.13
## 5691      DS 2008         Misc           Konami Digital Entertainment     0.00
## 5692    XOne 2015         Misc                                Ubisoft     0.24
## 5693     Wii 2008       Action                                 Capcom     0.17
## 5694     PS2 2004       Action                             Tecmo Koei     0.00
## 5695      XB 2002    Adventure                 Microsoft Game Studios     0.22
## 5696      PS 1998     Platform                                  Ocean     0.18
## 5697     PS3 2016       Action Warner Bros. Interactive Entertainment     0.10
## 5698      DC 1999       Sports                                   Sega     0.00
## 5699      PC 2011 Role-Playing                 Microsoft Game Studios     0.09
## 5700    XOne 2015     Fighting                     Namco Bandai Games     0.18
## 5701      PC 2011 Role-Playing                                Ubisoft     0.12
## 5702    X360 2009       Racing                            Codemasters     0.09
## 5703     Wii 2010       Sports                     Namco Bandai Games     0.10
## 5704      PS 1997     Strategy                        Electronic Arts     0.18
## 5705     PSP 2011 Role-Playing                                 Capcom     0.00
## 5706      XB 2003       Racing                          Vivendi Games     0.24
## 5707     Wii 2010         Misc Warner Bros. Interactive Entertainment     0.29
## 5708      PS 1995       Sports            Sony Computer Entertainment     0.17
## 5709     Wii 2007         Misc           Konami Digital Entertainment     0.29
## 5710      DS 2010       Action             Disney Interactive Studios     0.25
## 5711     PS2 2007       Sports           Konami Digital Entertainment     0.00
## 5712      DS 2007      Shooter           Konami Digital Entertainment     0.28
## 5713     GBA 2003       Sports                        Electronic Arts     0.22
## 5714     PS3 2014      Shooter                              505 Games     0.10
## 5715    SNES 1995     Platform           Konami Digital Entertainment     0.00
## 5716     3DS 2011       Puzzle                            Square Enix     0.08
## 5717      GB 1999       Action                               Nintendo     0.00
## 5718     PSP 2008       Sports           Konami Digital Entertainment     0.00
## 5719      PS 1998         Misc                               NewKidCo     0.17
## 5720     Wii 2008       Action                                   Sega     0.28
## 5721    X360 2008         Misc                                  Atari     0.27
## 5722      XB 2002       Sports                 Microsoft Game Studios     0.23
## 5723     PS2 2005       Sports                        Electronic Arts     0.15
## 5724      DS 2007    Adventure                             Activision     0.28
## 5725      DS 2005       Action                                Ubisoft     0.25
## 5726     3DS 2015         Misc                                   Sega     0.15
## 5727     3DS 2014     Strategy                     Namco Bandai Games     0.00
## 5728      DS 2010     Platform                             Activision     0.19
## 5729     PS3 2007       Sports            Sony Computer Entertainment     0.29
## 5730     PS4 2016      Shooter                            Deep Silver     0.05
## 5731     PS2 2003         Misc            Sony Computer Entertainment     0.15
## 5732      PS 1996    Adventure                             Infogrames     0.17
## 5733      XB 2004     Strategy           Konami Digital Entertainment     0.23
## 5734      XB 2005       Action                                  Atari     0.23
## 5735      XB 2005       Action                           Midway Games     0.23
## 5736      DS 2006       Action                           Midway Games     0.27
## 5737      PS 1997      Shooter                             SquareSoft     0.10
## 5738      PS 1998         Misc            Sony Computer Entertainment     0.17
## 5739      DS 2009       Puzzle                       Storm City Games     0.29
## 5740    XOne 2014       Action                            Deep Silver     0.15
## 5741    X360 2010       Action                                 Capcom     0.19
## 5742    X360 2012       Sports           Konami Digital Entertainment     0.08
## 5743     PS2 2003   Simulation                                 Agetec     0.07
## 5744     PS2 2009     Strategy                     Namco Bandai Games     0.00
## 5745      DS 2007       Action                      CokeM Interactive     0.29
## 5746     SAT 1995      Shooter                                   Sega     0.00
## 5747      PS 2001       Action                   Take-Two Interactive     0.17
## 5748      XB 2005      Shooter                                Ubisoft     0.23
## 5749     GBA 2005       Action                                    THQ     0.22
## 5750      PS 1999     Strategy                              Banpresto     0.00
## 5751     PSP 2005     Platform                                 Capcom     0.27
## 5752     Wii 2009       Sports                       Activision Value     0.29
## 5753     PSP 2010 Role-Playing                            Square Enix     0.07
## 5754     N64 1997       Sports           Konami Digital Entertainment     0.00
## 5755     N64 1998     Platform           Konami Digital Entertainment     0.06
## 5756     N64 1999       Racing                        Electronic Arts     0.25
## 5757     N64 1998       Racing                             Activision     0.25
## 5758     N64 1999       Sports                   Take-Two Interactive     0.25
## 5759     N64 2001   Simulation                               Nintendo     0.00
## 5760      PC 2015   Simulation                                   Sega     0.00
## 5761      DS 2006     Fighting                     Namco Bandai Games     0.31
## 5762    X360 2010       Action             Disney Interactive Studios     0.24
## 5763    XOne 2015       Action             Disney Interactive Studios     0.18
## 5764     3DS 2014       Action                     Namco Bandai Games     0.00
## 5765     Wii 2008         Misc                              Zoo Games     0.29
## 5766     Wii 2010       Action                        Electronic Arts     0.18
## 5767     PS2 2007       Sports           Konami Digital Entertainment     0.00
## 5768     Wii 2008         Misc                             Activision     0.28
## 5769     Wii 2008   Simulation                      Rising Star Games     0.25
## 5770     PS2 2007       Sports                                Unknown     0.03
## 5771      DS 2010     Strategy           Konami Digital Entertainment     0.18
## 5772     GBA 2002       Action                                Ubisoft     0.22
## 5773     Wii 2009     Strategy                      Rising Star Games     0.15
## 5774    2600 1982       Action                        CBS Electronics     0.29
## 5775     PS2 2005         Misc            Sony Computer Entertainment     0.15
## 5776      DS 2005     Platform                             Activision     0.25
## 5777    X360 2005       Sports                        Electronic Arts     0.28
## 5778     PS2 2008       Sports                                Ubisoft     0.15
## 5779     SAT 1997 Role-Playing                                  Atlus     0.00
## 5780     PS3 2008       Sports                     Bethesda Softworks     0.28
## 5781     Wii 2010       Sports                             Activision     0.23
## 5782    X360 2006     Strategy                        Electronic Arts     0.28
## 5783      PS 1998       Racing                             Infogrames     0.17
## 5784      XB 2004         Misc                           Midway Games     0.24
## 5785      PS 1997   Simulation                             SquareSoft     0.00
## 5786      DS 2006       Puzzle                                Ubisoft     0.28
## 5787      PC 2012 Role-Playing                        Electronic Arts     0.14
## 5788      GC 2002       Racing                        Electronic Arts     0.24
## 5789     PSP 2012     Strategy                     Namco Bandai Games     0.00
## 5790     PS3 2012       Action            Sony Computer Entertainment     0.14
## 5791      DS 2010       Puzzle Warner Bros. Interactive Entertainment     0.11
## 5792      PS 1998       Sports            Sony Computer Entertainment     0.17
## 5793     PS2 2002       Racing                              LucasArts     0.15
## 5794     PSP 2007       Sports                        Electronic Arts     0.28
## 5795     PS3 2011     Fighting                      Rising Star Games     0.17
## 5796     PS2 2001       Sports            Sony Computer Entertainment     0.15
## 5797      PS 1998         Misc                  Acclaim Entertainment     0.17
## 5798     PS2 2001         Misc                                  Magix     0.15
## 5799    X360 2011       Racing                 Focus Home Interactive     0.00
## 5800    SNES 1993     Platform           Konami Digital Entertainment     0.00
## 5801    2600 1981       Action                     Mattel Interactive     0.29
## 5802     PS2 2002       Action                             Activision     0.15
## 5803      PS 1999     Platform                         GT Interactive     0.17
## 5804     PSV 2013 Role-Playing                   Nippon Ichi Software     0.08
## 5805     PSP 2010 Role-Playing                  Marvelous Interactive     0.18
## 5806     Wii 2009       Sports                                Ubisoft     0.25
## 5807      DS 2009         Misc                     Mentor Interactive     0.29
## 5808    XOne 2013     Platform                             Activision     0.22
## 5809      PS 1999         Misc                             Activision     0.17
## 5810     PS3 2009       Action                             Activision     0.21
## 5811     PSP 2010       Action           Konami Digital Entertainment     0.09
## 5812      XB 2002     Fighting                  Universal Interactive     0.23
## 5813      PS 2000       Puzzle                     Empire Interactive     0.17
## 5814     GBA 2001       Puzzle                               Nintendo     0.00
## 5815      PS 2000     Platform            Sony Computer Entertainment     0.17
## 5816     PS2 2002       Action            Sony Computer Entertainment     0.15
## 5817    SNES 1996 Role-Playing                    ASCII Entertainment     0.00
## 5818    SNES 1994     Fighting                     Namco Bandai Games     0.00
## 5819     PS2 2000 Role-Playing                             Activision     0.15
## 5820     3DS 2013    Adventure Warner Bros. Interactive Entertainment     0.18
## 5821      DS 2009   Simulation                                Ubisoft     0.28
## 5822    X360 2009 Role-Playing                              Banpresto     0.13
## 5823     GBA 2005       Action                             Activision     0.22
## 5824      DS 2006       Action                                    THQ     0.28
## 5825      XB 2003       Racing                 Microsoft Game Studios     0.23
## 5826     GBA 2002       Racing                         TDK Mediactive     0.22
## 5827     PS3 2014       Action                     Namco Bandai Games     0.09
## 5828    X360 2014      Shooter                                   Sega     0.15
## 5829      GB 1995         Misc                               Nintendo     0.00
## 5830     SAT 1996      Shooter                                   Sega     0.00
## 5831      PS 1998     Fighting                             SquareSoft     0.17
## 5832     PSP 2005         Misc                                   Sega     0.00
## 5833     Wii 2011         Misc           Konami Digital Entertainment     0.24
## 5834     GBA 2003     Platform                  Universal Interactive     0.22
## 5835      PS 2000       Action                                    3DO     0.17
## 5836     PS3 2012     Strategy                     Namco Bandai Games     0.00
## 5837     PS3 2007      Shooter                           Midway Games     0.24
## 5838     Wii 2007   Simulation                               Nintendo     0.22
## 5839     GBA 2005     Platform                                Unknown     0.04
## 5840     PSP 2006       Puzzle             Disney Interactive Studios     0.12
## 5841    WiiU 2014       Action                               Nintendo     0.20
## 5842      PC 2006   Simulation                            Deep Silver     0.00
## 5843      PS 1995     Platform            Sony Computer Entertainment     0.05
## 5844     PS2 2005         Misc           Konami Digital Entertainment     0.15
## 5845      DS 2010       Action Warner Bros. Interactive Entertainment     0.24
## 5846      GC 2002       Racing                  Acclaim Entertainment     0.23
## 5847     GBA 2005     Platform             Disney Interactive Studios     0.22
## 5848     PS2 2003       Action                                 Capcom     0.15
## 5849    X360 2011     Fighting                                Ubisoft     0.18
## 5850    X360 2011       Racing                             Activision     0.29
## 5851      DS 2009       Puzzle                                   Sega     0.00
## 5852     Wii 2010     Platform                             Activision     0.19
## 5853     GBA 2005    Adventure                            Global Star     0.22
## 5854     PS2 2005    Adventure            Sony Computer Entertainment     0.15
## 5855     SAT 1995 Role-Playing                                   Sega     0.00
## 5856     GBA 2006         Misc                               Nintendo     0.00
## 5857      DS 2007     Strategy                              Banpresto     0.00
## 5858      PS 1997       Racing            Sony Computer Entertainment     0.17
## 5859     PSP 2010     Strategy            Sony Computer Entertainment     0.05
## 5860     PS2 2006    Adventure            Sony Computer Entertainment     0.15
## 5861     PSP 2007     Platform                             Activision     0.01
## 5862     PS3 2011         Misc                    TopWare Interactive     0.00
## 5863     NES 1990       Sports                     Namco Bandai Games     0.00
## 5864      DS 2011         Misc                             Activision     0.27
## 5865      DS 2008     Strategy                                    THQ     0.24
## 5866      DS 2007       Action Warner Bros. Interactive Entertainment     0.28
## 5867     PS2 2007     Strategy                              Banpresto     0.00
## 5868     PS3 2013 Role-Playing                            Square Enix     0.10
## 5869     SAT 1994       Sports                                   Sega     0.00
## 5870      PC 2004   Simulation                        Electronic Arts     0.02
## 5871     PS3 2011     Strategy                    Slitherine Software     0.00
## 5872     3DS 2011       Action                                Ubisoft     0.14
## 5873     PS4 2015       Action                                 Capcom     0.12
## 5874      DS 2009    Adventure             Disney Interactive Studios     0.28
## 5875    X360 2007       Action                             Tecmo Koei     0.15
## 5876     Wii 2008       Racing                      Eidos Interactive     0.27
## 5877     PS4 2014       Action                             Tecmo Koei     0.09
## 5878     PSV 2014       Action                             Tecmo Koei     0.05
## 5879     Wii 2010       Action                                 Capcom     0.08
## 5880     PS2 2002     Strategy                             Tecmo Koei     0.05
## 5881      DS 2008 Role-Playing                               Nintendo     0.00
## 5882    SNES 1994 Role-Playing                            Hudson Soft     0.00
## 5883     PS4 2015   Simulation                          Kalypso Media     0.05
## 5884     PS2 2001       Sports        Midas Interactive Entertainment     0.15
## 5885      DS 2008 Role-Playing                               Nintendo     0.20
## 5886     N64 1999       Racing                   Take-Two Interactive     0.24
## 5887     N64 1999      Shooter                             Activision     0.24
## 5888      DS 2006         Misc                                  Spike     0.00
## 5889     GBA 2003       Racing                                    THQ     0.21
## 5890      DS 2009   Simulation                        Electronic Arts     0.15
## 5891    X360 2007       Action                        Electronic Arts     0.24
## 5892     PS4 2015       Action                             Activision     0.17
## 5893      PS 1997   Simulation                     Namco Bandai Games     0.00
## 5894     3DS 2011       Action                     Namco Bandai Games     0.00
## 5895     PS2 2000     Platform                                Ubisoft     0.15
## 5896     GBA 2003       Action                                  Atari     0.21
## 5897    SNES 1997       Puzzle                            Hudson Soft     0.00
## 5898    X360 2006       Action                 Microsoft Game Studios     0.20
## 5899     PSP 2011 Role-Playing                                  Atlus     0.13
## 5900      PS 2000       Action                                    3DO     0.17
## 5901      PC 2005       Racing                        Electronic Arts     0.02
## 5902     PS3 2007 Role-Playing                                 Capcom     0.00
## 5903     PS2 2003     Fighting                                    THQ     0.15
## 5904     PS2 2000 Role-Playing                                Ubisoft     0.10
## 5905     SAT 1996     Strategy                                   Sega     0.00
## 5906      DS 2007   Simulation                                Ubisoft     0.23
## 5907    X360 2011         Misc                                Ubisoft     0.15
## 5908     3DS 2012 Role-Playing                                  Atlus     0.13
## 5909    SNES 1995       Sports                             Tecmo Koei     0.00
## 5910      PS 1996     Fighting                     Virgin Interactive     0.07
## 5911    X360 2007       Action                             Activision     0.26
## 5912      PC 2014       Sports                        Electronic Arts     0.00
## 5913    X360 2008   Simulation           Konami Digital Entertainment     0.28
## 5914      DS 2012       Puzzle                              Avanquest     0.00
## 5915     Wii 2012         Misc                           Nordic Games     0.08
## 5916     PS2 2004     Fighting                  Acclaim Entertainment     0.15
## 5917     PSP 2006         Misc                                 Capcom     0.27
## 5918     Wii 2009       Sports                            Zushi Games     0.26
## 5919      DS 2011      Shooter                             Activision     0.21
## 5920      PC 2003   Simulation                        Electronic Arts     0.01
## 5921    SNES 1995 Role-Playing                            Hudson Soft     0.00
## 5922     PSV 2014 Role-Playing                     Namco Bandai Games     0.00
## 5923     PS4 2016 Role-Playing                            Square Enix     0.06
## 5924     PS3 2011      Shooter                                Ubisoft     0.12
## 5925     PS2 2005     Strategy                                    THQ     0.15
## 5926      DS 2009         Misc                  Majesco Entertainment     0.28
## 5927     Wii 2010         Misc                     Namco Bandai Games     0.00
## 5928    X360 2012      Shooter                             Activision     0.13
## 5929     PS2 2006   Simulation                        Electronic Arts     0.02
## 5930     PSV 2016 Role-Playing                            Square Enix     0.00
## 5931      DS 2007       Action             Disney Interactive Studios     0.17
## 5932     GBA 2003       Sports           Konami Digital Entertainment     0.00
## 5933      DS 2006     Platform                                 Capcom     0.18
## 5934      DS 2005   Simulation                  Marvelous Interactive     0.30
## 5935      DS 2007       Sports           Konami Digital Entertainment     0.00
## 5936     PS3 2009      Shooter Warner Bros. Interactive Entertainment     0.14
## 5937     GBA 2004       Action                                    THQ     0.21
## 5938     GBA 2002     Platform                                    THQ     0.21
## 5939     PS3 2009       Racing                             Activision     0.19
## 5940      PS 1997   Simulation                        Electronic Arts     0.16
## 5941    X360 2009         Misc                             Activision     0.16
## 5942    X360 2007 Role-Playing                            Square Enix     0.25
## 5943      GB 1999   Simulation                                Jorudan     0.00
## 5944      GC 2004       Action                             Activision     0.23
## 5945     PS3 2012     Fighting                             Tecmo Koei     0.00
## 5946     PS2 2004       Sports                           Midway Games     0.14
## 5947      XB 2003       Action           Konami Digital Entertainment     0.22
## 5948      DS 2005    Adventure                               Nintendo     0.15
## 5949    X360 2008       Sports                        Electronic Arts     0.12
## 5950      DS 2007       Puzzle                              Avanquest     0.02
## 5951     Wii 2010       Action Warner Bros. Interactive Entertainment     0.22
## 5952     Wii 2006     Fighting                                  Atari     0.24
## 5953      XB 2003       Sports                   Mud Duck Productions     0.22
## 5954    X360 2014       Action                            Square Enix     0.14
## 5955      GC 2002     Platform                                    THQ     0.23
## 5956     Wii 2011         Misc                                Ubisoft     0.28
## 5957    2600 1986       Sports                                  Atari     0.28
## 5958      DS 2020   Simulation                                Ubisoft     0.27
## 5959     PS2 2002 Role-Playing                                Ubisoft     0.14
## 5960     PSP 2006      Shooter            Sony Computer Entertainment     0.26
## 5961     PS3 2010      Shooter                            Square Enix     0.09
## 5962      DS 2006     Platform Warner Bros. Interactive Entertainment     0.21
## 5963    X360 2009       Action                      Eidos Interactive     0.12
## 5964    X360 2010 Role-Playing                            Square Enix     0.13
## 5965     Wii 2009       Sports                   Take-Two Interactive     0.26
## 5966     PSP 2005 Role-Playing                             Activision     0.25
## 5967      DS 2010         Misc                                    GSP     0.04
## 5968    X360 2009      Shooter                                  Atari     0.16
## 5969     GBA 2003       Racing                        Electronic Arts     0.21
## 5970     GBA 2002       Sports           Konami Digital Entertainment     0.00
## 5971     PS3 2007       Action                        Electronic Arts     0.25
## 5972     PSV 2014       Action            Sony Computer Entertainment     0.01
## 5973     SAT 1995 Role-Playing                                   Sega     0.00
## 5974    WiiU 2013       Action                                Ubisoft     0.18
## 5975     Wii 2007       Sports           Konami Digital Entertainment     0.23
## 5976      XB 2002       Sports                         TDK Mediactive     0.22
## 5977     PS3 2014       Action                             Activision     0.06
## 5978     PS3 2009       Action                             Tecmo Koei     0.11
## 5979      PS 1999       Sports           Konami Digital Entertainment     0.16
## 5980     PS2 2002    Adventure                              505 Games     0.02
## 5981    X360 2009       Action                                    THQ     0.20
## 5982     PSP 2010    Adventure                                   Sega     0.00
## 5983     Wii 2007       Action                                Ubisoft     0.24
## 5984     Wii 2009       Action                     Namco Bandai Games     0.00
## 5985     PS2 2009       Action                            D3Publisher     0.11
## 5986     PS3 2010    Adventure                     Namco Bandai Games     0.09
## 5987      GC 2005       Sports                        Electronic Arts     0.23
## 5988     PS2 2000      Shooter        Midas Interactive Entertainment     0.14
## 5989     Wii 2007       Sports                               Nintendo     0.02
## 5990     PSP 2008       Racing                     Empire Interactive     0.13
## 5991      PS 1998     Strategy                     Virgin Interactive     0.03
## 5992      PS 2000       Sports           Konami Digital Entertainment     0.00
## 5993     PS3 2013      Shooter                   Take-Two Interactive     0.08
## 5994    X360 2005       Sports                        Electronic Arts     0.27
## 5995     Wii 2009         Misc                             Activision     0.14
## 5996     SAT 1996       Sports                                   Sega     0.00
## 5997      DS 2009 Role-Playing                                  Atlus     0.14
## 5998      PS 2000         Misc                     Hasbro Interactive     0.16
## 5999      PS 1997     Strategy                     Namco Bandai Games     0.00
## 6000     PS2 2008     Platform            Sony Computer Entertainment     0.13
## 6001     Wii 2010     Platform                            D3Publisher     0.17
## 6002     PS2 2006 Role-Playing                             Tecmo Koei     0.14
## 6003    SNES 1994         Misc                       Enix Corporation     0.00
## 6004    X360 2010         Misc           Konami Digital Entertainment     0.25
## 6005     Wii 2011       Action                        Electronic Arts     0.13
## 6006      GC 2002     Fighting                     Namco Bandai Games     0.00
## 6007     PS3 2012       Action            Sony Computer Entertainment     0.18
## 6008    2600 1983       Action                             Activision     0.27
## 6009      DS 2009   Simulation                                Ubisoft     0.27
## 6010      XB 2005      Shooter                           Midway Games     0.22
## 6011     Wii 2011         Misc                                Ubisoft     0.22
## 6012     Wii 2010         Misc             Disney Interactive Studios     0.18
## 6013     PSP 2010   Simulation                     Namco Bandai Games     0.06
## 6014     GBA 2003   Simulation                                Jorudan     0.00
## 6015     PS3 2011       Action            Sony Computer Entertainment     0.13
## 6016    X360 2013     Strategy                             Activision     0.16
## 6017     PS2 2004     Platform                                 Capcom     0.14
## 6018     Wii 2009    Adventure                                Ubisoft     0.13
## 6019     PS2 2005       Racing                   Take-Two Interactive     0.14
## 6020     PSV 2012       Action               Nihon Falcom Corporation     0.15
## 6021     3DS 2012       Action                        Electronic Arts     0.06
## 6022    2600 1981       Action                                Unknown     0.27
## 6023     PS2 2001       Sports           Konami Digital Entertainment     0.00
## 6024     N64 1998       Racing                  Acclaim Entertainment     0.23
## 6025     N64 1998       Racing                                  Kemco     0.23
## 6026     N64 1999     Fighting                                  Titus     0.23
## 6027     N64 1999       Racing                  Acclaim Entertainment     0.23
## 6028     N64 1999       Puzzle                               Nintendo     0.22
## 6029     N64 1999       Sports                               Nintendo     0.23
## 6030     N64 1999       Racing                        Electronic Arts     0.23
## 6031     N64 1997     Fighting                           Midway Games     0.23
## 6032     PS3 2007       Action                             Tecmo Koei     0.10
## 6033      PC 2011      Shooter                          Wargaming.net     0.00
## 6034      DS 2010       Puzzle                              Avanquest     0.00
## 6035     GBA 2003         Misc                                  Atari     0.21
## 6036     PS2 2009     Fighting                                    THQ     0.14
## 6037    X360 2008      Shooter                            Codemasters     0.23
## 6038     PS2 2005   Simulation                            Codemasters     0.14
## 6039     Wii 2009       Action                                 Capcom     0.15
## 6040      GC 2004 Role-Playing                        Electronic Arts     0.22
## 6041     3DS 2013       Action             Disney Interactive Studios     0.16
## 6042    X360 2012 Role-Playing                 Microsoft Game Studios     0.18
## 6043      DS 2006   Simulation                               Nintendo     0.00
## 6044     3DS 2014       Action                                   Sega     0.17
## 6045     Wii 2012         Misc                               Nintendo     0.00
## 6046      XB 2007       Sports                        Electronic Arts     0.22
## 6047      PS 1996         Misc                                 Takara     0.00
## 6048      XB 2003 Role-Playing                                Ubisoft     0.22
## 6049    X360 2011      Shooter                            Codemasters     0.10
## 6050     PS3 2015       Action                     Namco Bandai Games     0.00
## 6051      XB 2005       Action                                    THQ     0.22
## 6052      PS 1996       Sports            Sony Computer Entertainment     0.16
## 6053    X360 2011       Action                             Activision     0.13
## 6054    SNES 1991 Role-Playing                          Angel Studios     0.00
## 6055    X360 2013       Racing                            Codemasters     0.08
## 6056     Wii 2008   Simulation                              Destineer     0.27
## 6057     Wii 2007       Puzzle                            D3Publisher     0.26
## 6058     PS2 2002         Misc                         TDK Mediactive     0.14
## 6059      DC 2002    Adventure                                   Sega     0.00
## 6060     PS2 2005 Role-Playing                                   Sega     0.07
## 6061     PS2 2002     Strategy                             Tecmo Koei     0.06
## 6062      DS 2004   Simulation                        Electronic Arts     0.27
## 6063    X360 2013 Role-Playing                            Square Enix     0.15
## 6064      DS 2004       Puzzle                                   Sega     0.17
## 6065     PS3 2009         Misc                        Electronic Arts     0.12
## 6066      DS 2008       Puzzle                                 Capcom     0.26
## 6067     3DS 2012       Racing                                   Sega     0.12
## 6068     Wii 2007       Action                             Activision     0.26
## 6069      PS 2000       Sports        Midas Interactive Entertainment     0.16
## 6070     Wii 2008   Simulation                            Deep Silver     0.27
## 6071     3DS 2013         Misc                     Namco Bandai Games     0.00
## 6072      PC 2014      Shooter                   Take-Two Interactive     0.11
## 6073     PS2 2007       Sports                                Ubisoft     0.14
## 6074     PS3 2013     Fighting                       Arc System Works     0.13
## 6075      PS 2000       Racing                             Infogrames     0.16
## 6076     PS2 2004 Role-Playing                            Square Enix     0.00
## 6077      PS 1996         Misc            Sony Computer Entertainment     0.03
## 6078     PS2 2003     Platform                                Ubisoft     0.14
## 6079      DS 2008    Adventure           Konami Digital Entertainment     0.00
## 6080     PS2 2004      Shooter                           Midway Games     0.14
## 6081     Wii 2010       Puzzle                       Storm City Games     0.27
## 6082      PS 1999     Platform            Sony Computer Entertainment     0.16
## 6083    X360 2009       Action           Konami Digital Entertainment     0.13
## 6084      DS 2011   Simulation                             Activision     0.27
## 6085     PS2 2006 Role-Playing                            Square Enix     0.00
## 6086      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 6087    X360 2007       Racing                        Electronic Arts     0.26
## 6088      PC 2016 Role-Playing                             Activision     0.14
## 6089    SNES 1992     Strategy                             Tecmo Koei     0.00
## 6090      DS 2008       Sports           Konami Digital Entertainment     0.00
## 6091     PS3 2011       Action                 Ignition Entertainment     0.11
## 6092     PS3 2012       Action                             Activision     0.12
## 6093      GC 2004     Platform                          Vivendi Games     0.22
## 6094     PSP 2008       Action                             Tecmo Koei     0.06
## 6095      DS 2007       Puzzle                                    THQ     0.26
## 6096      XB 2003       Sports                 Microsoft Game Studios     0.21
## 6097      PS 1996       Sports                        Electronic Arts     0.16
## 6098      DS 2008       Action                                    THQ     0.26
## 6099      DS 2011         Misc                               Nintendo     0.00
## 6100      DS 2010       Action                             Activision     0.26
## 6101     GBA 2001     Platform                              Interplay     0.20
## 6102     GBA 2003 Role-Playing                               Nintendo     0.08
## 6103     PS3 2007       Action                                   Sega     0.14
## 6104    X360 2012       Racing                            Codemasters     0.07
## 6105      DS 2008       Sports                                    THQ     0.26
## 6106    X360 2011       Sports                              505 Games     0.03
## 6107     Wii 2009       Action                             Activision     0.11
## 6108     PS2 2003       Racing                                Ubisoft     0.14
## 6109     PS2 2008         Misc            Sony Computer Entertainment     0.14
## 6110    X360 2009      Shooter                      Rising Star Games     0.15
## 6111      PS 1997       Racing                              Playmates     0.16
## 6112     PS3 2012       Sports            Sony Computer Entertainment     0.00
## 6113     GBA 2003       Sports                             Activision     0.20
## 6114     GBA 2005       Action                                  Atari     0.20
## 6115      DS 2007    Adventure                           Game Factory     0.26
## 6116    SNES 1995     Fighting                    Human Entertainment     0.00
## 6117      DS 2007   Simulation                                    THQ     0.26
## 6118    SNES 1994       Sports           Konami Digital Entertainment     0.00
## 6119    XOne 2014       Action           Konami Digital Entertainment     0.15
## 6120      PS 2000     Platform                                Ubisoft     0.16
## 6121      XB 2005       Action                   Take-Two Interactive     0.21
## 6122    X360 2010         Misc                        Electronic Arts     0.16
## 6123     PS2 2001 Role-Playing                           Midway Games     0.09
## 6124     Wii 2010       Sports                   Take-Two Interactive     0.24
## 6125     PS4 2016     Fighting                     Namco Bandai Games     0.10
## 6126     PSP 2008       Action                   Nippon Ichi Software     0.06
## 6127      XB 2002       Sports                             Activision     0.21
## 6128     GBA 2006 Role-Playing           Konami Digital Entertainment     0.20
## 6129     GBA 2001       Action                             Activision     0.20
## 6130     PS2 2003       Racing                     Namco Bandai Games     0.14
## 6131     PS3 2010       Sports                             Activision     0.18
## 6132     PS2 2003       Sports                     Namco Bandai Games     0.00
## 6133      GC 2003       Racing                  Acclaim Entertainment     0.22
## 6134      WS 1999 Role-Playing                     Namco Bandai Games     0.00
## 6135     GBA 2005       Action                             Activision     0.20
## 6136     PS3 2008       Action            Sony Computer Entertainment     0.00
## 6137     PS4 2016       Sports           Konami Digital Entertainment     0.01
## 6138    X360 2006   Simulation                                   Sega     0.24
## 6139      XB 2005     Fighting                        Electronic Arts     0.21
## 6140     SAT 1995     Fighting                           SNK Playmore     0.00
## 6141     PSP 2006    Adventure             Disney Interactive Studios     0.25
## 6142      DS 2009       Action                                Ubisoft     0.15
## 6143     GBA 2004   Simulation                  Majesco Entertainment     0.20
## 6144     Wii 2006    Adventure                                    THQ     0.24
## 6145     GBA 2006 Role-Playing                               Nintendo     0.00
## 6146    2600 1982       Action                            Tigervision     0.26
## 6147     PS2 2004       Action                                 Capcom     0.14
## 6148     N64 1999       Sports                        Electronic Arts     0.27
## 6149      DS 2010       Action           Konami Digital Entertainment     0.16
## 6150    WiiU 2013       Racing                        Electronic Arts     0.14
## 6151      PS 2002       Action                    Hamster Corporation     0.16
## 6152     PS3 2010      Shooter                     Namco Bandai Games     0.10
## 6153     PS2 2003       Action                        Electronic Arts     0.14
## 6154     PS2 2005      Shooter                                Unknown     0.03
## 6155      XB 2003     Fighting                 Microsoft Game Studios     0.21
## 6156      GB 1991     Platform                               Nintendo     0.00
## 6157      DS 2007     Strategy           Konami Digital Entertainment     0.13
## 6158    XOne 2016     Fighting                     Namco Bandai Games     0.19
## 6159     GBA 2002     Fighting                                  Atari     0.20
## 6160     PSV 2013     Platform     Sony Computer Entertainment Europe     0.16
## 6161     PSP 2011 Role-Playing                     Namco Bandai Games     0.00
## 6162     NES 1991       Sports                     Namco Bandai Games     0.00
## 6163     PS2 2002         Misc                      Sammy Corporation     0.00
## 6164     PS2 2007       Action                     Empire Interactive     0.14
## 6165      GB 1991     Platform                               Nintendo     0.00
## 6166    SNES 1991       Action                             Tecmo Koei     0.00
## 6167     PS2 2008       Action             Disney Interactive Studios     0.12
## 6168     GBA 2002     Platform                                    THQ     0.20
## 6169      DS 2007       Sports                                Ubisoft     0.26
## 6170     PS2 2006       Puzzle                                Xplosiv     0.00
## 6171     PS2 2002       Racing                                    THQ     0.14
## 6172     Wii 2010       Sports                                Mastiff     0.27
## 6173     PS3 2013      Shooter                        Electronic Arts     0.11
## 6174     PS2 2007      Shooter            Sony Computer Entertainment     0.14
## 6175      XB 2003      Shooter                                    SCi     0.21
## 6176     PS3 2015         Misc                             Activision     0.09
## 6177     PS2 2003     Platform                                  Atari     0.14
## 6178      DS 2010         Misc Warner Bros. Interactive Entertainment     0.27
## 6179     PSP 2007       Sports            Sony Computer Entertainment     0.26
## 6180     GBA 2001     Platform                              Interplay     0.20
## 6181     PS2 2006       Racing                                  Atari     0.12
## 6182    WiiU 2012         Misc                               Nintendo     0.13
## 6183      DS 2007   Simulation                             Activision     0.26
## 6184      DS 2010         Misc                        Electronic Arts     0.16
## 6185      DS 2010       Racing                                    THQ     0.18
## 6186     PS2 2004     Fighting                      Eidos Interactive     0.14
## 6187    X360 2007     Fighting                                   Sega     0.20
## 6188     GBA 2002       Action                                Ubisoft     0.20
## 6189      PS 1998     Fighting            Sony Computer Entertainment     0.09
## 6190     PS2 2006 Role-Playing                              505 Games     0.14
## 6191    X360 2009     Platform                                 Capcom     0.12
## 6192     PS2 2002       Sports                           Midway Games     0.14
## 6193    SNES 1995     Platform                                 Laguna     0.03
## 6194      XB 2004       Sports                        Electronic Arts     0.21
## 6195     PS3 2011       Action                        Electronic Arts     0.11
## 6196     Wii 2011       Action                                   Sega     0.05
## 6197      PS 1995       Sports           Konami Digital Entertainment     0.16
## 6198     GBA 2003       Racing                         TDK Mediactive     0.20
## 6199    SNES 1992       Sports                                  Ocean     0.00
## 6200     PS3 2014         Misc                                Ubisoft     0.12
## 6201      GC 2004       Action                                    THQ     0.22
## 6202      XB 2001       Action           Konami Digital Entertainment     0.21
## 6203    X360 2011       Sports                             Activision     0.24
## 6204     PS4 2016       Action                            Square Enix     0.00
## 6205     3DS 2012         Misc                             Activision     0.13
## 6206     PS4 2016       Sports           Konami Digital Entertainment     0.00
## 6207     PS2 2007 Role-Playing                             Tecmo Koei     0.14
## 6208      PC 2004     Strategy                                  Atari     0.01
## 6209     PS2 2001       Sports                                    THQ     0.14
## 6210     PS2 2002       Sports                           Midway Games     0.14
## 6211     PSV 2014       Action                   Nippon Ichi Software     0.10
## 6212     Wii 2010     Platform                                Unknown     0.05
## 6213      DS 2006     Platform                             Activision     0.25
## 6214     PS2 2000       Sports        Midas Interactive Entertainment     0.14
## 6215      DS 2010    Adventure                             Activision     0.26
## 6216     PSP 2007       Action                   Take-Two Interactive     0.23
## 6217     PS2 2001      Shooter                      Eidos Interactive     0.05
## 6218     SAT 1997     Strategy                                    Elf     0.00
## 6219     PSP 2011         Misc            Sony Computer Entertainment     0.05
## 6220      DS 2010         Misc Warner Bros. Interactive Entertainment     0.26
## 6221      PS 1998     Strategy                             Activision     0.15
## 6222     PS3 2009         Misc                             Activision     0.14
## 6223     PS2 2008       Action                     Namco Bandai Games     0.00
## 6224      XB 2005     Platform                             Activision     0.21
## 6225     Wii 2010       Action                             Activision     0.15
## 6226     PS2 2009       Action                             Activision     0.11
## 6227    SNES 1992       Racing                           Video System     0.00
## 6228    WiiU 2012 Role-Playing                        Electronic Arts     0.14
## 6229      DS 2011         Misc                 GameMill Entertainment     0.26
## 6230     SAT 1994   Simulation                                   Sega     0.00
## 6231     PS2 2003       Sports                                  Atari     0.14
## 6232      GC 2003         Misc                               Nintendo     0.00
## 6233      DS 2006       Puzzle                                   Sega     0.00
## 6234      PS 1998 Role-Playing           Konami Digital Entertainment     0.00
## 6235    X360 2006       Sports                        Electronic Arts     0.24
## 6236      PC 2012       Action                        Electronic Arts     0.09
## 6237      GC 2001       Sports                  Acclaim Entertainment     0.21
## 6238     Wii 2008         Misc                              MTV Games     0.25
## 6239      DS 2008         Misc                                Ubisoft     0.25
## 6240     PS3 2013     Platform     Sony Computer Entertainment Europe     0.11
## 6241      PS 1998     Fighting                        Electronic Arts     0.15
## 6242     PS2 2008       Action                                    THQ     0.14
## 6243      XB 2005       Action                             Activision     0.21
## 6244     PS2 2003       Sports                  Acclaim Entertainment     0.14
## 6245     PS2 2008       Sports                        Electronic Arts     0.14
## 6246     Wii 2008    Adventure                     Namco Bandai Games     0.00
## 6247     Wii 2010       Action                                    THQ     0.22
## 6248    X360 2011       Action                                 Capcom     0.17
## 6249     GBA 2001       Sports           Konami Digital Entertainment     0.00
## 6250     PS2 2002    Adventure                                Ubisoft     0.14
## 6251     GBA 2003     Platform           Konami Digital Entertainment     0.20
## 6252     PSP 2011       Sports                   Take-Two Interactive     0.22
## 6253      PC 2010     Strategy                                Ubisoft     0.04
## 6254     SAT 1996      Shooter                     Namco Bandai Games     0.00
## 6255      PS 1997   Simulation                          From Software     0.06
## 6256      GB 2000     Platform                               Nintendo     0.00
## 6257     3DS 2012         Misc                        Nippon Columbia     0.00
## 6258     Wii 2009       Racing                               Nintendo     0.26
## 6259     PSP 2012       Sports           Konami Digital Entertainment     0.00
## 6260     PS4 2015       Action                             Activision     0.13
## 6261    SNES 1995         Misc                             Nichibutsu     0.00
## 6262     PSP 2008       Action                                  Spike     0.06
## 6263     PS2 2007       Sports                       Activision Value     0.13
## 6264      DS 2007         Misc                               Nintendo     0.00
## 6265     PS2 2000       Sports                   Take-Two Interactive     0.13
## 6266    2600 1982       Action                                 Coleco     0.26
## 6267     Wii 2014    Adventure                           Little Orbit     0.05
## 6268      DS 2007         Misc                        Electronic Arts     0.25
## 6269      XB 2003     Fighting                 Microsoft Game Studios     0.21
## 6270     PS3 2010       Sports                             Activision     0.18
## 6271      PS 1996     Fighting                       Tomy Corporation     0.00
## 6272      GC 2004     Fighting                                  Atari     0.21
## 6273    X360 2008   Simulation                     Namco Bandai Games     0.00
## 6274     GBA 2002       Racing           Konami Digital Entertainment     0.20
## 6275      PS 1998       Action                                 Capcom     0.00
## 6276      PS 1997       Action                             Tecmo Koei     0.09
## 6277     GBA 2001       Puzzle                                Unknown     0.20
## 6278     Wii 2013         Misc                  Majesco Entertainment     0.14
## 6279      DS 2005       Racing                        Electronic Arts     0.24
## 6280     PS2 2004 Role-Playing                            Square Enix     0.00
## 6281      PS 2001       Action               Conspiracy Entertainment     0.15
## 6282      XB 2001       Sports                           Midway Games     0.20
## 6283    X360 2010       Action                                   Sega     0.15
## 6284      XB 2006      Shooter                                Unknown     0.04
## 6285      DS 2009   Simulation                        Electronic Arts     0.25
## 6286     PS2 2009         Misc                        Electronic Arts     0.09
## 6287      DS 2008 Role-Playing           Konami Digital Entertainment     0.09
## 6288      PS 2000    Adventure                                    THQ     0.15
## 6289      PS 1997     Fighting                     Namco Bandai Games     0.02
## 6290      PS 2000       Sports                                Natsume     0.15
## 6291      PS 2001       Sports                  Acclaim Entertainment     0.15
## 6292     PS4 2015 Role-Playing                 Focus Home Interactive     0.09
## 6293    X360 2010     Strategy                                Ubisoft     0.12
## 6294     PS3 2013         Misc                                   Sega     0.08
## 6295      DS 2006       Action                                 Capcom     0.12
## 6296      DS 2005       Puzzle                     Namco Bandai Games     0.16
## 6297    2600 1984       Racing                             Activision     0.26
## 6298     PSP 2010   Simulation            Sony Computer Entertainment     0.02
## 6299      PC 2014       Action                     Bethesda Softworks     0.09
## 6300     PS2 2004       Sports            Sony Computer Entertainment     0.13
## 6301      PS 1996   Simulation                             Microprose     0.15
## 6302     PSP 2009       Sports           Konami Digital Entertainment     0.00
## 6303     PSP 2006     Strategy                     Namco Bandai Games     0.00
## 6304      PS 2000       Sports                      Eidos Interactive     0.15
## 6305     PS2 2002       Racing                            Codemasters     0.13
## 6306      GC 2003 Role-Playing                               Nintendo     0.21
## 6307    SNES 1993     Fighting                     Namco Bandai Games     0.00
## 6308    X360 2008      Shooter                                   Sega     0.15
## 6309    SNES 1994       Sports                     Namco Bandai Games     0.00
## 6310     3DS 2012         Misc                                   Sega     0.07
## 6311     PS2 2004       Action                                Ubisoft     0.13
## 6312     GBA 2002       Racing                             Infogrames     0.19
## 6313    X360 2011       Sports                                Ubisoft     0.14
## 6314     PSP 2006       Sports                        Electronic Arts     0.20
## 6315      DS 2008       Racing                            Codemasters     0.04
## 6316    X360 2006       Sports                        Electronic Arts     0.25
## 6317      DS 2009 Role-Playing                                 Capcom     0.00
## 6318    2600 1980         Misc                             Activision     0.25
## 6319     PS2 2009       Action             Disney Interactive Studios     0.12
## 6320     PSP 2011       Action Warner Bros. Interactive Entertainment     0.10
## 6321     PS3 2011       Action                                Ubisoft     0.06
## 6322      XB 2004       Racing                 Microsoft Game Studios     0.18
## 6323      GB 1996 Role-Playing                               ChunSoft     0.00
## 6324     PS2 2001       Racing                      Eidos Interactive     0.13
## 6325     GBA 2006     Platform                             Activision     0.19
## 6326     PS4 2015 Role-Playing                   Nippon Ichi Software     0.10
## 6327      GC 2005     Platform             Disney Interactive Studios     0.21
## 6328      DS 2010     Strategy                                Ubisoft     0.09
## 6329      GC 2002     Platform                        Electronic Arts     0.21
## 6330     PS3 2014       Action                                 Capcom     0.00
## 6331     GBA 2002 Role-Playing           Konami Digital Entertainment     0.00
## 6332     GBA 2002     Fighting                                    THQ     0.19
## 6333      GB 2000 Role-Playing                              Imagineer     0.00
## 6334     PS2 2004 Role-Playing                            Square Enix     0.13
## 6335     PS4 2014    Adventure                 Focus Home Interactive     0.08
## 6336      XB 2005       Racing                        Electronic Arts     0.20
## 6337     Wii 2007   Simulation                                    THQ     0.24
## 6338     PS2 2004      Shooter                                    THQ     0.13
## 6339     PS3 2008       Action                             Activision     0.20
## 6340      XB 2001       Sports                        Electronic Arts     0.20
## 6341      DS 2008         Misc                           Nordic Games     0.25
## 6342      PC 2011     Strategy                          Kalypso Media     0.10
## 6343     N64 1997       Sports           Konami Digital Entertainment     0.25
## 6344     N64 1998       Sports           Konami Digital Entertainment     0.00
## 6345     N64 1998       Sports                  Acclaim Entertainment     0.25
## 6346     N64 1999       Action                  Acclaim Entertainment     0.18
## 6347     N64 1999     Strategy                               Nintendo     0.22
## 6348    X360 2011      Shooter                                Ubisoft     0.14
## 6349     PS2 2005       Action                                 Capcom     0.13
## 6350     3DS 2012       Action                               Nintendo     0.00
## 6351     PSP 2005 Role-Playing                                Ubisoft     0.00
## 6352     PS2 2007       Action                        Electronic Arts     0.13
## 6353      DS 2011         Misc                            D3Publisher     0.13
## 6354      PC 2013       Racing                        Electronic Arts     0.04
## 6355     PS2 2007       Racing                                    THQ     0.13
## 6356      XB 2005       Action                             Activision     0.20
## 6357     GBA 2001       Sports                             Activision     0.19
## 6358     PS2 2000       Racing                     Namco Bandai Games     0.06
## 6359      DS 2010       Action                                    THQ     0.13
## 6360     Wii 2008       Sports                      DTP Entertainment     0.23
## 6361    X360 2008         Misc           Konami Digital Entertainment     0.25
## 6362      DS 2008 Role-Playing                                  Atlus     0.10
## 6363    XOne 2014       Action Warner Bros. Interactive Entertainment     0.13
## 6364    SNES 1995       Sports           Konami Digital Entertainment     0.00
## 6365     PS3 2008       Action                                   Sega     0.22
## 6366    X360 2013       Action                                 Capcom     0.12
## 6367     Wii 2010       Sports                   Take-Two Interactive     0.25
## 6368     PS3 2011       Racing                             Activision     0.25
## 6369    SNES 1994   Simulation                                   Hect     0.00
## 6370      DS 2009 Role-Playing                                  Atlus     0.14
## 6371     GBA 2001 Role-Playing                               Nintendo     0.00
## 6372     PS2 2001       Racing                  Acclaim Entertainment     0.13
## 6373      GC 2003       Sports                        Electronic Arts     0.21
## 6374    X360 2015     Fighting                     Namco Bandai Games     0.16
## 6375      XB 2002       Racing                        Electronic Arts     0.20
## 6376    X360 2009      Shooter                        SouthPeak Games     0.15
## 6377      PS 1999       Racing                        Electronic Arts     0.15
## 6378      DS 2010   Simulation                               Nintendo     0.25
## 6379    X360 2009 Role-Playing                            Square Enix     0.25
## 6380      DS 2010     Strategy                               Nintendo     0.00
## 6381     PS4 2016       Racing                            Codemasters     0.01
## 6382     GBA 2005         Misc                 Zoo Digital Publishing     0.19
## 6383    X360 2011         Misc                             Activision     0.25
## 6384    X360 2007       Action                                    THQ     0.23
## 6385    X360 2008       Action                                   Sega     0.22
## 6386     Wii 2009         Misc                   Take-Two Interactive     0.24
## 6387      PS 1999 Role-Playing                             Activision     0.15
## 6388     PS2 2002      Shooter                     BAM! Entertainment     0.13
## 6389     PS2 2010       Action Warner Bros. Interactive Entertainment     0.08
## 6390      PS 1998       Sports           Konami Digital Entertainment     0.00
## 6391     3DS 2016    Adventure                                 Capcom     0.00
## 6392      GC 2006   Simulation                        Electronic Arts     0.21
## 6393      DS 2008       Puzzle                  Majesco Entertainment     0.24
## 6394     3DS 2013       Action Warner Bros. Interactive Entertainment     0.16
## 6395    X360 2007       Sports                   Take-Two Interactive     0.18
## 6396     PS2 2003       Racing                                   Sega     0.00
## 6397      DS 2007       Sports                        Electronic Arts     0.24
## 6398     PS2 2003   Simulation           Konami Digital Entertainment     0.13
## 6399      DS 2009         Misc                                Ubisoft     0.25
## 6400      PS 1995      Shooter                         GT Interactive     0.15
## 6401    X360 2010       Action                      Rising Star Games     0.18
## 6402     PS3 2008         Misc                                Unknown     0.25
## 6403     Wii 2009       Puzzle                                    THQ     0.25
## 6404      PS 2000       Sports            Sony Computer Entertainment     0.15
## 6405      XB 2002       Sports                        Electronic Arts     0.20
## 6406      DS 2011         Misc                             Activision     0.25
## 6407     PS4 2015      Shooter                              505 Games     0.09
## 6408     3DS 2014       Action                                Unknown     0.15
## 6409      DS 2010    Adventure                                    THQ     0.19
## 6410     PSP 2006       Sports                        Electronic Arts     0.24
## 6411      PS 1996     Fighting            Sony Computer Entertainment     0.06
## 6412     PS3 2014    Adventure                             Activision     0.11
## 6413      PS 1998 Role-Playing                    Crave Entertainment     0.15
## 6414    SNES 1995       Puzzle                              Banpresto     0.00
## 6415    X360 2009       Sports                       Activision Value     0.25
## 6416     PS2 2005     Fighting                     Namco Bandai Games     0.13
## 6417     PS2 2004     Strategy                                  Atari     0.13
## 6418     PSV 2012       Action                             Tecmo Koei     0.13
## 6419      DS 2007       Puzzle                            Mumbo Jumbo     0.25
## 6420    X360 2006       Action                        Electronic Arts     0.23
## 6421     PS2 2007    Adventure                                Ubisoft     0.13
## 6422      DS 2009         Misc                     Mentor Interactive     0.25
## 6423     PSV 2011       Action                             Tecmo Koei     0.06
## 6424     Wii 2009       Sports                   Take-Two Interactive     0.25
## 6425     PS3 2010       Sports           Konami Digital Entertainment     0.00
## 6426     GBA 2003       Action                  Majesco Entertainment     0.19
## 6427    XOne 2015       Action                        Electronic Arts     0.15
## 6428     PS3 2011       Action                             Tecmo Koei     0.04
## 6429     Wii 2008       Sports                                Ubisoft     0.24
## 6430     Wii 2009   Simulation                                Ubisoft     0.25
## 6431      DS 2007   Simulation                  Majesco Entertainment     0.24
## 6432     Wii 2009         Misc           Konami Digital Entertainment     0.16
## 6433     PS2 2006       Action                                Ubisoft     0.13
## 6434     Wii 2009       Sports                   Take-Two Interactive     0.14
## 6435     PS3 2012 Role-Playing                             Tecmo Koei     0.06
## 6436    X360 2012       Action                             Activision     0.18
## 6437     PSP 2010     Fighting                     Namco Bandai Games     0.11
## 6438     GBA 2004         Misc                  Majesco Entertainment     0.19
## 6439      XB 2003       Sports                                   Sega     0.20
## 6440      PS 1997       Sports                             Tecmo Koei     0.00
## 6441     PS3 2006       Sports            Sony Computer Entertainment     0.24
## 6442     PS2 2002         Misc            Pacific Century Cyber Works     0.11
## 6443     Wii 2010      Shooter                                Mastiff     0.25
## 6444    X360 2007       Sports                   Take-Two Interactive     0.24
## 6445     GBA 2002 Role-Playing                                  Atari     0.19
## 6446    X360 2014       Racing                                Ubisoft     0.06
## 6447     Wii 2011         Misc                                    THQ     0.23
## 6448    X360 2007     Strategy                      Eidos Interactive     0.21
## 6449      DS 2005     Platform                                Ubisoft     0.21
## 6450     PS3 2013       Action                     Namco Bandai Games     0.00
## 6451      DC 1998      Shooter                                   Sega     0.00
## 6452     Wii 2010       Action                        Electronic Arts     0.22
## 6453     PS3 2010   Simulation                     Namco Bandai Games     0.00
## 6454     Wii 2009   Simulation                        Electronic Arts     0.22
## 6455     PS2 2001       Action                   Take-Two Interactive     0.13
## 6456      XB 2002      Shooter                                   Sega     0.16
## 6457      PS 1999       Sports           Konami Digital Entertainment     0.00
## 6458     PS3 2010 Role-Playing                                  Spike     0.24
## 6459      PS 1996 Role-Playing                          From Software     0.08
## 6460     PSV 2014         Misc                   Nippon Ichi Software     0.13
## 6461     3DS 2013       Action                     Namco Bandai Games     0.00
## 6462      DS 2009 Role-Playing                            Hudson Soft     0.08
## 6463      PS 1996       Sports            Sony Computer Entertainment     0.15
## 6464     PS2 2007   Simulation                                Ubisoft     0.13
## 6465     PS2 2008      Shooter                       Activision Value     0.13
## 6466     Wii 2015       Action                             Activision     0.05
## 6467      PC 2008     Strategy                 Microsoft Game Studios     0.04
## 6468      PS 1997     Platform            Sony Computer Entertainment     0.15
## 6469      DS 2009   Simulation           Konami Digital Entertainment     0.00
## 6470      DS 2007 Role-Playing                     Namco Bandai Games     0.00
## 6471     PS2 2006       Sports                           Midway Games     0.13
## 6472     PSV 2014     Fighting                     Namco Bandai Games     0.00
## 6473     GBA 2002       Action                                    THQ     0.19
## 6474     GEN 1994       Racing                                   Sega     0.00
## 6475     PSP 2005       Racing                          Vivendi Games     0.16
## 6476     PS3 2010       Action                            Deep Silver     0.05
## 6477     PS2 2008    Adventure             Disney Interactive Studios     0.09
## 6478      DS 2007         Misc                               Nintendo     0.00
## 6479     Wii 2009   Simulation                     Namco Bandai Games     0.24
## 6480      DS 2008    Adventure                            Codemasters     0.24
## 6481     3DS 2013       Sports                                Level 5     0.00
## 6482     PS2 2004       Racing                   Take-Two Interactive     0.13
## 6483      DS 2010         Misc                                Ubisoft     0.22
## 6484     PS2 2007 Role-Playing                                   Sega     0.10
## 6485     Wii 2010   Simulation                                  Atari     0.24
## 6486     PS3 2013       Sports           Konami Digital Entertainment     0.00
## 6487     GBA 2002       Action                                    THQ     0.19
## 6488     PS2 2006       Action                                 Capcom     0.00
## 6489     PSP 2006     Fighting                     Namco Bandai Games     0.26
## 6490     Wii 2011 Role-Playing                               Nintendo     0.00
## 6491     GBA 2002     Platform                                    THQ     0.19
## 6492     GBA 2006 Role-Playing                               Nintendo     0.00
## 6493     GBA 2005       Racing                        Electronic Arts     0.19
## 6494     PSV 2012         Misc                                Ubisoft     0.11
## 6495      PS 2000   Simulation                             Activision     0.15
## 6496     Wii 2009 Role-Playing                            Square Enix     0.13
## 6497      GC 2000       Racing                                Unknown     0.06
## 6498      DS 2008   Simulation                  Majesco Entertainment     0.24
## 6499      GC 2002      Shooter                              LucasArts     0.20
## 6500     PS2 2002     Fighting                                Ubisoft     0.13
## 6501      DS 2011    Adventure                                 Capcom     0.00
## 6502     Wii 2010         Misc                              Zoo Games     0.25
## 6503      DS 2007         Misc                              505 Games     0.24
## 6504     Wii 2010       Sports                                Ubisoft     0.14
## 6505      DS 2009       Puzzle Warner Bros. Interactive Entertainment     0.00
## 6506      PC 2006 Role-Playing                   Take-Two Interactive     0.01
## 6507     PS3 2011       Sports           Konami Digital Entertainment     0.00
## 6508      DS 2004       Sports                        Electronic Arts     0.24
## 6509     3DS 2014       Action                             Activision     0.14
## 6510     GBA 2006         Misc           Konami Digital Entertainment     0.14
## 6511     GBA 2003       Sports           Konami Digital Entertainment     0.00
## 6512     GBA 2004    Adventure                              Banpresto     0.00
## 6513    X360 2010     Strategy                           PopCap Games     0.24
## 6514     PS2 2002       Racing                     BAM! Entertainment     0.13
## 6515     PS3 2009         Misc             Disney Interactive Studios     0.17
## 6516      DS 2009       Action                             Activision     0.17
## 6517     3DS 2013 Role-Playing                                  Atlus     0.10
## 6518      PS 1999         Misc                       Enix Corporation     0.04
## 6519     PSP 2009         Misc                                   Sega     0.00
## 6520     PS3 2007       Racing                                    THQ     0.18
## 6521     PSP 2008     Fighting                     Namco Bandai Games     0.00
## 6522     PSP 2009       Action                                 Capcom     0.00
## 6523     N64 1996       Action                             Activision     0.21
## 6524     N64 2000   Simulation                              LucasArts     0.21
## 6525     N64 1999      Shooter                         GT Interactive     0.21
## 6526     N64 1999      Shooter                  Acclaim Entertainment     0.21
## 6527     PS2 2007       Sports                        Electronic Arts     0.13
## 6528     PS2 2004   Simulation                            Indie Games     0.06
## 6529     PS2 2002       Sports           Konami Digital Entertainment     0.13
## 6530     GBA 2002    Adventure                               NewKidCo     0.19
## 6531     PSV 2013 Role-Playing                Marvelous Entertainment     0.13
## 6532     PS3 2014       Action                                   Sega     0.00
## 6533     PSP 2009       Action                             Activision     0.11
## 6534    X360 2010       Sports                             Activision     0.17
## 6535      XB 2003       Sports                         TDK Mediactive     0.19
## 6536      GC 2001    Adventure                                Ubisoft     0.20
## 6537    X360 2014       Action                             Activision     0.10
## 6538    2600 1981       Sports                                  Atari     0.24
## 6539     PS2 2009       Sports                        Electronic Arts     0.12
## 6540      DS 2007     Strategy                     Namco Bandai Games     0.00
## 6541     PS3 2007       Action                                Ubisoft     0.20
## 6542     Wii 2009       Action                             Activision     0.14
## 6543      XB 2003 Role-Playing                                  Atari     0.19
## 6544     PS3 2012    Adventure                 Focus Home Interactive     0.05
## 6545    X360 2012 Role-Playing                 Focus Home Interactive     0.15
## 6546      DS 2011         Misc                      Rising Star Games     0.15
## 6547      PS 2000       Racing                  Acclaim Entertainment     0.14
## 6548     PS2 2001 Role-Playing                      Eidos Interactive     0.13
## 6549      GC 2003       Racing                          Vivendi Games     0.20
## 6550     Wii 2008         Misc                            Hudson Soft     0.01
## 6551     PSP 2009       Sports            Sony Computer Entertainment     0.24
## 6552      DS 2004       Puzzle                               Nintendo     0.13
## 6553     PS3 2014       Action                             Tecmo Koei     0.00
## 6554    X360 2014       Racing                            Codemasters     0.08
## 6555     GBA 2004       Action                               Nintendo     0.10
## 6556     Wii 2007       Action                                    THQ     0.24
## 6557    X360 2005       Action                                Ubisoft     0.20
## 6558      DS 2008    Adventure                           Game Factory     0.24
## 6559     PS2 2005   Simulation                              Banpresto     0.00
## 6560     GBA 2003       Action           Konami Digital Entertainment     0.18
## 6561     SAT 1997     Fighting                                 Capcom     0.00
## 6562    X360 2013      Shooter                        Electronic Arts     0.16
## 6563     GBA 2004         Misc                  Majesco Entertainment     0.18
## 6564      XB 2005    Adventure                        Electronic Arts     0.19
## 6565     PSP 2007       Racing                                   Sega     0.03
## 6566     PS2 2004     Fighting                 Ignition Entertainment     0.13
## 6567      PS 1998     Fighting                     Virgin Interactive     0.14
## 6568    X360 2008      Shooter                                  Atari     0.08
## 6569     SAT 1996       Sports                                   Sega     0.00
## 6570     Wii 2009       Sports                              505 Games     0.17
## 6571     PS3 2013       Action                     Namco Bandai Games     0.10
## 6572     PS2 2002    Adventure            Sony Computer Entertainment     0.13
## 6573    X360 2006       Sports                             Tecmo Koei     0.15
## 6574     Wii 2008   Simulation                                Ubisoft     0.23
## 6575      XB 2005         Misc                                    THQ     0.19
## 6576      PS 1998       Racing                                 Takara     0.00
## 6577     PS3 2012       Action            Sony Computer Entertainment     0.00
## 6578     PS3 2011       Action                     Bethesda Softworks     0.12
## 6579      GC 2004     Platform                             Activision     0.20
## 6580      DS 2006    Adventure             Disney Interactive Studios     0.23
## 6581     GBA 2002     Platform                        Electronic Arts     0.18
## 6582      PS 1999   Simulation                          From Software     0.07
## 6583    SNES 1999     Strategy                               Nintendo     0.00
## 6584    2600 1987      Shooter                                  Atari     0.24
## 6585     PS3 2008       Racing                        Electronic Arts     0.22
## 6586     SAT 1997 Role-Playing                            Hudson Soft     0.00
## 6587     PS2 2007   Simulation                              Banpresto     0.00
## 6588     GBA 2002       Racing                           Liquid Games     0.18
## 6589    WiiU 2016       Action                               Nintendo     0.03
## 6590      DS 2009    Adventure                   Take-Two Interactive     0.24
## 6591      GC 2002       Sports                             Infogrames     0.20
## 6592      XB 2002       Sports                  Acclaim Entertainment     0.19
## 6593      PC 2010   Simulation                                Ubisoft     0.00
## 6594     PS2 2004       Racing                             Activision     0.13
## 6595     PS2 2009    Adventure                      Eidos Interactive     0.00
## 6596      PS 1999       Sports                        Electronic Arts     0.14
## 6597      PC 2011       Action                              LucasArts     0.10
## 6598     PS2 2003       Sports            Sony Computer Entertainment     0.13
## 6599     PSP 2005       Racing                            Codemasters     0.00
## 6600     GBA 2002     Strategy                              Banpresto     0.00
## 6601     GBA 2002     Platform           Konami Digital Entertainment     0.16
## 6602      DS 2005         Misc                               Nintendo     0.21
## 6603     PS2 2001       Racing            Sony Computer Entertainment     0.13
## 6604     Wii 2011         Misc                   Take-Two Interactive     0.23
## 6605     SAT 1996 Role-Playing                                    NEC     0.00
## 6606      XB 2004 Role-Playing                  Acclaim Entertainment     0.19
## 6607      GC 2004       Sports                        Electronic Arts     0.20
## 6608     GBA 2001     Fighting                                Ubisoft     0.18
## 6609      XB 2003   Simulation                              LucasArts     0.19
## 6610      PS 1998       Sports                                  Axela     0.00
## 6611     PS3 2007       Action                        Electronic Arts     0.16
## 6612     SAT 1998     Strategy                     Namco Bandai Games     0.00
## 6613      DS 2008   Simulation                                Ubisoft     0.23
## 6614     PS2 2006       Action                                    THQ     0.12
## 6615      DS 2010 Role-Playing                             Activision     0.22
## 6616     PSP 2007         Misc                    Crave Entertainment     0.24
## 6617      PS 1999 Role-Playing                                    3DO     0.14
## 6618     PS3 2012    Adventure     Sony Computer Entertainment Europe     0.04
## 6619     PS4 2015     Platform            Sony Computer Entertainment     0.09
## 6620     PS2 2009       Action                              LucasArts     0.17
## 6621      GC 2002    Adventure                          Vivendi Games     0.15
## 6622    X360 2008       Racing                        Electronic Arts     0.23
## 6623     PS2 2000       Sports                   Take-Two Interactive     0.12
## 6624    SNES 1991     Strategy                             Tecmo Koei     0.00
## 6625     PS3 2009      Shooter                          Vivendi Games     0.12
## 6626     Wii 2008       Action                                 Capcom     0.14
## 6627     3DS 2011   Simulation                                Ubisoft     0.11
## 6628     GBA 2006     Platform                          Vivendi Games     0.18
## 6629      DS 2006       Action             Disney Interactive Studios     0.23
## 6630      XB 2005         Misc                             Activision     0.19
## 6631     PS3 2014         Misc                                   Sega     0.09
## 6632     SAT 1994      Shooter                  Acclaim Entertainment     0.00
## 6633      GB 2000       Sports           Konami Digital Entertainment     0.00
## 6634     PS3 2012 Role-Playing                 Focus Home Interactive     0.10
## 6635      GC 2006       Action                           Midway Games     0.20
## 6636     PS2 2003         Misc             Disney Interactive Studios     0.12
## 6637      XB 2002       Sports                        Electronic Arts     0.19
## 6638      DS 2009         Misc                                Ubisoft     0.21
## 6639      PS 1998     Fighting                                  Titus     0.14
## 6640     GBA 2002     Platform             Disney Interactive Studios     0.18
## 6641     PSP 2010         Misc                                   Sega     0.00
## 6642      PS 1994     Strategy                                ArtDink     0.00
## 6643      XB 2001         Misc                 Microsoft Game Studios     0.19
## 6644      PS 1999         Misc                                Ubisoft     0.14
## 6645     Wii 2007       Sports                             Activision     0.22
## 6646      XB 2003       Sports                 Microsoft Game Studios     0.20
## 6647      PS 2000      Shooter                                Sunsoft     0.14
## 6648     3DS 2011      Shooter                            D3Publisher     0.04
## 6649     GBA 2004         Misc                  Majesco Entertainment     0.18
## 6650    X360 2006       Racing                                    THQ     0.22
## 6651    X360 2012       Action                             Activision     0.14
## 6652    X360 2011       Action                                    THQ     0.16
## 6653     PS3 2009       Action                                    THQ     0.15
## 6654     PS3 2012   Simulation           Konami Digital Entertainment     0.10
## 6655    X360 2008       Action                             Activision     0.12
## 6656      PS 1996       Racing                              Psygnosis     0.14
## 6657      DS 2007   Simulation                     Empire Interactive     0.09
## 6658      PS 2001       Action                     BAM! Entertainment     0.14
## 6659    X360 2007       Action                        Electronic Arts     0.22
## 6660     PS2 2008       Action                             Tecmo Koei     0.00
## 6661     PS3 2011         Misc                                Ubisoft     0.10
## 6662     3DS 2013       Sports                        Electronic Arts     0.00
## 6663      XB 2004      Shooter                          Vivendi Games     0.19
## 6664     GBA 2001       Puzzle                             Activision     0.10
## 6665      GC 2005      Shooter                        Electronic Arts     0.19
## 6666     Wii 2008       Action                             Activision     0.22
## 6667      GC 2003     Platform                                   Sega     0.19
## 6668     GBA 2001         Misc                           Midway Games     0.18
## 6669    X360 2009       Action                                    THQ     0.25
## 6670      WS 2001 Role-Playing                             SquareSoft     0.00
## 6671     PS2 2002       Racing            Sony Computer Entertainment     0.12
## 6672    X360 2011       Action                             Activision     0.18
## 6673     PSP 2008       Sports                        Electronic Arts     0.06
## 6674      PS 1997 Role-Playing                                   Gust     0.00
## 6675    X360 2006       Action                                    THQ     0.21
## 6676     GBA 2004         Misc                  Majesco Entertainment     0.18
## 6677      XB 2005       Sports                        Electronic Arts     0.19
## 6678      XB 2004         Misc                                  Atari     0.19
## 6679      PS 2000     Fighting                                Ubisoft     0.14
## 6680      XB 2003      Shooter                                Ubisoft     0.16
## 6681    X360 2007       Racing                                    THQ     0.23
## 6682      NG 1994     Fighting                                    SNK     0.00
## 6683     Wii 2007     Fighting                           Midway Games     0.21
## 6684    X360 2008       Sports                   Take-Two Interactive     0.14
## 6685     N64 1999 Role-Playing           Konami Digital Entertainment     0.16
## 6686     N64 1999       Sports                           Midway Games     0.23
## 6687     N64 1998       Sports                        Fox Interactive     0.20
## 6688     N64 1997         Misc                   Take-Two Interactive     0.20
## 6689     N64 1997       Racing                                  Ocean     0.20
## 6690     N64 1997       Racing                                Ubisoft     0.11
## 6691     N64 1998       Action                         GT Interactive     0.20
## 6692     N64 1997       Sports                           Midway Games     0.23
## 6693     N64 1999       Sports                               Nintendo     0.20
## 6694     PS4 2015     Fighting                     Namco Bandai Games     0.07
## 6695     Wii 2010         Misc                              Mindscape     0.00
## 6696     PS2 2008       Action                          Vivendi Games     0.12
## 6697      GC 2003     Fighting                        Electronic Arts     0.19
## 6698     PS2 2005     Platform                                    THQ     0.12
## 6699      PS 1996       Racing            Sony Computer Entertainment     0.00
## 6700      XB 2005   Simulation                        Electronic Arts     0.19
## 6701      PS 1998         Misc                              Interplay     0.14
## 6702    XOne 2015 Role-Playing                            Square Enix     0.15
## 6703     PS2 2003       Sports                                   Sega     0.12
## 6704      DS 2006 Role-Playing                               Nintendo     0.00
## 6705     SAT 1998       Sports                                   Sega     0.00
## 6706      PC 2011    Adventure                   Take-Two Interactive     0.08
## 6707     SAT 1998    Adventure                       NEC Interchannel     0.00
## 6708      PC 2012       Action                            Square Enix     0.03
## 6709    X360 2008    Adventure             Disney Interactive Studios     0.18
## 6710     PSP 2009 Role-Playing                             Activision     0.17
## 6711     3DS 2015 Role-Playing                                  FuRyu     0.11
## 6712     PSP 2009 Role-Playing                   Nippon Ichi Software     0.10
## 6713     PS2 2005       Action                                 Capcom     0.03
## 6714     Wii 2008         Misc             Disney Interactive Studios     0.20
## 6715      PS 1995       Sports                  Acclaim Entertainment     0.14
## 6716    X360 2006      Shooter                                Ubisoft     0.20
## 6717     GBA 2002 Role-Playing                                Natsume     0.18
## 6718     GBA 2002       Sports           Konami Digital Entertainment     0.00
## 6719     PS3 2011       Action                             Activision     0.14
## 6720      PS 1998       Action                  Acclaim Entertainment     0.14
## 6721     Wii 2009       Action                             Activision     0.19
## 6722     PS2 2002       Sports                     Namco Bandai Games     0.00
## 6723    X360 2012       Action                             Tecmo Koei     0.16
## 6724     PS3 2010     Platform                            D3Publisher     0.12
## 6725     PS3 2015       Action                                   Sega     0.00
## 6726     Wii 2010       Action                                Ubisoft     0.11
## 6727     PS2 2008       Action                             Tecmo Koei     0.12
## 6728      DS 2009   Simulation                                Ubisoft     0.16
## 6729    2600 1982       Action           20th Century Fox Video Games     0.23
## 6730      XB 2005      Shooter                                Ubisoft     0.19
## 6731      PS 1999 Role-Playing                                Ubisoft     0.14
## 6732     PS3 2010         Misc            Sony Computer Entertainment     0.07
## 6733    X360 2007   Simulation                              505 Games     0.19
## 6734      PS 2000       Racing                        Electronic Arts     0.14
## 6735      DS 2009   Simulation                        Electronic Arts     0.23
## 6736     Wii 2010     Platform                                    THQ     0.22
## 6737     PS2 2006    Adventure                                Ubisoft     0.12
## 6738     Wii 2007       Sports                                 Capcom     0.20
## 6739     PS2 2001       Racing            Sony Computer Entertainment     0.12
## 6740      GC 2005     Platform                           Midway Games     0.19
## 6741     PS2 2007       Racing                                    THQ     0.12
## 6742    X360 2009       Racing                             Activision     0.14
## 6743     PS3 2007       Action                        Electronic Arts     0.18
## 6744      PC 2015     Strategy                                Ubisoft     0.02
## 6745      PS 1999     Strategy                        Electronic Arts     0.14
## 6746      DS 2008       Puzzle                      Rising Star Games     0.06
## 6747     Wii 2009 Role-Playing                                 Capcom     0.00
## 6748     PS3 2009       Racing                            Codemasters     0.08
## 6749     PS3 2010         Misc                        Electronic Arts     0.18
## 6750    X360 2013       Action           Konami Digital Entertainment     0.06
## 6751      PS 1996      Shooter           Konami Digital Entertainment     0.14
## 6752      PS 1996     Platform            Sony Computer Entertainment     0.05
## 6753      GC 2002         Misc                                  Atari     0.19
## 6754     PS3 2008       Racing                       Black Bean Games     0.12
## 6755     PS2 2004 Role-Playing                            Square Enix     0.12
## 6756      PS 1997       Racing                                 Takara     0.00
## 6757      DS 2009    Adventure             Disney Interactive Studios     0.22
## 6758     GBA 2002       Action                          Vivendi Games     0.18
## 6759     PS3 2007       Sports                                  Spike     0.23
## 6760      GC 2005 Role-Playing                             Activision     0.19
## 6761     GBA 2005         Misc                 Zoo Digital Publishing     0.18
## 6762     PSP 2007       Racing                                Ubisoft     0.03
## 6763     PS3 2008      Shooter                            Codemasters     0.21
## 6764      GC 2002       Sports                               Nintendo     0.19
## 6765     3DS 2014    Adventure                           Little Orbit     0.04
## 6766    X360 2011       Action                                Ubisoft     0.07
## 6767     GBA 2004       Racing                               Nintendo     0.11
## 6768     GBA 2004      Shooter                               Nintendo     0.08
## 6769     PS2 2008    Adventure                                    THQ     0.12
## 6770      DS 2013   Simulation             Disney Interactive Studios     0.13
## 6771     PS2 2005    Adventure                            Global Star     0.12
## 6772      DS 2008 Role-Playing                     Namco Bandai Games     0.00
## 6773     PS2 2006 Role-Playing                     Namco Bandai Games     0.12
## 6774    X360 2011       Action                             Tecmo Koei     0.16
## 6775     GBA 2005   Simulation                                Ubisoft     0.18
## 6776      PS 2001       Sports           Konami Digital Entertainment     0.00
## 6777      DS 2010      Shooter                             Activision     0.22
## 6778      DS 2008       Action                 Ignition Entertainment     0.07
## 6779    XOne 2014       Racing                                Ubisoft     0.12
## 6780     PSV 2015       Action Warner Bros. Interactive Entertainment     0.03
## 6781      DS 2008 Role-Playing                      Rising Star Games     0.11
## 6782      DS 2006    Adventure             Disney Interactive Studios     0.23
## 6783     PS3 2010       Racing                             Activision     0.21
## 6784      DS 2011       Action           Konami Digital Entertainment     0.00
## 6785      PS 1995     Strategy                              Mindscape     0.14
## 6786     Wii 2009    Adventure                                Ubisoft     0.12
## 6787      PS 1996       Sports                             Tecmo Koei     0.04
## 6788      PS 1997       Action            Sony Computer Entertainment     0.14
## 6789     PSP 2005       Sports            Sony Computer Entertainment     0.23
## 6790      PS 2000      Shooter                                    3DO     0.14
## 6791    X360 2008     Strategy                        Electronic Arts     0.16
## 6792    X360 2011         Misc                                   Sega     0.16
## 6793    WiiU 2012       Sports                        Electronic Arts     0.22
## 6794     PSV 2014    Adventure                  Marvelous Interactive     0.11
## 6795      PC 2011      Shooter                                    THQ     0.11
## 6796      DS 2009         Misc             Disney Interactive Studios     0.08
## 6797    X360 2009       Action                             Activision     0.20
## 6798     PS2 2002         Misc                                    THQ     0.12
## 6799      PS 1999   Simulation           Konami Digital Entertainment     0.00
## 6800     PS2 2003       Sports           Konami Digital Entertainment     0.12
## 6801     3DS 2011   Simulation                     Namco Bandai Games     0.10
## 6802    X360 2009       Sports                       Activision Value     0.23
## 6803      XB 2004       Racing                     Namco Bandai Games     0.18
## 6804      PS 1995       Sports            Sony Computer Entertainment     0.00
## 6805     PS2 2003     Platform                  Acclaim Entertainment     0.12
## 6806      DS 2008       Action                                   Sega     0.22
## 6807     PS2 2004       Action           Konami Digital Entertainment     0.03
## 6808     PS2 2006     Fighting                                 Capcom     0.11
## 6809     PSP 2011       Sports           Konami Digital Entertainment     0.00
## 6810      DS 2009    Adventure                                Ubisoft     0.10
## 6811     PS2 2005      Shooter                        Electronic Arts     0.12
## 6812      DS 2006    Adventure                                Ubisoft     0.11
## 6813      GC 2005   Simulation                                Ubisoft     0.19
## 6814      XB 2002       Action                                 Capcom     0.14
## 6815     GBA 2005     Platform                               Nintendo     0.17
## 6816      PS 1997     Fighting                     Xing Entertainment     0.04
## 6817      PS 1997       Action                              Psygnosis     0.13
## 6818     PS3 2010       Sports                                Ubisoft     0.06
## 6819     Wii 2010       Action                             Activision     0.13
## 6820      XB 2003       Racing                         TDK Mediactive     0.18
## 6821     PS3 2011 Role-Playing                   Nippon Ichi Software     0.05
## 6822     PS3 2008         Misc                              MTV Games     0.21
## 6823     Wii 2010       Sports                            Hudson Soft     0.15
## 6824      DS 2005       Action                        Electronic Arts     0.21
## 6825     PSP 2005         Misc                           Midway Games     0.21
## 6826    XOne 2015       Racing                            Codemasters     0.08
## 6827     3DS 2013     Platform                             Activision     0.10
## 6828     Wii 2010       Sports                               XS Games     0.23
## 6829     PSP 2008 Role-Playing                   Nippon Ichi Software     0.05
## 6830     Wii 2008         Misc                        Electronic Arts     0.20
## 6831      XB 2003       Racing                  Acclaim Entertainment     0.18
## 6832     Wii 2008         Misc                              MTV Games     0.17
## 6833      XB 2003      Shooter                                Unknown     0.05
## 6834     PS2 2005         Misc                                   Sega     0.12
## 6835     PSV 2012     Fighting                                 Capcom     0.14
## 6836      XB 2003      Shooter                     Namco Bandai Games     0.18
## 6837     PSP 2010     Platform                            D3Publisher     0.10
## 6838      PC 2010      Shooter                                    THQ     0.00
## 6839      GC 2005       Action                                Ubisoft     0.19
## 6840     3DS 2015 Role-Playing                                  Atlus     0.16
## 6841     Wii 2007         Misc                             Activision     0.22
## 6842     PS2 2003 Role-Playing                              Banpresto     0.00
## 6843     PSP 2010       Sports           Konami Digital Entertainment     0.00
## 6844      GC 2001       Racing                        Electronic Arts     0.19
## 6845     Wii 2010    Adventure                                    THQ     0.16
## 6846     Wii 2008       Sports                     Oxygen Interactive     0.02
## 6847     PS2 2006         Misc                                   Sega     0.00
## 6848      XB 2001       Action                 Microsoft Game Studios     0.18
## 6849      DS 2007 Role-Playing                      Rising Star Games     0.16
## 6850     GBA 2004         Misc                  Majesco Entertainment     0.17
## 6851     Wii 2010       Action Warner Bros. Interactive Entertainment     0.17
## 6852      XB 2005     Fighting                                  Atari     0.18
## 6853      DS 2008   Simulation                                    THQ     0.22
## 6854     PS3 2012       Sports                        Electronic Arts     0.09
## 6855     PS2 2003 Role-Playing                                   Sega     0.00
## 6856     GBA 2005       Puzzle                     Namco Bandai Games     0.17
## 6857     PS2 2005       Racing                               ValuSoft     0.12
## 6858     Wii 2009         Misc                                Ubisoft     0.22
## 6859     PS2 2007       Racing                             Activision     0.12
## 6860     PSP 2006 Role-Playing                      Rising Star Games     0.15
## 6861      GC 2004 Role-Playing                  Marvelous Interactive     0.19
## 6862     PSP 2009       Sports                        Electronic Arts     0.21
## 6863    X360 2006       Action                        Electronic Arts     0.20
## 6864     PS2 2008       Sports           Konami Digital Entertainment     0.00
## 6865     PSP 2009       Racing                                    THQ     0.18
## 6866     PS3 2009       Action                             Activision     0.19
## 6867    2600 1981       Action                                  Taito     0.22
## 6868     N64 1999       Action                           Midway Games     0.19
## 6869     N64 1999         Misc                  Acclaim Entertainment     0.19
## 6870     N64 2000         Misc                           Midway Games     0.19
## 6871     N64 1999       Racing                                    THQ     0.19
## 6872     N64 2000     Fighting                           Midway Games     0.19
## 6873     N64 2000       Action                                    3DO     0.19
## 6874     Wii 2008         Misc                              MTV Games     0.21
## 6875     PS2 2002       Sports                                   Sega     0.12
## 6876     PS3 2009       Action                     Namco Bandai Games     0.00
## 6877      DS 2011       Action                        Electronic Arts     0.12
## 6878      XB 2003       Sports                        Electronic Arts     0.18
## 6879      PS 1998     Platform                                  Ocean     0.13
## 6880      GC 2005       Action                             Activision     0.19
## 6881     Wii 2009       Sports                            Codemasters     0.00
## 6882     PSP 2007       Action                   Take-Two Interactive     0.22
## 6883     GBA 2005       Sports                             Activision     0.17
## 6884      DS 2007       Racing                                    THQ     0.22
## 6885      DS 2009       Puzzle                                    THQ     0.22
## 6886      DS 2008    Adventure                           PopCap Games     0.13
## 6887     GBA 2004     Platform                               Nintendo     0.00
## 6888      PS 1998      Shooter                  Acclaim Entertainment     0.13
## 6889     PS2 2003       Action            Sony Computer Entertainment     0.00
## 6890     PS3 2011         Misc                                    THQ     0.15
## 6891     3DS 2014       Action Warner Bros. Interactive Entertainment     0.09
## 6892     PS4 2014       Action                             Tecmo Koei     0.08
## 6893      XB 2003     Platform                          Vivendi Games     0.18
## 6894     PS2 2008   Simulation           Konami Digital Entertainment     0.12
## 6895    X360 2012       Racing                            Codemasters     0.08
## 6896    X360 2009 Role-Playing                      DTP Entertainment     0.18
## 6897    2600 1980         Misc                                  Atari     0.22
## 6898    SNES 1996 Role-Playing                             SquareSoft     0.00
## 6899    X360 2011       Action                             Activision     0.18
## 6900     Wii 2010    Adventure                     Namco Bandai Games     0.16
## 6901     3DS 2015     Platform                               Nintendo     0.09
## 6902      XB 2001       Racing                Gathering of Developers     0.18
## 6903      PS 2002       Racing                               XS Games     0.13
## 6904     PSP 2009 Role-Playing                                 GungHo     0.19
## 6905      DS 2010    Adventure                 Focus Home Interactive     0.07
## 6906     GBA 2004       Action                   Take-Two Interactive     0.17
## 6907     GBA 2004    Adventure                           Game Factory     0.17
## 6908    X360 2007         Misc                 Microsoft Game Studios     0.19
## 6909      DS 2009       Puzzle                                Ubisoft     0.00
## 6910    X360 2012       Action                                 Capcom     0.15
## 6911    XOne 2016       Action Warner Bros. Interactive Entertainment     0.12
## 6912    X360 2009       Action                             Tecmo Koei     0.16
## 6913     PS2 2003         Misc            Sony Computer Entertainment     0.12
## 6914      PS 1998       Action                              Interplay     0.13
## 6915     PS2 2004 Role-Playing                           Midway Games     0.12
## 6916     PSP 2009       Sports                        Electronic Arts     0.12
## 6917      DS 2008         Misc                             Activision     0.22
## 6918      PC 2011       Puzzle                 Focus Home Interactive     0.00
## 6919     PS3 2012 Role-Playing                            Deep Silver     0.04
## 6920     PS3 2012   Simulation                          Kalypso Media     0.06
## 6921    X360 2015         Misc                             Activision     0.12
## 6922    WiiU 2013         Misc                               Nintendo     0.06
## 6923      PS 1995       Sports                        Electronic Arts     0.13
## 6924     PS4 2014       Action                   Nippon Ichi Software     0.13
## 6925    X360 2009 Role-Playing                     Bethesda Softworks     0.16
## 6926      PS 2000       Action            Sony Computer Entertainment     0.13
## 6927     Wii 2010         Misc                                Unknown     0.06
## 6928    X360 2011         Misc                                    THQ     0.16
## 6929     PSV 2012       Action Warner Bros. Interactive Entertainment     0.09
## 6930     Wii 2010       Racing                 Focus Home Interactive     0.10
## 6931      DS 2009       Puzzle                               Nintendo     0.00
## 6932      PS 2000      Shooter                     Hasbro Interactive     0.13
## 6933    X360 2009       Action                        Electronic Arts     0.17
## 6934     PS3 2010 Role-Playing                             Tecmo Koei     0.08
## 6935      XB 2006       Sports                        Electronic Arts     0.18
## 6936     GBA 2003       Action                    Knowledge Adventure     0.17
## 6937     PSP 2013 Role-Playing                     Namco Bandai Games     0.00
## 6938      DS 2006       Action                                    THQ     0.06
## 6939      PS 1998         Misc                               NewKidCo     0.13
## 6940    2600 1988       Action                             Activision     0.22
## 6941    2600 1981      Shooter                     Mattel Interactive     0.22
## 6942      DS 2010       Puzzle                       Storm City Games     0.11
## 6943    X360 2009       Action                                  Atari     0.16
## 6944    X360 2013      Shooter                   Take-Two Interactive     0.10
## 6945      DS 2008 Role-Playing                                   Sega     0.09
## 6946     Wii 2011       Racing                             Activision     0.22
## 6947     PSV 2012       Action           Konami Digital Entertainment     0.13
## 6948      DS 2006 Role-Playing           Konami Digital Entertainment     0.17
## 6949     PS4 2014    Adventure                         Telltale Games     0.10
## 6950    WiiU 2012       Action             Disney Interactive Studios     0.14
## 6951      PC 2011 Role-Playing              Sony Online Entertainment     0.16
## 6952     PS2 2007       Racing                        Electronic Arts     0.12
## 6953     PS3 2008       Action                             Activision     0.12
## 6954      DS 2010         Misc                   Take-Two Interactive     0.16
## 6955      DS 2008       Racing                        Electronic Arts     0.18
## 6956    WiiU 2016       Action Warner Bros. Interactive Entertainment     0.12
## 6957      DS 2006 Role-Playing                            Takara Tomy     0.22
## 6958     PS2 2003     Platform                     BAM! Entertainment     0.11
## 6959     PS2 2004         Misc           Konami Digital Entertainment     0.11
## 6960      DS 2010         Misc             Disney Interactive Studios     0.16
## 6961      DS 2010   Simulation           Konami Digital Entertainment     0.00
## 6962     3DS 2015 Role-Playing                   Nippon Ichi Software     0.09
## 6963     PS2 2006       Action                     Namco Bandai Games     0.00
## 6964      PS 1998     Fighting                     Virgin Interactive     0.13
## 6965      DS 2013     Platform                                Ubisoft     0.00
## 6966     Wii 2009         Misc                                    THQ     0.00
## 6967    X360 2011         Misc                                Unknown     0.06
## 6968      DS 2007       Racing                             Activision     0.22
## 6969      XB 2001       Racing                                Unknown     0.05
## 6970     GBA 2003     Strategy                              Banpresto     0.00
## 6971      XB 2003       Racing                        Electronic Arts     0.18
## 6972      XB 2002       Action                        Electronic Arts     0.18
## 6973     PSV 2016       Action Warner Bros. Interactive Entertainment     0.07
## 6974      DS 2010       Action                              LucasArts     0.18
## 6975      XB 2005       Action                        Electronic Arts     0.18
## 6976    XOne 2013         Misc                  Majesco Entertainment     0.17
## 6977     PS3 2011       Action                     Namco Bandai Games     0.00
## 6978     3DS 2015       Action                               Nintendo     0.00
## 6979      DS 2005       Puzzle                               Nintendo     0.15
## 6980    X360 2011       Sports                                   Sega     0.11
## 6981      DS 2011       Action                                    THQ     0.16
## 6982     PS3 2008 Role-Playing                   Nippon Ichi Software     0.14
## 6983      DS 2008   Simulation                              505 Games     0.22
## 6984     PS3 2011       Sports                             Activision     0.17
## 6985      DC 1999       Sports                                   Sega     0.00
## 6986     PSP 2005       Puzzle                     Namco Bandai Games     0.13
## 6987     PSV 2011       Action                                Ubisoft     0.14
## 6988      PC 2015     Strategy                                   Sega     0.09
## 6989     PSP 2005       Sports                        Electronic Arts     0.19
## 6990    X360 2010       Sports                                   Sega     0.08
## 6991      XB 2002       Sports                                   Sega     0.17
## 6992     PS3 2009         Misc            Sony Computer Entertainment     0.00
## 6993     PS2 2004       Racing                                  Atari     0.11
## 6994      XB 2003       Racing                     Empire Interactive     0.17
## 6995     PS3 2013       Action                             Tecmo Koei     0.00
## 6996     PSV 2012         Misc                                   Sega     0.00
## 6997     PS3 2008      Shooter                                   Sega     0.14
## 6998     PS3 2011         Misc            Sony Computer Entertainment     0.13
## 6999     PS2 2001       Racing                  Acclaim Entertainment     0.11
## 7000     Wii 2007       Racing                 Zoo Digital Publishing     0.22
## 7001     Wii 2009         Misc                              MTV Games     0.22
## 7002     PS2 2002       Action                  Universal Interactive     0.11
## 7003     PS2 2006       Sports                                   Sega     0.00
## 7004     Wii 2007       Action Warner Bros. Interactive Entertainment     0.21
## 7005     PS2 2005 Role-Playing                                 Capcom     0.00
## 7006     N64 2000       Sports                  Acclaim Entertainment     0.22
## 7007     PSP 2005         Misc                                Play It     0.20
## 7008     PS4 2015 Role-Playing                     Namco Bandai Games     0.09
## 7009      GC 2002      Shooter                             Activision     0.18
## 7010      GC 2003       Action                                Ubisoft     0.18
## 7011     Wii 2008    Adventure                             Activision     0.20
## 7012    X360 2009         Misc                              MTV Games     0.22
## 7013     Wii 2010     Strategy                                    THQ     0.11
## 7014     PS2 2003       Sports                                   Sega     0.11
## 7015      GB 1997   Simulation                     Victor Interactive     0.00
## 7016      DS 2009   Simulation                                Ubisoft     0.16
## 7017      XB 2005       Action                          Vivendi Games     0.17
## 7018     PS3 2009    Adventure             Disney Interactive Studios     0.14
## 7019     PS2 2002       Sports            Sony Computer Entertainment     0.11
## 7020    XOne 2015       Action                             Activision     0.16
## 7021      PS 1998     Fighting                     Namco Bandai Games     0.13
## 7022     SAT 1995     Fighting                                   Sega     0.00
## 7023     SAT 1996 Role-Playing                        Kadokawa Shoten     0.00
## 7024      GC 2002     Platform                                    THQ     0.18
## 7025      DS 2008       Sports                                Ubisoft     0.21
## 7026    WiiU 2014       Action Warner Bros. Interactive Entertainment     0.10
## 7027      DS 2008         Misc             Disney Interactive Studios     0.19
## 7028    X360 2005       Action                   Take-Two Interactive     0.21
## 7029      DS 2006     Strategy                                    THQ     0.19
## 7030      DS 2008   Simulation                                  Atari     0.20
## 7031      PS 2001      Shooter                                Ubisoft     0.13
## 7032      PS 2000       Sports            Sony Computer Entertainment     0.13
## 7033     Wii 2007       Sports                            Detn8 Games     0.21
## 7034     GBA 2005         Misc           Konami Digital Entertainment     0.17
## 7035     PSP 2013       Sports                        Electronic Arts     0.00
## 7036    X360 2011         Misc                                Unknown     0.06
## 7037      PS 1998   Simulation                              Psygnosis     0.13
## 7038      DS 2010    Adventure                               Nintendo     0.00
## 7039     PSP 2008     Strategy           Konami Digital Entertainment     0.00
## 7040    X360 2009       Action                             Tecmo Koei     0.13
## 7041    X360 2014     Fighting                     Namco Bandai Games     0.13
## 7042      DS 2008   Simulation                                    GSP     0.21
## 7043     GBA 2005       Sports                        Electronic Arts     0.17
## 7044     Wii 2011         Misc           Konami Digital Entertainment     0.15
## 7045     PS3 2007       Racing                        Electronic Arts     0.15
## 7046      NG 1994     Fighting                                    SNK     0.00
## 7047      PS 1996       Action                     American Softworks     0.13
## 7048      DS 2008 Role-Playing                      Rising Star Games     0.21
## 7049    XOne 2015       Racing                   Slightly Mad Studios     0.08
## 7050     PS2 2010       Sports                   Take-Two Interactive     0.11
## 7051      PC 2015      Shooter                             Activision     0.00
## 7052      XB 2004       Action                   Take-Two Interactive     0.17
## 7053     PS3 2011       Action                             Activision     0.13
## 7054     Wii 2009       Action                                    THQ     0.08
## 7055     PS2 2001       Sports            Sony Computer Entertainment     0.11
## 7056     PS3 2009       Sports                       Activision Value     0.21
## 7057     GBA 2002     Platform                                 Capcom     0.16
## 7058     PS4 2014       Sports                        Electronic Arts     0.15
## 7059     Wii 2008       Puzzle                                 Capcom     0.19
## 7060      PC 2012 Role-Playing                            Deep Silver     0.00
## 7061     PSV 2016       Action                            Square Enix     0.00
## 7062    X360 2011       Action                                    THQ     0.20
## 7063     Wii 2008       Action                                Ubisoft     0.20
## 7064     PSP 2012    Adventure                     Namco Bandai Games     0.00
## 7065      DS 2007       Sports                             Activision     0.21
## 7066      GB 1992       Puzzle                               Nintendo     0.00
## 7067     PS2 2003       Sports                                   Sega     0.00
## 7068     PS3 2009       Action                             Tecmo Koei     0.00
## 7069     PS2 2007         Misc                             Activision     0.11
## 7070     3DS 2011     Fighting                                    THQ     0.15
## 7071      DS 2007       Action                               Nintendo     0.09
## 7072     PS2 2005       Action            Sony Computer Entertainment     0.11
## 7073     PS4 2016       Sports                              505 Games     0.02
## 7074     3DS 2011         Misc                             Activision     0.22
## 7075     PSP 2009    Adventure                     Namco Bandai Games     0.00
## 7076      PS 1997       Action                         GT Interactive     0.13
## 7077     GBA 2007    Adventure                             Activision     0.16
## 7078     Wii 2008   Simulation                                Ubisoft     0.21
## 7079     PSP 2009     Fighting                     Namco Bandai Games     0.00
## 7080      DS 2008       Sports                                   Sega     0.00
## 7081     Wii 2006       Sports                               Nintendo     0.14
## 7082     PS2 2003       Racing                      Eidos Interactive     0.11
## 7083     GBA 2004 Role-Playing                                 Capcom     0.16
## 7084     Wii 2009    Adventure                             Activision     0.21
## 7085    SNES 1996 Role-Playing                       Enix Corporation     0.00
## 7086      XB 2003      Shooter                        Electronic Arts     0.17
## 7087      DS 2005     Fighting                       Tomy Corporation     0.00
## 7088      XB 2003      Shooter                             Activision     0.17
## 7089     Wii 2010       Sports           Konami Digital Entertainment     0.08
## 7090     PS2 2007    Adventure             Disney Interactive Studios     0.11
## 7091     PS2 2006 Role-Playing                            Square Enix     0.06
## 7092      PS 1997 Role-Playing                              Psygnosis     0.13
## 7093     PS3 2010       Sports           Konami Digital Entertainment     0.00
## 7094     PS2 2008       Action                                    THQ     0.11
## 7095    SNES 1991      Shooter                               Nintendo     0.00
## 7096      PS 1998       Action                         GT Interactive     0.13
## 7097      PS 1999     Strategy                              Banpresto     0.00
## 7098      GC 2002       Sports                        Electronic Arts     0.18
## 7099     PS2 2003      Shooter                 Zoo Digital Publishing     0.11
## 7100     PS2 2003       Sports                           Midway Games     0.11
## 7101     Wii 2009   Simulation                        Electronic Arts     0.18
## 7102     Wii 2010       Racing             Disney Interactive Studios     0.18
## 7103      PS 1995      Shooter                                  Ocean     0.06
## 7104     Wii 2007       Sports                              505 Games     0.21
## 7105      PS 1997     Fighting                     Virgin Interactive     0.06
## 7106      XB 2004         Misc                 Zoo Digital Publishing     0.17
## 7107     PSP 2008 Role-Playing                      Rising Star Games     0.09
## 7108     PS2 2006 Role-Playing                     Namco Bandai Games     0.11
## 7109     PSP 2006 Role-Playing                             Tecmo Koei     0.15
## 7110     PS3 2012    Adventure            Sony Computer Entertainment     0.19
## 7111     PSP 2008       Sports                        Electronic Arts     0.21
## 7112     Wii 2010       Sports                            D3Publisher     0.21
## 7113     PS2 2003       Sports            Sony Computer Entertainment     0.11
## 7114     Wii 2009         Misc                            Nordcurrent     0.19
## 7115     PS2 2004    Adventure                                    THQ     0.11
## 7116      DS 2007     Strategy                                   Sega     0.20
## 7117     PS2 2007         Misc            Sony Computer Entertainment     0.11
## 7118     PS3 2011      Shooter                                Ubisoft     0.09
## 7119     Wii 2010       Action                                    THQ     0.14
## 7120    X360 2008         Misc                              MTV Games     0.21
## 7121      GB 1996       Puzzle                               Nintendo     0.00
## 7122     PS2 2002       Sports            Sony Computer Entertainment     0.11
## 7123      DS 2011    Adventure                        Scholastic Inc.     0.21
## 7124      PS 1998     Fighting                       Tomy Corporation     0.00
## 7125     PSV 2015       Action                  Marvelous Interactive     0.06
## 7126      DS 2006 Role-Playing                     Namco Bandai Games     0.00
## 7127     PS2 2002       Sports            Sony Computer Entertainment     0.11
## 7128      PS 1997     Platform                                  Ocean     0.13
## 7129     PS2 2003       Action                                  Kemco     0.11
## 7130     PSP 2005       Sports                        Electronic Arts     0.20
## 7131     PS3 2014 Role-Playing                     Namco Bandai Games     0.00
## 7132     3DS 2011       Racing             Disney Interactive Studios     0.21
## 7133      DS 2008   Simulation                                Ubisoft     0.20
## 7134      PC 2012      Shooter                   Take-Two Interactive     0.11
## 7135     PS2 2002       Action                           Midway Games     0.11
## 7136     Wii 2008     Fighting                        Electronic Arts     0.20
## 7137     PSP 2006 Role-Playing                      Eidos Interactive     0.20
## 7138     PS3 2011       Action                     Namco Bandai Games     0.00
## 7139     PS2 2008     Fighting                           Midway Games     0.10
## 7140      DS 2006         Misc           Konami Digital Entertainment     0.18
## 7141      GC 2004     Fighting                        Electronic Arts     0.17
## 7142     PSP 2013 Role-Playing                     Namco Bandai Games     0.00
## 7143     PS2 2005       Action                                   Sega     0.11
## 7144     PS3 2013       Action                            Deep Silver     0.12
## 7145     GBA 2001         Misc                                 Takara     0.16
## 7146    X360 2013       Action                     Namco Bandai Games     0.12
## 7147     N64 1997         Misc                     Namco Bandai Games     0.00
## 7148      GC 2003         Misc                  Acclaim Entertainment     0.17
## 7149    2600 1981      Shooter           20th Century Fox Video Games     0.21
## 7150    2600 1982       Action                                   Bomb     0.21
## 7151    2600 1981       Action                           Parker Bros.     0.21
## 7152     PSP 2009 Role-Playing                     Falcom Corporation     0.14
## 7153      DS 2010       Action                                    THQ     0.17
## 7154     PSP 2007       Action                     Namco Bandai Games     0.00
## 7155     PS3 2009       Action             Disney Interactive Studios     0.13
## 7156     PSP 2011       Action                                Level 5     0.00
## 7157     Wii 2010         Misc                            D3Publisher     0.21
## 7158      XB 2004      Shooter                                    SCi     0.17
## 7159     PS2 2002       Sports                    Crave Entertainment     0.11
## 7160     PS2 2004      Shooter                     Namco Bandai Games     0.11
## 7161     PS2 2005         Misc                            Hudson Soft     0.00
## 7162    XOne 2015 Role-Playing                     Namco Bandai Games     0.13
## 7163      DS 2008   Simulation                              505 Games     0.21
## 7164     PS2 2010     Platform                            D3Publisher     0.13
## 7165     3DS 2013       Action                                   Sega     0.00
## 7166      GC 2002 Role-Playing                                  Atari     0.17
## 7167      DS 2009     Platform                                Ubisoft     0.20
## 7168     PS2 2008       Racing                                 Capcom     0.01
## 7169     PSP 2011       Sports                        Electronic Arts     0.21
## 7170     PS3 2011       Action                                 Capcom     0.00
## 7171     GBA 2001 Role-Playing                                Ubisoft     0.11
## 7172      DS 2008 Role-Playing                                 GungHo     0.10
## 7173     PS2 2005       Racing                            Global Star     0.11
## 7174      GC 2004       Sports                        Electronic Arts     0.17
## 7175     GBA 2004       Sports                               Nintendo     0.16
## 7176     GBA 2005       Action                                    THQ     0.16
## 7177      DS 2008    Adventure                                Ubisoft     0.21
## 7178     PS3 2010       Racing                                 Capcom     0.05
## 7179     PS3 2011 Role-Playing                  Marvelous Interactive     0.14
## 7180     Wii 2009     Platform                  Majesco Entertainment     0.19
## 7181     PS4 2016      Shooter                   Take-Two Interactive     0.09
## 7182    X360 2012   Simulation                          Kalypso Media     0.06
## 7183     PS3 2013 Role-Playing                             Tecmo Koei     0.06
## 7184      DS 2010       Puzzle                              Avanquest     0.13
## 7185    2600 1981       Action                                  Atari     0.21
## 7186    SNES 1992     Platform                            Hudson Soft     0.00
## 7187      PS 1998       Puzzle                  Acclaim Entertainment     0.12
## 7188     Wii 2007     Platform                          Vivendi Games     0.18
## 7189      PS 1996       Sports                  Acclaim Entertainment     0.12
## 7190     Wii 2006       Action                           Midway Games     0.19
## 7191     PS2 2004     Fighting                     Namco Bandai Games     0.03
## 7192     Wii 2008         Misc                                Ubisoft     0.20
## 7193     PS2 2002      Shooter                                 Capcom     0.07
## 7194     Wii 2008       Sports                             Activision     0.20
## 7195     PS2 2003       Action                     Namco Bandai Games     0.00
## 7196     3DS 2011     Platform                                   Sega     0.14
## 7197     Wii 2011       Action                                    THQ     0.19
## 7198      DS 2006       Sports                             Activision     0.20
## 7199     GBA 2004     Platform                                 Capcom     0.16
## 7200      PC 2012       Action Warner Bros. Interactive Entertainment     0.07
## 7201     PS3 2013       Action                            Square Enix     0.07
## 7202     PSP 2007       Action                          Vivendi Games     0.03
## 7203     PS3 2014       Action           Konami Digital Entertainment     0.03
## 7204     Wii 2010       Action                                    THQ     0.19
## 7205      DS 2008         Misc                         AQ Interactive     0.20
## 7206     Wii 2008       Action                                Ubisoft     0.16
## 7207      PS 1999       Sports                     Mattel Interactive     0.12
## 7208     Wii 2010    Adventure                                Ubisoft     0.12
## 7209     GBA 2004         Misc                  Majesco Entertainment     0.16
## 7210     PSP 2007       Action                     Empire Interactive     0.09
## 7211     PS3 2013 Role-Playing                   Nippon Ichi Software     0.05
## 7212      PC 2015      Shooter                                Ubisoft     0.12
## 7213     PSV 2012       Action                                Ubisoft     0.09
## 7214      PC 2011       Action Warner Bros. Interactive Entertainment     0.05
## 7215     GBA 2004         Misc                                  Atari     0.16
## 7216      DS 2009   Simulation                                Ubisoft     0.20
## 7217     PS3 2014    Adventure                         Telltale Games     0.09
## 7218     GBA 2004 Role-Playing                        Electronic Arts     0.16
## 7219     Wii 2009    Adventure                            Deep Silver     0.09
## 7220      XB 2004       Action                           Midway Games     0.16
## 7221     PS4 2016 Role-Playing                            Square Enix     0.00
## 7222      GC 2002       Puzzle                                    THQ     0.17
## 7223    X360 2014    Adventure                             Activision     0.11
## 7224     N64 2000     Fighting                  Acclaim Entertainment     0.18
## 7225     N64 2000       Action                                 Capcom     0.14
## 7226     N64 1996       Sports                              Imagineer     0.00
## 7227     N64 1999       Action                         GT Interactive     0.18
## 7228     N64 2000       Puzzle                     Namco Bandai Games     0.18
## 7229     Wii 2009 Role-Playing                     Namco Bandai Games     0.00
## 7230      DS 2008     Strategy                                    THQ     0.17
## 7231      GC 2004       Action                                 Capcom     0.17
## 7232      DS 2009    Adventure                                Ubisoft     0.20
## 7233     Wii 2009       Racing                 Zoo Digital Publishing     0.21
## 7234     PS2 2002         Misc                  Acclaim Entertainment     0.11
## 7235      DS 2007       Puzzle                              Avanquest     0.03
## 7236      PS 1996       Sports                  Acclaim Entertainment     0.12
## 7237      DS 2008    Adventure                                  Atari     0.04
## 7238      DS 2007      Shooter                      Eidos Interactive     0.20
## 7239    X360 2009     Strategy                          Kalypso Media     0.15
## 7240      XB 2002         Misc                             Infogrames     0.16
## 7241    X360 2009       Action                            D3Publisher     0.11
## 7242      PS 1998       Sports                        Fox Interactive     0.12
## 7243     Wii 2009       Action                        Electronic Arts     0.17
## 7244      XB 2004      Shooter                      Eidos Interactive     0.16
## 7245    X360 2011       Action                     Bethesda Softworks     0.13
## 7246      PS 1998     Strategy           Konami Digital Entertainment     0.05
## 7247     PS4 2016 Role-Playing                     Namco Bandai Games     0.00
## 7248      GC 2001       Sports                  Acclaim Entertainment     0.17
## 7249     PS2 2004 Role-Playing                              505 Games     0.11
## 7250     PS2 2001   Simulation                      Sammy Corporation     0.11
## 7251      DC 2000     Fighting                     Virgin Interactive     0.00
## 7252     Wii 2008       Sports                        Electronic Arts     0.19
## 7253      DS 2009 Role-Playing                                   Sega     0.07
## 7254    X360 2011         Misc                                Unknown     0.11
## 7255     PS4 2015       Action                             Activision     0.10
## 7256      DS 2008         Misc                     Namco Bandai Games     0.00
## 7257      GC 2005       Action                        Electronic Arts     0.17
## 7258     Wii 2011         Misc                                    THQ     0.20
## 7259     PS3 2015         Misc                                Ubisoft     0.10
## 7260     PS3 2009         Misc                    Crave Entertainment     0.20
## 7261     PS2 2009         Misc                             Activision     0.11
## 7262     PS2 2001       Sports                  Acclaim Entertainment     0.11
## 7263      GB 1997       Puzzle                               Nintendo     0.00
## 7264    X360 2008       Sports                        Electronic Arts     0.20
## 7265    X360 2006      Shooter                                   Sega     0.19
## 7266      PC 2011       Action                            Deep Silver     0.12
## 7267     PS2 2006 Role-Playing                      Rising Star Games     0.11
## 7268      DS 2009       Puzzle                        Electronic Arts     0.01
## 7269    WiiU 2015 Role-Playing                               Nintendo     0.10
## 7270     PS2 2003       Sports                        Electronic Arts     0.11
## 7271     GBA 2002       Action                               Nintendo     0.16
## 7272     3DS 2012    Adventure                               Nintendo     0.12
## 7273     PSP 2005       Sports            Sony Computer Entertainment     0.20
## 7274     GBA 2003       Action                       Tomy Corporation     0.16
## 7275     PSP 2009 Role-Playing                                  Atlus     0.08
## 7276      DS 2007    Adventure                             Tecmo Koei     0.00
## 7277     PS2 2002       Racing                             Activision     0.11
## 7278      DS 2006       Sports                        Electronic Arts     0.20
## 7279     PS2 2006       Sports           Konami Digital Entertainment     0.00
## 7280      GC 2002       Sports                                   Sega     0.17
## 7281     PS4 2015       Action                           Nordic Games     0.09
## 7282      PS 2001       Sports                   Take-Two Interactive     0.12
## 7283      DS 2005     Platform                               Nintendo     0.00
## 7284     GBA 2003     Platform                 Zoo Digital Publishing     0.16
## 7285      DS 2008         Misc                                    THQ     0.20
## 7286     PS2 2008       Sports           Konami Digital Entertainment     0.00
## 7287      PS 1999       Action            Sony Computer Entertainment     0.12
## 7288      PS 1999       Racing                        Electronic Arts     0.12
## 7289     PS3 2013      Shooter                                 Capcom     0.07
## 7290     Wii 2008         Misc                 Zoo Digital Publishing     0.19
## 7291     3DS 2015     Strategy                               Nintendo     0.14
## 7292     PS3 2010       Racing                       Black Bean Games     0.05
## 7293     PS4 2013       Sports                        Electronic Arts     0.14
## 7294      GC 2004       Action                                    THQ     0.17
## 7295     SAT 1995       Sports                                   Sega     0.00
## 7296     GBA 2003         Misc                            Codemasters     0.15
## 7297     Wii 2008       Sports                      DTP Entertainment     0.00
## 7298     GBA 2002         Misc                                    THQ     0.15
## 7299      GC 2005       Action                             Activision     0.17
## 7300    X360 2013      Shooter                       City Interactive     0.06
## 7301    X360 2006   Simulation                                Ubisoft     0.19
## 7302    SNES 1993       Action                     Namco Bandai Games     0.00
## 7303     PS3 2010   Simulation                             Activision     0.11
## 7304     PSV 2015       Action                     Namco Bandai Games     0.00
## 7305     PS2 2002    Adventure                      Eidos Interactive     0.11
## 7306    X360 2012   Simulation                     Namco Bandai Games     0.13
## 7307      PC 2003 Role-Playing                                    CCP     0.00
## 7308     PSP 2012       Action                     Namco Bandai Games     0.00
## 7309      DS 2008       Action                             Tecmo Koei     0.17
## 7310     PS4 2015       Racing                       Milestone S.r.l.     0.03
## 7311      DS 2008 Role-Playing                 Ignition Entertainment     0.12
## 7312    XOne 2014 Role-Playing                            Square Enix     0.10
## 7313      PS 2000       Sports           Konami Digital Entertainment     0.12
## 7314     PS2 2001       Sports                                    THQ     0.11
## 7315     PS3 2008    Adventure                                Unknown     0.12
## 7316      PS 2001       Sports                       Activision Value     0.12
## 7317     PSP 2006 Role-Playing                             Ghostlight     0.10
## 7318     Wii 2010         Misc                               Nintendo     0.20
## 7319     PSV 2013    Adventure                                  PQube     0.07
## 7320     PS2 2004       Racing                                Ubisoft     0.11
## 7321      PS 1996     Platform          BMG Interactive Entertainment     0.12
## 7322     PS3 2011         Misc            Sony Computer Entertainment     0.00
## 7323      GC 2005         Misc                     Namco Bandai Games     0.17
## 7324     PS2 2004       Racing                      Eidos Interactive     0.11
## 7325     PSP 2005       Sports            Sony Computer Entertainment     0.20
## 7326     PS2 2009     Fighting                                Ubisoft     0.11
## 7327     SAT 1997       Sports                                   Sega     0.00
## 7328     3DS 2011       Action                             Activision     0.16
## 7329     Wii 2007 Role-Playing                            Square Enix     0.09
## 7330     SAT 1997 Role-Playing                        Kadokawa Shoten     0.00
## 7331      DS 2007       Sports                     Namco Bandai Games     0.00
## 7332     PS2 2002       Action                                 Agetec     0.03
## 7333     SAT 1997    Adventure                              Imagineer     0.00
## 7334     Wii 2010         Misc                           Nordic Games     0.00
## 7335     Wii 2008       Sports                                  Atari     0.20
## 7336     Wii 2011       Action           Konami Digital Entertainment     0.08
## 7337     PSV 2013       Action                   Nippon Ichi Software     0.09
## 7338     PS2 2008       Racing Warner Bros. Interactive Entertainment     0.10
## 7339    X360 2006       Sports                   Take-Two Interactive     0.20
## 7340    XOne 2014       Action                             Activision     0.12
## 7341    X360 2011       Sports                             Activision     0.18
## 7342      GC 2006    Adventure                                    THQ     0.17
## 7343      PS 1999       Action                        Electronic Arts     0.12
## 7344     PSP 2010     Fighting                                    THQ     0.11
## 7345     PS3 2008       Racing                                    THQ     0.10
## 7346     PS2 2000       Racing                              Interplay     0.10
## 7347     3DS 2012   Simulation           Konami Digital Entertainment     0.00
## 7348     PS2 2004 Role-Playing                                Ubisoft     0.10
## 7349    X360 2007       Sports                        Electronic Arts     0.20
## 7350     PS2 2006         Misc                            Hudson Soft     0.00
## 7351     GBA 2002      Shooter                         TDK Mediactive     0.15
## 7352      DS 2009   Simulation                                Unknown     0.08
## 7353      XB 2003     Fighting                           Gotham Games     0.16
## 7354     PS3 2010       Action                     Namco Bandai Games     0.00
## 7355     PS2 2002     Strategy                                Ubisoft     0.10
## 7356      DS 2005       Sports                             Activision     0.19
## 7357     PS3 2011     Platform                                    THQ     0.11
## 7358    X360 2009       Sports                   Take-Two Interactive     0.19
## 7359      XB 2002      Shooter                  Universal Interactive     0.16
## 7360    X360 2009    Adventure             Disney Interactive Studios     0.14
## 7361    X360 2009      Shooter                                    THQ     0.12
## 7362     Wii 2008       Action                                    THQ     0.19
## 7363      XB 2005       Sports                   Take-Two Interactive     0.16
## 7364      XB 2004       Action                             Activision     0.16
## 7365     PS2 2005         Misc                   Take-Two Interactive     0.10
## 7366    X360 2010       Action                            Deep Silver     0.07
## 7367     PS2 2004      Shooter           Konami Digital Entertainment     0.10
## 7368     PSP 2005       Sports                        Electronic Arts     0.20
## 7369     PS3 2014       Racing                            Codemasters     0.05
## 7370    X360 2010       Sports                       Black Bean Games     0.00
## 7371     3DS 2011       Racing                  Majesco Entertainment     0.08
## 7372    2600 1981       Sports                                  Atari     0.20
## 7373     Wii 2011         Misc                                Unknown     0.00
## 7374      DS 2011     Strategy           Konami Digital Entertainment     0.10
## 7375    X360 2015       Action           Konami Digital Entertainment     0.12
## 7376    X360 2010         Misc                        Electronic Arts     0.17
## 7377     PS3 2009       Action                        Electronic Arts     0.11
## 7378    X360 2007         Misc                                Ubisoft     0.18
## 7379     PS2 2004       Action                                 Capcom     0.10
## 7380     PS2 2001      Shooter                        Electronic Arts     0.10
## 7381     PS2 2005     Platform                     Namco Bandai Games     0.10
## 7382      GC 2003     Fighting                       Tomy Corporation     0.00
## 7383     Wii 2008       Action                               Nintendo     0.00
## 7384      PS 1996    Adventure                            Pioneer LDC     0.00
## 7385     PS4 2014       Action                             Activision     0.07
## 7386    SNES 1995     Fighting                     Namco Bandai Games     0.00
## 7387     Wii 2009    Adventure                                    GSP     0.12
## 7388     3DS 2014       Action                Marvelous Entertainment     0.09
## 7389     PSP 2009     Fighting                                    THQ     0.17
## 7390      DS 2008       Action             Disney Interactive Studios     0.19
## 7391     PS3 2011       Sports                             Tecmo Koei     0.06
## 7392      PS 2000     Fighting                  Acclaim Entertainment     0.12
## 7393     Wii 2009       Sports                     JoWood Productions     0.15
## 7394      XB 2005      Shooter                                Ubisoft     0.16
## 7395     Wii 2011       Sports                             Activision     0.15
## 7396     PSP 2005    Adventure                                Ubisoft     0.18
## 7397    X360 2009       Sports                               XS Games     0.20
## 7398     PS2 2005     Strategy                            Square Enix     0.00
## 7399     PS2 2003     Platform                                 Capcom     0.10
## 7400      GC 2003     Platform                                    THQ     0.16
## 7401     Wii 2010         Misc                     Namco Bandai Games     0.20
## 7402      DS 2009       Action                              Zoo Games     0.20
## 7403     PSP 2010       Sports            Sony Computer Entertainment     0.06
## 7404     PS2 2002 Role-Playing                                    THQ     0.10
## 7405      PS 2002     Platform                         TDK Mediactive     0.12
## 7406     PS2 2001    Adventure           Konami Digital Entertainment     0.09
## 7407     3DS 2011    Adventure                                Unknown     0.08
## 7408      XB 2003       Sports                       Activision Value     0.16
## 7409    WiiU 2013   Simulation             Disney Interactive Studios     0.15
## 7410     PSP 2007       Sports                              505 Games     0.19
## 7411     PSP 2005         Misc                             Activision     0.19
## 7412     N64 1997     Fighting                              Interplay     0.17
## 7413     N64 1999         Misc                     Hasbro Interactive     0.17
## 7414     N64 1998     Fighting                                    THQ     0.17
## 7415     N64 2000       Racing                           Midway Games     0.17
## 7416     N64 1999     Platform                    Crave Entertainment     0.17
## 7417     N64 1999      Shooter                     Virgin Interactive     0.17
## 7418     3DS 2012 Role-Playing                               Nintendo     0.13
## 7419    X360 2012       Action                             Activision     0.20
## 7420      PS 1996 Role-Playing                       Seta Corporation     0.00
## 7421    X360 2008       Racing                       Black Bean Games     0.06
## 7422     SAT 1996     Fighting                                    SNK     0.00
## 7423      GC 2003       Action                        Electronic Arts     0.16
## 7424      PC 2013       Action                            Deep Silver     0.00
## 7425      PS 1997 Role-Playing                              On Demand     0.12
## 7426      PS 1999 Role-Playing                             SquareSoft     0.12
## 7427      PS 2000 Role-Playing            Sony Computer Entertainment     0.00
## 7428     GBA 2004     Platform           Konami Digital Entertainment     0.00
## 7429    X360 2007       Action                 Microsoft Game Studios     0.18
## 7430    X360 2009       Action                             Gamebridge     0.12
## 7431     PS2 2002       Action                      Eidos Interactive     0.10
## 7432      XB 2004      Shooter                                  Atari     0.17
## 7433     PS2 2001       Racing                        Electronic Arts     0.10
## 7434     PS2 2008       Action                             Activision     0.10
## 7435     PS3 2013 Role-Playing                   Nippon Ichi Software     0.09
## 7436      XB 2005       Action                        Electronic Arts     0.16
## 7437     Wii 2012         Misc                                Ubisoft     0.15
## 7438     PS2 2006       Sports           Konami Digital Entertainment     0.00
## 7439     GBA 2003     Platform                         TDK Mediactive     0.15
## 7440      DS 2010 Role-Playing                               Nintendo     0.08
## 7441     PSP 2010 Role-Playing                     Namco Bandai Games     0.00
## 7442      XB 2002       Action                                   Sega     0.13
## 7443      GC 2001       Sports                           Midway Games     0.16
## 7444     Wii 2010       Action                                    THQ     0.12
## 7445      GC 2002       Sports                        Electronic Arts     0.16
## 7446    X360 2009       Sports                            Zushi Games     0.18
## 7447      PS 1999       Racing                              Psygnosis     0.12
## 7448     PS2 2000       Sports           Konami Digital Entertainment     0.10
## 7449     PS2 2005       Action                      Eidos Interactive     0.10
## 7450      DS 2008       Sports                             Activision     0.19
## 7451      DS 2009     Strategy                     Namco Bandai Games     0.00
## 7452      PS 2000     Fighting                           Midway Games     0.12
## 7453     PSV 2014       Action Warner Bros. Interactive Entertainment     0.03
## 7454     PSV 2014     Platform                                Ubisoft     0.03
## 7455      DS 2007 Role-Playing                     Namco Bandai Games     0.19
## 7456      DS 2008       Racing                      Eidos Interactive     0.19
## 7457      DS 2011       Puzzle                        Scholastic Inc.     0.19
## 7458     PS2 2006 Role-Playing                             Tecmo Koei     0.00
## 7459    X360 2010      Shooter                  Majesco Entertainment     0.19
## 7460     PS2 2005       Action                                    THQ     0.10
## 7461    X360 2010      Shooter                     Namco Bandai Games     0.11
## 7462    X360 2007       Sports                        Electronic Arts     0.19
## 7463      XB 2002       Sports                        Electronic Arts     0.15
## 7464     PS3 2011       Action                                    THQ     0.11
## 7465     SAT 1995     Fighting                  Acclaim Entertainment     0.00
## 7466      DS 2008         Misc                             Activision     0.19
## 7467     PSP 2005       Sports                        Electronic Arts     0.19
## 7468      PS 1998    Adventure            Sony Computer Entertainment     0.00
## 7469     PS2 2002       Sports                                   Sega     0.10
## 7470      DS 2006         Misc                     Namco Bandai Games     0.00
## 7471     GBA 2004         Misc                  Majesco Entertainment     0.15
## 7472     PS3 2010       Sports           Konami Digital Entertainment     0.00
## 7473     Wii 2008         Misc                                    THQ     0.19
## 7474     GBA 2001     Fighting                                Ubisoft     0.09
## 7475     Wii 2011 Role-Playing                  Marvelous Interactive     0.14
## 7476      DS 2012       Action                             Activision     0.15
## 7477     PSP 2009       Sports                        Electronic Arts     0.19
## 7478     PS2 2002       Sports                 Zoo Digital Publishing     0.04
## 7479     Wii 2009   Simulation                                Ubisoft     0.13
## 7480      GC 2002       Action                                  Atari     0.16
## 7481      XB 2004       Sports                            Global Star     0.15
## 7482     3DS 2012       Action                               Nintendo     0.00
## 7483     PS3 2012       Action                                   Sega     0.10
## 7484    X360 2009    Adventure                                Ubisoft     0.10
## 7485      PC 2013      Shooter                           Trion Worlds     0.14
## 7486     PSP 2011       Sports                                   Sega     0.00
## 7487     3DS 2015       Action Warner Bros. Interactive Entertainment     0.05
## 7488      PS 2000    Adventure                             Infogrames     0.11
## 7489      DS 2006       Racing                        Electronic Arts     0.17
## 7490      GC 2005     Fighting                                  Atari     0.16
## 7491     PS3 2010       Action            Sony Computer Entertainment     0.06
## 7492     PS3 2012       Action           Konami Digital Entertainment     0.00
## 7493      XB 2003     Platform                             Activision     0.15
## 7494     GBA 2002       Action                                    THQ     0.15
## 7495     PS4 2014    Adventure                         Telltale Games     0.10
## 7496     PSP 2006     Strategy                                  Atari     0.18
## 7497     Wii 2010     Strategy                                Ubisoft     0.15
## 7498     PS4 2016       Action                             Tecmo Koei     0.02
## 7499      NG 1995     Fighting                                    SNK     0.00
## 7500      DS 2009   Simulation                              505 Games     0.19
## 7501     GBA 2002         Misc                  Acclaim Entertainment     0.15
## 7502     Wii 2010       Sports                             Activision     0.19
## 7503     PS3 2007 Role-Playing                                Ubisoft     0.17
## 7504     GBA 2004       Action                                  Atari     0.15
## 7505     Wii 2011     Fighting                                    THQ     0.11
## 7506      GB 2000     Strategy                               Nintendo     0.00
## 7507     PSP 2008         Misc                    Crave Entertainment     0.19
## 7508    X360 2011         Misc                                    THQ     0.19
## 7509      DS 2009    Adventure                       City Interactive     0.07
## 7510    XOne 2014       Sports                        Electronic Arts     0.17
## 7511     PS2 2004     Fighting                                 Capcom     0.10
## 7512     3DS 2011       Action           Konami Digital Entertainment     0.16
## 7513    SNES 1995     Strategy                     Namco Bandai Games     0.00
## 7514     PS2 2005       Sports                                  Atari     0.10
## 7515      XB 2001       Racing                             Infogrames     0.15
## 7516     Wii 2009       Action                                   Sega     0.17
## 7517      DS 2009       Puzzle                                Level 5     0.00
## 7518    X360 2010   Simulation                          Kalypso Media     0.11
## 7519     Wii 2009       Sports                       Black Bean Games     0.14
## 7520     PS2 2007       Action                                 Capcom     0.00
## 7521     PS2 2008         Misc            Sony Computer Entertainment     0.00
## 7522      PC 2011 Role-Playing                                Unknown     0.09
## 7523     PS2 2005     Strategy           Konami Digital Entertainment     0.06
## 7524      XB 2005       Sports                        Electronic Arts     0.15
## 7525     PS3 2011       Sports                   Take-Two Interactive     0.15
## 7526     PS3 2006   Simulation                     Namco Bandai Games     0.06
## 7527      DC 2000 Role-Playing                                   Sega     0.00
## 7528      XB 2002       Racing                                   Sega     0.14
## 7529    X360 2008 Role-Playing                                Ubisoft     0.16
## 7530     Wii 2011         Misc                                Ubisoft     0.00
## 7531      XB 2006       Racing                   Take-Two Interactive     0.15
## 7532     PS2 2000       Sports           Konami Digital Entertainment     0.00
## 7533      PC 2011      Shooter                                    THQ     0.09
## 7534     GBA 2005         Misc                 Zoo Digital Publishing     0.15
## 7535     PS2 2005         Misc                    Crave Entertainment     0.10
## 7536    SNES 1994       Racing                                    BPS     0.00
## 7537     PSP 2012 Role-Playing                                   Sega     0.00
## 7538     PS3 2013 Role-Playing                   Nippon Ichi Software     0.05
## 7539     PS3 2014 Role-Playing                             Tecmo Koei     0.06
## 7540     Wii 2009         Misc                              Mindscape     0.00
## 7541     PS2 2008       Sports                    Crave Entertainment     0.10
## 7542     PS2 2006     Fighting                 Ignition Entertainment     0.10
## 7543     PS2 2003       Sports           Konami Digital Entertainment     0.00
## 7544     PS3 2011     Fighting                                  PQube     0.04
## 7545     3DS 2012     Fighting                               Nintendo     0.06
## 7546      DS 2008         Misc                              Mindscape     0.00
## 7547    X360 2011         Misc                              505 Games     0.17
## 7548     PSP 2010       Sports            Sony Computer Entertainment     0.19
## 7549    XOne 2015     Strategy                 Microsoft Game Studios     0.14
## 7550    X360 2009       Sports                            Codemasters     0.00
## 7551     PS2 2004       Racing                                Play It     0.10
## 7552      GC 2005         Misc                                    THQ     0.16
## 7553     SAT 1996     Strategy                                    NCS     0.00
## 7554      NG 1994     Fighting                                    SNK     0.00
## 7555      XB 2002       Sports                           Midway Games     0.15
## 7556     Wii 2009       Action                     Namco Bandai Games     0.13
## 7557     Wii 2009 Role-Playing             Disney Interactive Studios     0.16
## 7558     PS3 2011      Shooter                            D3Publisher     0.06
## 7559     PS2 2004     Platform                             Activision     0.10
## 7560      DS 2009 Role-Playing                             Activision     0.16
## 7561      GC 2003     Fighting                     Namco Bandai Games     0.00
## 7562      PC 2015       Action                                Ubisoft     0.10
## 7563     GBA 2003       Sports                                    THQ     0.14
## 7564     PS2 2001       Racing                             Infogrames     0.09
## 7565      PC 2016     Strategy                   Take-Two Interactive     0.09
## 7566     PS3 2010       Sports                            Codemasters     0.00
## 7567     PS2 2004       Sports                                   Sega     0.10
## 7568     Wii 2009         Misc                                    THQ     0.17
## 7569     PS2 2000     Fighting                             SquareSoft     0.00
## 7570     PS3 2011       Action                   Nippon Ichi Software     0.00
## 7571     PS3 2007      Shooter                            Codemasters     0.17
## 7572     GBA 2003   Simulation                                Ubisoft     0.14
## 7573     PS3 2011       Action                                   Sega     0.10
## 7574     PSV 2012       Sports            Sony Computer Entertainment     0.18
## 7575      GC 2004     Platform                                    THQ     0.16
## 7576     PS4 2016       Sports                        Electronic Arts     0.13
## 7577     SAT 1996      Shooter                     Namco Bandai Games     0.00
## 7578      DS 2011   Simulation                              505 Games     0.13
## 7579     PSP 2012       Action                                   Sega     0.00
## 7580      XB 2002       Sports                                   Sega     0.15
## 7581     GBA 2003     Platform                             Activision     0.14
## 7582     PSP 2011 Role-Playing                                   Sega     0.00
## 7583      XB 2006       Racing                                    THQ     0.15
## 7584     PS2 2003         Misc                     Namco Bandai Games     0.00
## 7585      DS 2009   Simulation                                Ubisoft     0.19
## 7586      GC 2002       Racing                           Midway Games     0.16
## 7587     PSP 2008       Action                             Tecmo Koei     0.02
## 7588     PS2 2005      Shooter                        Electronic Arts     0.10
## 7589     GBA 2001       Sports                                Ubisoft     0.14
## 7590      PS 1996 Role-Playing                                ArtDink     0.06
## 7591    X360 2005       Racing                     Namco Bandai Games     0.10
## 7592     PS4 2013     Strategy                             Activision     0.10
## 7593      DS 2009         Misc                   Take-Two Interactive     0.19
## 7594      DS 2009         Misc                                Ubisoft     0.19
## 7595      DS 2009   Simulation                                  Aspyr     0.19
## 7596    X360 2010      Shooter                            Square Enix     0.10
## 7597    X360 2010         Misc                     Namco Bandai Games     0.10
## 7598      PS 1997      Shooter                              Interplay     0.11
## 7599    X360 2007       Racing                             Activision     0.18
## 7600     PS3 2009       Action                                  Atari     0.12
## 7601     PS2 2009         Misc                              MTV Games     0.10
## 7602    X360 2012   Simulation           Konami Digital Entertainment     0.14
## 7603      GC 2004     Platform                        Electronic Arts     0.15
## 7604      PS 1998       Racing            Sony Computer Entertainment     0.11
## 7605     PSP 2011 Role-Playing                     Falcom Corporation     0.00
## 7606     PS3 2010       Action           Konami Digital Entertainment     0.10
## 7607      DS 2010       Puzzle                              Avanquest     0.07
## 7608    XOne 2015       Action                            Deep Silver     0.10
## 7609    WiiU 2013     Fighting Warner Bros. Interactive Entertainment     0.10
## 7610      XB 2003       Sports                        Electronic Arts     0.15
## 7611      DS 2010    Adventure                                Ubisoft     0.13
## 7612      PC 2004      Shooter                              LucasArts     0.06
## 7613     PS2 2003       Sports            Sony Computer Entertainment     0.10
## 7614      XB 2005       Action             Disney Interactive Studios     0.15
## 7615     N64 2000     Platform                                Ubisoft     0.16
## 7616      DS 2005 Role-Playing                            Square Enix     0.00
## 7617     N64 1999       Racing                                  Titus     0.06
## 7618     N64 1997       Puzzle                             Activision     0.13
## 7619     N64 1998       Sports                                  Kemco     0.16
## 7620     N64 2000     Platform                             Activision     0.16
## 7621     N64 2000       Racing                  Acclaim Entertainment     0.16
## 7622     N64 1998      Shooter                Gremlin Interactive Ltd     0.16
## 7623     N64 2000       Racing                           Midway Games     0.16
## 7624     N64 1999     Strategy                              Banpresto     0.00
## 7625     N64 1996       Sports                                  Atlus     0.16
## 7626     PSP 2006       Sports            Sony Computer Entertainment     0.18
## 7627      XB 2003       Racing                     Bethesda Softworks     0.15
## 7628     PSP 2010 Role-Playing                                   Sega     0.00
## 7629      DS 2011   Simulation                             Activision     0.14
## 7630     3DS 2012       Action                 Agatsuma Entertainment     0.16
## 7631      DS 2008       Action                      Eidos Interactive     0.16
## 7632     PSP 2005     Fighting            Sony Computer Entertainment     0.18
## 7633     PS4 2015       Sports                             Activision     0.09
## 7634     PS2 2002         Misc                      Sammy Corporation     0.00
## 7635     GBA 2005         Misc                     Namco Bandai Games     0.14
## 7636     PS2 2008       Racing                                Xplosiv     0.10
## 7637     PS3 2013 Role-Playing                   Nippon Ichi Software     0.06
## 7638      PS 1999     Strategy                             Tecmo Koei     0.00
## 7639     Wii 2010       Racing                                    THQ     0.15
## 7640     Wii 2010         Misc                     Namco Bandai Games     0.00
## 7641     PS3 2011       Sports                                    THQ     0.08
## 7642      PC 2012     Strategy                                   Sega     0.07
## 7643     PS2 2009       Sports                   Take-Two Interactive     0.10
## 7644      XB 2002       Sports                             Activision     0.15
## 7645    SNES 1996 Role-Playing                             SquareSoft     0.00
## 7646     PS3 2006 Role-Playing                        Electronic Arts     0.14
## 7647      XB 2005       Action                        Electronic Arts     0.15
## 7648     SAT 1994      Shooter                                   Sega     0.00
## 7649     PSP 2008     Fighting                 Ignition Entertainment     0.08
## 7650     PS3 2013       Sports           Konami Digital Entertainment     0.00
## 7651     Wii 2009       Action                              Destineer     0.14
## 7652     PS4 2016      Shooter                   Take-Two Interactive     0.05
## 7653     PS3 2010   Simulation           Konami Digital Entertainment     0.12
## 7654     PS2 2007       Sports                       Activision Value     0.10
## 7655      DC 2000 Role-Playing                                Ubisoft     0.00
## 7656      PS 1996         Misc            Sony Computer Entertainment     0.02
## 7657      DS 2008         Misc             Disney Interactive Studios     0.18
## 7658     Wii 2011       Sports                                    THQ     0.12
## 7659    X360 2014    Adventure                           Little Orbit     0.05
## 7660      XB 2004       Action                             Activision     0.15
## 7661      GC 2004       Sports                        Electronic Arts     0.15
## 7662     PSP 2013       Sports           Konami Digital Entertainment     0.00
## 7663     PS2 2005       Action           Konami Digital Entertainment     0.10
## 7664      DS 2008         Misc                                Ubisoft     0.00
## 7665    X360 2007      Shooter                             Activision     0.18
## 7666     PSV 2011       Racing                     Namco Bandai Games     0.04
## 7667      DS 2008 Role-Playing                                   Sega     0.10
## 7668     PS2 2003     Strategy                             Activision     0.10
## 7669     Wii 2011         Misc                                Ubisoft     0.19
## 7670      XB 2001       Sports                  Acclaim Entertainment     0.15
## 7671      DS 2009   Simulation                        Electronic Arts     0.18
## 7672     PSP 2012       Sports           Konami Digital Entertainment     0.00
## 7673     3DS 2016       Action                                 GungHo     0.00
## 7674      GC 2002     Platform                                    THQ     0.15
## 7675    X360 2008 Role-Playing                          Compile Heart     0.18
## 7676    X360 2008       Racing                                    THQ     0.12
## 7677     PSP 2007     Strategy                   Take-Two Interactive     0.16
## 7678     PS2 2004         Misc                     Namco Bandai Games     0.00
## 7679     PS2 2004         Misc                     Namco Bandai Games     0.10
## 7680    X360 2008         Misc             Disney Interactive Studios     0.18
## 7681     PSP 2005       Action                        Electronic Arts     0.17
## 7682      PS 1995       Puzzle                  Acclaim Entertainment     0.11
## 7683      PC 2014 Role-Playing                                Ubisoft     0.07
## 7684     PSP 2006      Shooter                                Ubisoft     0.17
## 7685      XB 2003       Puzzle                                    THQ     0.15
## 7686     PS3 2006   Simulation                              505 Games     0.09
## 7687    XOne 2014       Action                            Square Enix     0.10
## 7688     PS2 2004       Action                                  Atari     0.10
## 7689    SNES 1991       Sports                          Culture Brain     0.00
## 7690     Wii 2008       Sports                             Activision     0.18
## 7691    WiiU 2013       Action                                 Capcom     0.07
## 7692     Wii 2009   Simulation                  Majesco Entertainment     0.18
## 7693     PS2 2002       Racing                             Infogrames     0.10
## 7694     PSP 2006       Puzzle                    Crave Entertainment     0.18
## 7695     Wii 2011       Racing                             Activision     0.18
## 7696     GBA 2003       Sports                                  Atari     0.14
## 7697     PS2 2005   Simulation                                Ubisoft     0.10
## 7698     PSP 2010       Sports           Konami Digital Entertainment     0.00
## 7699     Wii 2008 Role-Playing                                   Sega     0.08
## 7700     PSP 2011 Role-Playing            Sony Computer Entertainment     0.00
## 7701      PS 2002       Action                     Namco Bandai Games     0.00
## 7702     PSP 2005       Sports                        Electronic Arts     0.18
## 7703    X360 2007       Action                                    THQ     0.16
## 7704     GBA 2007       Action                                    THQ     0.14
## 7705     GBA 2002     Platform                                    THQ     0.14
## 7706    X360 2007       Action                             Tecmo Koei     0.17
## 7707      GC 2004         Misc                               Mad Catz     0.15
## 7708      XB 2002    Adventure                          Vivendi Games     0.15
## 7709      PS 2000       Action                                Ubisoft     0.11
## 7710     GBA 2001       Action                                    THQ     0.14
## 7711      DS 2008       Puzzle                            Nordcurrent     0.05
## 7712      DS 2009       Action                             Activision     0.15
## 7713     PSP 2011       Sports           Konami Digital Entertainment     0.00
## 7714      DS 2006         Misc                             Shogakukan     0.00
## 7715      XB 2002 Role-Playing                     Virgin Interactive     0.15
## 7716     PSP 2006       Action                   Take-Two Interactive     0.18
## 7717      GC 2004       Action                                Ubisoft     0.15
## 7718      XB 2002     Fighting                    Crave Entertainment     0.14
## 7719     3DS 2012 Role-Playing                     Namco Bandai Games     0.00
## 7720     Wii 2011       Action                                    THQ     0.15
## 7721     PS2 2005       Action           Konami Digital Entertainment     0.00
## 7722     3DS 2016     Platform                                 Capcom     0.13
## 7723     PS2 2005       Action                          Vivendi Games     0.10
## 7724     Wii 2009       Action           Konami Digital Entertainment     0.15
## 7725     3DS 2012       Action                             Activision     0.18
## 7726     PS2 2005       Racing                                Xplosiv     0.10
## 7727      PC 2009    Adventure                            Merscom LLC     0.00
## 7728      DS 2008         Misc                                    THQ     0.18
## 7729     PSV 2013 Role-Playing                   Nippon Ichi Software     0.06
## 7730     PS4 2015      Shooter                 Rebellion Developments     0.04
## 7731     PS2 2001       Sports            Sony Computer Entertainment     0.10
## 7732     PS2 2008 Role-Playing                                   Gust     0.07
## 7733     PS2 2003       Action                                    SCi     0.10
## 7734     GBA 2002         Misc                     BAM! Entertainment     0.14
## 7735      DS 2008 Role-Playing                             Tecmo Koei     0.16
## 7736     PS3 2012       Racing                            Codemasters     0.02
## 7737      DS 2008   Simulation                              Destineer     0.18
## 7738     Wii 2008      Shooter                              Zoo Games     0.18
## 7739     PS3 2008 Role-Playing                            Codemasters     0.05
## 7740      XB 2002       Racing                     Empire Interactive     0.15
## 7741     PS2 2005         Misc            Sony Computer Entertainment     0.10
## 7742     GBA 2003     Platform                          Vivendi Games     0.14
## 7743     PS2 2006     Fighting                 Ignition Entertainment     0.07
## 7744    WiiU 2012       Action                               Nintendo     0.15
## 7745      PC 2013       Action                            Deep Silver     0.06
## 7746      PS 1996     Fighting                     Namco Bandai Games     0.00
## 7747    X360 2012       Action           Konami Digital Entertainment     0.11
## 7748     PS4 2014 Role-Playing                 Focus Home Interactive     0.07
## 7749    X360 2008      Shooter                      Eidos Interactive     0.08
## 7750     PS3 2010       Action           Konami Digital Entertainment     0.10
## 7751     PS3 2009       Action                             Activision     0.13
## 7752     PS2 2005      Shooter                                Ubisoft     0.10
## 7753     Wii 2009 Role-Playing                  Marvelous Interactive     0.13
## 7754     Wii 2009         Misc                   Take-Two Interactive     0.18
## 7755      DS 2005       Action                                   Sega     0.00
## 7756    X360 2008       Action                     Namco Bandai Games     0.07
## 7757      DS 2009   Simulation                                Ubisoft     0.18
## 7758    SNES 1996         Misc                         Nippon Telenet     0.00
## 7759     GBA 2001 Role-Playing                                Ubisoft     0.14
## 7760     Wii 2008       Action                          Vivendi Games     0.17
## 7761     PSP 2012         Misc                                  Spike     0.00
## 7762      PC 2010      Shooter                                   Sega     0.00
## 7763      GC 2006     Platform                          Vivendi Games     0.15
## 7764     PSP 2011    Adventure                        Kadokawa Shoten     0.00
## 7765    X360 2006 Role-Playing                                Ubisoft     0.16
## 7766     GBA 2002       Action                               TDK Core     0.14
## 7767      DS 2009       Sports           Konami Digital Entertainment     0.00
## 7768      PS 1997       Sports           Konami Digital Entertainment     0.00
## 7769      PC 2015   Simulation                        Electronic Arts     0.05
## 7770    SNES 1993         Misc                      Sammy Corporation     0.00
## 7771     3DS 2011         Misc                     Namco Bandai Games     0.10
## 7772     PS3 2010      Shooter                             Tecmo Koei     0.05
## 7773      XB 2004       Action                   Take-Two Interactive     0.14
## 7774     PS2 2002       Sports            Sony Computer Entertainment     0.09
## 7775     PS3 2011   Simulation                      bitComposer Games     0.10
## 7776     Wii 2011         Misc                                    THQ     0.14
## 7777      DS 2009         Misc                 Zoo Digital Publishing     0.18
## 7778      DS 2010         Misc           Konami Digital Entertainment     0.11
## 7779      DS 2008 Role-Playing                            Square Enix     0.11
## 7780     PSP 2005       Action                                Ubisoft     0.16
## 7781      DS 2009      Shooter                            Square Enix     0.17
## 7782     PSP 2009       Action                             Activision     0.13
## 7783     3DS 2015       Action                                 Capcom     0.00
## 7784      DS 2010       Puzzle                    Foreign Media Games     0.01
## 7785    SNES 1996       Sports                                  Epoch     0.00
## 7786    X360 2009 Role-Playing                            Deep Silver     0.07
## 7787      DS 2010    Adventure                               Astragon     0.06
## 7788     3DS 2012   Simulation           Konami Digital Entertainment     0.00
## 7789    X360 2006 Role-Playing                            Square Enix     0.17
## 7790     PS2 2002 Role-Playing                                 Capcom     0.09
## 7791     N64 1996       Sports           Konami Digital Entertainment     0.00
## 7792     PSP 2010       Action                        Electronic Arts     0.12
## 7793     PS3 2010     Platform                             Activision     0.16
## 7794     PS3 2009         Misc                              MTV Games     0.18
## 7795     PS2 2003     Strategy                              Banpresto     0.00
## 7796      PS 1998       Racing                  Acclaim Entertainment     0.11
## 7797     PSV 2013 Role-Playing                             Screenlife     0.13
## 7798      PS 1996      Shooter                              Interplay     0.11
## 7799      PC 2010     Strategy                            Square Enix     0.00
## 7800    X360 2010         Misc           Konami Digital Entertainment     0.15
## 7801     PS3 2009      Shooter                                    THQ     0.10
## 7802      GC 2002    Adventure                               Nintendo     0.15
## 7803     3DS 2011       Action                        Electronic Arts     0.09
## 7804     Wii 2008       Racing                 Zoo Digital Publishing     0.18
## 7805     PS3 2008      Shooter                      Eidos Interactive     0.05
## 7806    X360 2008     Fighting                        Electronic Arts     0.15
## 7807     PS3 2012       Sports                   Take-Two Interactive     0.18
## 7808      DS 2009 Role-Playing                                Ubisoft     0.16
## 7809     Wii 2008    Adventure                                    THQ     0.17
## 7810     PS2 2004       Racing                     Bethesda Softworks     0.09
## 7811     PS2 2003      Shooter                        Electronic Arts     0.09
## 7812      XB 2003       Action                      Eidos Interactive     0.14
## 7813     3DS 2016   Simulation                  Marvelous Interactive     0.00
## 7814     Wii 2009       Action                             Activision     0.18
## 7815    X360 2010    Adventure                     Namco Bandai Games     0.14
## 7816     PS2 2004         Misc                                  Atari     0.09
## 7817     GBA 2002 Role-Playing                     Namco Bandai Games     0.00
## 7818      DS 2010       Action                             Activision     0.17
## 7819     PS2 2003     Strategy                        Electronic Arts     0.09
## 7820     PS3 2011     Strategy                           PopCap Games     0.18
## 7821    XOne 2013       Sports                        Electronic Arts     0.16
## 7822     PS2 2001      Shooter           Konami Digital Entertainment     0.09
## 7823     GBA 2001       Sports                  Acclaim Entertainment     0.14
## 7824    SNES 1996       Sports           Konami Digital Entertainment     0.00
## 7825      DS 2010    Adventure           Konami Digital Entertainment     0.00
## 7826     PS2 2003       Sports                           Midway Games     0.09
## 7827      PC 2013       Action                                Ubisoft     0.04
## 7828      PS 1996     Strategy                                    SSI     0.11
## 7829      PS 1999     Fighting                    Human Entertainment     0.00
## 7830     PS3 2013       Action                     Namco Bandai Games     0.00
## 7831    X360 2012       Action                                   Sega     0.09
## 7832     PSP 2009   Simulation                              505 Games     0.08
## 7833    XOne 2015   Simulation                             Koch Media     0.10
## 7834     PS3 2008   Simulation                                Ubisoft     0.06
## 7835      DS 2008       Puzzle                             Rondomedia     0.15
## 7836     Wii 2011         Misc                                    THQ     0.08
## 7837      DS 2006     Fighting                     Namco Bandai Games     0.02
## 7838     SAT 1995   Simulation                                   Sega     0.00
## 7839     PS2 2008         Misc            Sony Computer Entertainment     0.09
## 7840     PS2 2008         Misc                 Ignition Entertainment     0.09
## 7841      PS 1998     Fighting                                 Capcom     0.11
## 7842    X360 2011       Action                                    THQ     0.15
## 7843     PS2 2001         Misc            Sony Computer Entertainment     0.09
## 7844     PSP 2005     Platform           Konami Digital Entertainment     0.17
## 7845     PS3 2009       Racing                                    THQ     0.14
## 7846     Wii 2011 Role-Playing                                Level 5     0.00
## 7847     GBA 2004    Adventure                                    THQ     0.14
## 7848      XB 2002       Sports                        Electronic Arts     0.14
## 7849     PSV 2016       Action                         Kadokawa Games     0.00
## 7850     3DS 2011         Misc                                    THQ     0.13
## 7851     PS2 2003         Misc            Sony Computer Entertainment     0.09
## 7852      PC 2011       Racing                        Electronic Arts     0.05
## 7853     Wii 2009       Racing                                Ubisoft     0.18
## 7854     GBA 2002    Adventure           Konami Digital Entertainment     0.14
## 7855      XB 2004 Role-Playing                 Microsoft Game Studios     0.14
## 7856     PS3 2011       Action                        Electronic Arts     0.07
## 7857     3DS 2012       Action                             Activision     0.15
## 7858     PSP 2009    Adventure            Sony Computer Entertainment     0.00
## 7859     PSV 2014 Role-Playing                           Idea Factory     0.08
## 7860     N64 1996      Shooter                         GT Interactive     0.15
## 7861     N64 1997     Fighting                         GT Interactive     0.15
## 7862     N64 1997       Action                           Video System     0.15
## 7863     N64 1997       Puzzle                                Compile     0.00
## 7864     N64 1996       Sports                              Imagineer     0.00
## 7865     N64 1998      Shooter                         GT Interactive     0.15
## 7866     N64 1999         Misc                               NewKidCo     0.15
## 7867     3DS 2015       Action                               Nintendo     0.00
## 7868     Wii 2009       Puzzle          Performance Designed Products     0.18
## 7869      DS 2008    Adventure                     Namco Bandai Games     0.00
## 7870     Wii 2009    Adventure                                Ubisoft     0.18
## 7871     Wii 2011         Misc                        Electronic Arts     0.13
## 7872      GC 2004       Action           Konami Digital Entertainment     0.15
## 7873      PC 2013       Action                            Deep Silver     0.11
## 7874    XOne 2013     Fighting                                Ubisoft     0.11
## 7875     PS2 2008       Sports                             Activision     0.09
## 7876     GBA 2002       Sports                        Electronic Arts     0.14
## 7877     PSP 2010       Action                                  Spike     0.00
## 7878      PS 1996     Strategy                              Mindscape     0.11
## 7879    X360 2011       Action                        Electronic Arts     0.10
## 7880      PC 2010       Action                   Take-Two Interactive     0.18
## 7881      DS 2008       Sports                                   Sega     0.00
## 7882     PS3 2011       Action                             Tecmo Koei     0.06
## 7883      DS 2010         Misc                                    THQ     0.18
## 7884     PS2 2000       Sports           Konami Digital Entertainment     0.09
## 7885     GBA 2002 Role-Playing                            Media Rings     0.14
## 7886     PS2 2005      Shooter                      Eidos Interactive     0.09
## 7887     PSV 2013 Role-Playing                            Xseed Games     0.04
## 7888     Wii 2006         Misc                     Namco Bandai Games     0.12
## 7889     PS2 2006         Misc                            D3Publisher     0.00
## 7890     PS3 2010       Sports                              505 Games     0.10
## 7891     PS3 2010       Sports                                Ubisoft     0.11
## 7892      GC 2003       Action                  Universal Interactive     0.15
## 7893     PS4 2016       Action            Sony Computer Entertainment     0.00
## 7894     PS3 2011       Sports                             Activision     0.11
## 7895     Wii 2010       Sports                                Ubisoft     0.14
## 7896     PS2 2007         Misc                        Electronic Arts     0.09
## 7897     PS2 2002      Shooter                             Activision     0.09
## 7898     PS2 2006 Role-Playing                                   Sega     0.00
## 7899     PS2 2002       Sports                                  Atari     0.09
## 7900     PSV 2015       Action                     Namco Bandai Games     0.00
## 7901     PS2 2004       Action                                   Sega     0.09
## 7902      DS 2009       Sports                               Nintendo     0.00
## 7903      DS 2010    Adventure                               Astragon     0.05
## 7904      GC 2006     Platform                          Vivendi Games     0.15
## 7905    2600 1981       Sports                     Mattel Interactive     0.18
## 7906     Wii 2011         Misc                    Crave Entertainment     0.18
## 7907      DS 2010       Puzzle                       Storm City Games     0.18
## 7908      PS 1997     Strategy            Sony Computer Entertainment     0.00
## 7909      PS 2001       Action                     Hasbro Interactive     0.05
## 7910      PS 1999       Sports                               Accolade     0.10
## 7911     GEN 1993     Strategy                                   Sega     0.00
## 7912      PS 1999       Sports                             Tecmo Koei     0.00
## 7913      XB 2004       Action                        Electronic Arts     0.14
## 7914     3DS 2011       Racing                             Activision     0.18
## 7915     PSV 2014 Role-Playing                     Namco Bandai Games     0.00
## 7916      DS 2006       Puzzle                               Nintendo     0.00
## 7917    X360 2007       Action                     Namco Bandai Games     0.15
## 7918    WiiU 2013         Misc                     Namco Bandai Games     0.00
## 7919     PS2 2009       Action                             Activision     0.11
## 7920     PS3 2010    Adventure                                Ubisoft     0.11
## 7921      PS 1995       Sports                  Acclaim Entertainment     0.10
## 7922      PC 2010 Role-Playing                     JoWood Productions     0.09
## 7923     Wii 2008       Action                        SouthPeak Games     0.17
## 7924    X360 2012       Sports                              505 Games     0.00
## 7925     PS2 2007       Sports           Konami Digital Entertainment     0.00
## 7926      DS 2010       Puzzle                                    THQ     0.10
## 7927     Wii 2007       Action                     Namco Bandai Games     0.16
## 7928      DS 2004         Misc                               Nintendo     0.00
## 7929     PS2 2005       Action            Sony Computer Entertainment     0.09
## 7930    SNES 1993   Simulation                                   Hect     0.00
## 7931      PC 2011       Racing                            Codemasters     0.00
## 7932      DS 2010         Misc                            Hudson Soft     0.00
## 7933     PS3 2013     Strategy                             Tecmo Koei     0.00
## 7934     Wii 2010    Adventure                   Asylum Entertainment     0.00
## 7935     Wii 2009       Action                     Namco Bandai Games     0.17
## 7936     Wii 2011         Misc                           Nordic Games     0.00
## 7937      DS 2007    Adventure                                Unknown     0.00
## 7938     PS3 2008    Adventure             Disney Interactive Studios     0.12
## 7939     PS4 2014         Misc     Sony Computer Entertainment Europe     0.00
## 7940     Wii 2010       Sports                              Zoo Games     0.18
## 7941     PSV 2015       Action                     Namco Bandai Games     0.00
## 7942     Wii 2007    Adventure                     Namco Bandai Games     0.07
## 7943     Wii 2010       Sports                                Mastiff     0.18
## 7944     GBA 2005     Platform                          Vivendi Games     0.13
## 7945    X360 2011      Shooter                            D3Publisher     0.10
## 7946      DS 2007         Misc                               Nintendo     0.00
## 7947     GBA 1996       Puzzle                                 Capcom     0.06
## 7948      PS 1994   Simulation                       Core Design Ltd.     0.10
## 7949     Wii 2007       Action             Disney Interactive Studios     0.17
## 7950      PC 2008      Shooter                             Activision     0.02
## 7951     PS3 2012       Sports           Konami Digital Entertainment     0.00
## 7952     3DS 2013         Misc                     Namco Bandai Games     0.00
## 7953     SAT 1995         Misc                       Seta Corporation     0.00
## 7954     GBA 2004    Adventure                                    THQ     0.13
## 7955    X360 2012       Sports                        Electronic Arts     0.10
## 7956      DS 2009       Action           Konami Digital Entertainment     0.00
## 7957     GBA 2002       Action                          Vivendi Games     0.13
## 7958      PS 1996     Platform                               Accolade     0.10
## 7959     3DS 2011       Sports                  Marvelous Interactive     0.12
## 7960     PS2 2000       Sports            Sony Computer Entertainment     0.09
## 7961      DS 2010   Simulation                              505 Games     0.18
## 7962     PS2 2003     Strategy                                 Capcom     0.09
## 7963    SNES 1994     Strategy                     Namco Bandai Games     0.00
## 7964     PS2 2003      Shooter                               Metro 3D     0.09
## 7965     GBA 2001       Action                             Activision     0.13
## 7966     Wii 2009       Racing                                 Capcom     0.05
## 7967      XB 2002       Racing                                   Sega     0.12
## 7968     PS2 2005       Action                             Activision     0.09
## 7969      DS 2008     Fighting                                    THQ     0.15
## 7970     3DS 2013       Action           Konami Digital Entertainment     0.00
## 7971     PS2 2006       Action                             Tecmo Koei     0.00
## 7972      XB 2002       Action                      Eidos Interactive     0.14
## 7973     PS3 2009      Shooter                             Activision     0.17
## 7974     PS2 2007       Sports                                   Sega     0.00
## 7975      XB 2003       Sports                        Electronic Arts     0.14
## 7976    XOne 2014         Misc                 Microsoft Game Studios     0.15
## 7977     PSP 2012 Role-Playing                                Level 5     0.00
## 7978      DS 2006 Role-Playing                               Nintendo     0.16
## 7979    WiiU 2012     Fighting                     Namco Bandai Games     0.09
## 7980     Wii 2009       Racing                             Activision     0.17
## 7981     Wii 2007       Action                            D3Publisher     0.17
## 7982     PS2 2002 Role-Playing                             Tecmo Koei     0.09
## 7983     PSV 2014 Role-Playing                                   Sega     0.00
## 7984    X360 2010       Racing                       Black Bean Games     0.10
## 7985     PSP 2005       Action                             Tecmo Koei     0.07
## 7986      XB 2006       Sports                        Electronic Arts     0.13
## 7987    X360 2007      Shooter                                Ubisoft     0.14
## 7988      XB 2002         Misc                 Microsoft Game Studios     0.14
## 7989      DS 2007    Adventure                           Midway Games     0.17
## 7990     PS2 2003 Role-Playing              Sony Online Entertainment     0.09
## 7991    X360 2011       Sports                             Activision     0.14
## 7992    X360 2008       Sports                           Midway Games     0.17
## 7993     PSP 2011     Fighting                                    THQ     0.12
## 7994      PS 1997       Action                     Namco Bandai Games     0.10
## 7995      DC 2001 Role-Playing                                   Sega     0.00
## 7996     PS3 2011   Simulation            Sony Computer Entertainment     0.06
## 7997      PC 2011       Action Warner Bros. Interactive Entertainment     0.04
## 7998     PS3 2010       Sports                   Take-Two Interactive     0.17
## 7999     PS2 2004     Fighting                          Vivendi Games     0.09
## 8000      DS 2010    Adventure                     Namco Bandai Games     0.06
## 8001    X360 2012      Shooter                        Electronic Arts     0.10
## 8002     Wii 2009   Simulation           Konami Digital Entertainment     0.17
## 8003    X360 2010       Sports                                Ubisoft     0.08
## 8004     PS2 2004   Simulation                              505 Games     0.09
## 8005     GBA 2003       Sports                     BAM! Entertainment     0.13
## 8006      DS 2010       Action                                    THQ     0.13
## 8007      DS 2006   Simulation                                Ubisoft     0.17
## 8008     PS2 2003 Role-Playing                                  Atari     0.09
## 8009      XB 2005      Shooter                   Take-Two Interactive     0.14
## 8010     PS4 2014       Racing                       Milestone S.r.l.     0.04
## 8011      XB 2003       Action                              LucasArts     0.14
## 8012     Wii 2007       Sports                        Electronic Arts     0.17
## 8013     PS2 2003       Action                          Vivendi Games     0.09
## 8014     PSP 2009 Role-Playing                      Rising Star Games     0.08
## 8015    X360 2008         Misc                              MTV Games     0.16
## 8016      PS 2000       Sports                     Victor Interactive     0.10
## 8017     Wii 2009       Action                   Take-Two Interactive     0.17
## 8018     PSV 2013    Adventure                            Square Enix     0.14
## 8019      XB 2002     Platform                        Electronic Arts     0.14
## 8020     SAT 1997     Fighting                             Tecmo Koei     0.00
## 8021     PS2 2000       Racing                        Electronic Arts     0.04
## 8022     PS2 2003    Adventure            Sony Computer Entertainment     0.09
## 8023      DS 2005       Action             Disney Interactive Studios     0.15
## 8024      XB 2005      Shooter                           Midway Games     0.14
## 8025     Wii 2009       Action                              505 Games     0.11
## 8026     PS4 2014       Action                             Tecmo Koei     0.06
## 8027     GBA 2005     Strategy                              Banpresto     0.00
## 8028      PC 2015      Shooter                   Take-Two Interactive     0.07
## 8029      DS 2007       Sports                                 Jaleco     0.00
## 8030     PS2 2007 Role-Playing                   Nippon Ichi Software     0.04
## 8031     Wii 2011     Platform                                    THQ     0.11
## 8032    X360 2010         Misc                 Microsoft Game Studios     0.05
## 8033      PS 2000       Action                               TDK Core     0.10
## 8034      PC 2009      Shooter                   Take-Two Interactive     0.01
## 8035     GBA 2001    Adventure           Konami Digital Entertainment     0.13
## 8036      DS 2009       Action                             Activision     0.17
## 8037     PSP 2009       Action                                  Atari     0.16
## 8038      GB 1991     Strategy                               Nintendo     0.00
## 8039     PS2 2003         Misc            Sony Computer Entertainment     0.09
## 8040     Wii 2008    Adventure                                  Atari     0.09
## 8041      PC 2009     Strategy                                    THQ     0.00
## 8042    XOne 2014         Misc                                Ubisoft     0.08
## 8043      XB 2005 Role-Playing                           Midway Games     0.14
## 8044      XB 2001      Shooter           Konami Digital Entertainment     0.14
## 8045     Wii 2011       Action Warner Bros. Interactive Entertainment     0.07
## 8046      XB 2002         Misc                             Infogrames     0.14
## 8047      PS 2001       Action                      Eidos Interactive     0.10
## 8048     PS3 2010       Action                             Activision     0.12
## 8049    X360 2013       Action                                 Capcom     0.10
## 8050     N64 1999       Sports           Konami Digital Entertainment     0.00
## 8051      WS 1999 Role-Playing                     Namco Bandai Games     0.00
## 8052      PS 1997     Platform            Sony Computer Entertainment     0.00
## 8053     PS2 2004      Shooter                Gathering of Developers     0.09
## 8054    X360 2013       Action                            Square Enix     0.07
## 8055     GBA 2002         Misc                                  Atari     0.13
## 8056     PS2 2008       Sports                      DTP Entertainment     0.00
## 8057      PC 2011       Racing                                Ubisoft     0.05
## 8058     PSP 2005     Strategy           Konami Digital Entertainment     0.11
## 8059     3DS 2012         Misc                                   Sega     0.00
## 8060     Wii 2008         Misc                                   Sega     0.09
## 8061     PS2 2009       Action                             Activision     0.13
## 8062     PSP 2005         Misc            Sony Computer Entertainment     0.00
## 8063     Wii 2011         Misc                             Activision     0.15
## 8064     3DS 2016       Action Warner Bros. Interactive Entertainment     0.07
## 8065      GC 2002     Fighting                             Activision     0.14
## 8066      DS 2005       Action                             Activision     0.17
## 8067     Wii 2011         Misc                           Nordic Games     0.00
## 8068    SNES 1993       Sports                                 Capcom     0.04
## 8069    X360 2008       Action             Disney Interactive Studios     0.16
## 8070      DS 2011   Simulation                             Activision     0.13
## 8071     Wii 2010         Misc                                Ubisoft     0.00
## 8072     PS3 2009 Role-Playing                   Nippon Ichi Software     0.07
## 8073      DS 2010       Puzzle                                  PlayV     0.05
## 8074      GC 2006       Sports                        Electronic Arts     0.14
## 8075     PSV 2014 Role-Playing                                  Atlus     0.07
## 8076      PC 2015       Action Warner Bros. Interactive Entertainment     0.11
## 8077     SAT 1998     Fighting                                 Capcom     0.00
## 8078     GBA 2004         Misc                               Nintendo     0.13
## 8079     3DS 2013 Role-Playing                     Namco Bandai Games     0.00
## 8080      DS 2008         Misc                    Brash Entertainment     0.17
## 8081      XB 2001       Racing                             Infogrames     0.15
## 8082     PS3 2014     Fighting                       Arc System Works     0.09
## 8083     PS3 2011       Sports           Konami Digital Entertainment     0.00
## 8084    X360 2010     Platform                            D3Publisher     0.10
## 8085     PSV 2014     Fighting                                   Sega     0.08
## 8086    SNES 1991     Strategy                              Banpresto     0.00
## 8087     PS3 2011       Action Warner Bros. Interactive Entertainment     0.09
## 8088     PS4 2016 Role-Playing                   Nippon Ichi Software     0.06
## 8089      XB 2004      Shooter                     Empire Interactive     0.14
## 8090      PS 1996         Misc            Sony Computer Entertainment     0.10
## 8091     PSP 2007       Action                             Activision     0.16
## 8092     PS2 2004 Role-Playing                                 Capcom     0.09
## 8093     PS2 2003       Racing                                  Genki     0.09
## 8094      PS 1997    Adventure                    ASCII Entertainment     0.00
## 8095      PC 2010       Sports                        Electronic Arts     0.00
## 8096      PC 2013       Action Warner Bros. Interactive Entertainment     0.04
## 8097      XB 2004       Sports                             Activision     0.13
## 8098      DS 2007   Simulation             Disney Interactive Studios     0.13
## 8099     N64 1999         Misc                               NewKidCo     0.14
## 8100     N64 1999       Racing                  Acclaim Entertainment     0.14
## 8101    SNES 1994      Shooter           Konami Digital Entertainment     0.00
## 8102     PSV 2013 Role-Playing                          Compile Heart     0.09
## 8103      GC 2002       Action                           Midway Games     0.14
## 8104     PS2 2006   Simulation                              Banpresto     0.00
## 8105    WiiU 2015         Misc                             Activision     0.12
## 8106      XB 2005     Platform                                   Sega     0.13
## 8107     PS3 2012       Racing                     Namco Bandai Games     0.05
## 8108      DS 2005       Racing                        Electronic Arts     0.15
## 8109      DS 2010    Adventure                        SouthPeak Games     0.01
## 8110     GBA 2001    Adventure                                Ubisoft     0.13
## 8111     PS3 2006       Racing                                   Sega     0.14
## 8112      DC 2000       Sports                                   Sega     0.00
## 8113     PS2 2000       Puzzle                     Empire Interactive     0.09
## 8114      XB 2007       Action                             Activision     0.13
## 8115      PC 2013      Shooter                                   Sega     0.10
## 8116    X360 2010       Action                     Namco Bandai Games     0.14
## 8117     PS3 2011      Shooter                            Square Enix     0.07
## 8118      PC 2014 Role-Playing                     Namco Bandai Games     0.08
## 8119     3DS 2013         Misc                               Nintendo     0.00
## 8120      GC 2005      Shooter                             Activision     0.14
## 8121    X360 2010       Racing                                    THQ     0.17
## 8122    X360 2011       Action                                    THQ     0.13
## 8123     PS3 2009         Misc            Sony Computer Entertainment     0.00
## 8124     Wii 2008       Sports                             Activision     0.17
## 8125     SAT 1994       Racing                                   Sega     0.00
## 8126     Wii 2011       Action                             Activision     0.10
## 8127      PS 1999       Action                    Crave Entertainment     0.10
## 8128      PC 2012      Shooter                                Ubisoft     0.05
## 8129     GBA 2003       Sports                        Electronic Arts     0.13
## 8130      DS 2011       Action                                   Sega     0.10
## 8131      PC 2011      Shooter                     Bethesda Softworks     0.06
## 8132     GBA 2005         Misc                 Zoo Digital Publishing     0.13
## 8133     PS2 2005       Racing                 Zoo Digital Publishing     0.09
## 8134    X360 2010       Action                             Tecmo Koei     0.11
## 8135      PC 2015       Sports                        Electronic Arts     0.04
## 8136      XB 2004       Action           Konami Digital Entertainment     0.14
## 8137     PS3 2011      Shooter                                Unknown     0.17
## 8138     PS2 2002     Strategy                      Eidos Interactive     0.09
## 8139      PC 2016      Shooter                     Bethesda Softworks     0.06
## 8140      DS 2010         Misc                        UFO Interactive     0.17
## 8141     3DS 2012       Sports           Konami Digital Entertainment     0.05
## 8142     Wii 2008    Adventure                             Activision     0.08
## 8143      GC 2001       Sports                        Electronic Arts     0.14
## 8144     PS4 2014       Action                     Namco Bandai Games     0.10
## 8145    X360 2009       Racing                                  Atari     0.06
## 8146      PS 2000         Misc                             Infogrames     0.10
## 8147     PSP 2013       Action                             Tecmo Koei     0.00
## 8148     PS2 2002       Action                           Midway Games     0.09
## 8149     Wii 2007       Action                 Ignition Entertainment     0.16
## 8150      GC 2001     Platform                                Ubisoft     0.14
## 8151     Wii 2008       Puzzle                              Destineer     0.17
## 8152      PS 1998       Sports                                    THQ     0.10
## 8153     PS2 2008       Sports                       Activision Value     0.09
## 8154    X360 2009      Shooter                      DTP Entertainment     0.14
## 8155      PS 2000       Action                   Take-Two Interactive     0.10
## 8156     PS2 2005       Action                     Namco Bandai Games     0.00
## 8157     PS2 2003         Misc            Sony Computer Entertainment     0.09
## 8158      DS 2011       Sports           Konami Digital Entertainment     0.00
## 8159     PSV 2014 Role-Playing                   Nippon Ichi Software     0.04
## 8160      GC 2005    Adventure                            Global Star     0.14
## 8161     PS2 2005   Simulation                              505 Games     0.05
## 8162     PS2 2009       Action                      Eidos Interactive     0.09
## 8163     GBA 2004         Misc                                    THQ     0.13
## 8164     PS3 2007       Sports                   Take-Two Interactive     0.16
## 8165     PS2 2002       Sports           Konami Digital Entertainment     0.04
## 8166      DS 2008       Sports                        Electronic Arts     0.14
## 8167     PSP 2009     Strategy                     Namco Bandai Games     0.00
## 8168      DS 2005   Simulation                                Unknown     0.09
## 8169     PSP 2008     Strategy                     Namco Bandai Games     0.00
## 8170      XB 2005       Racing                                    THQ     0.13
## 8171     GBA 2003     Platform                        Electronic Arts     0.13
## 8172     GBA 2002       Sports                                  Atari     0.13
## 8173      DS 2006 Role-Playing                     Namco Bandai Games     0.00
## 8174      DS 2008   Simulation                        Electronic Arts     0.00
## 8175     PS3 2011       Action                                 Capcom     0.00
## 8176     PS2 2008       Racing                                   Sega     0.09
## 8177     Wii 2011       Racing                                Ubisoft     0.06
## 8178     PS2 2004     Fighting                            Global Star     0.09
## 8179     Wii 2010       Sports                              Zoo Games     0.17
## 8180     PS2 2001       Sports                           Midway Games     0.09
## 8181    X360 2011       Action                                   Sega     0.11
## 8182      DS 2010       Action             Disney Interactive Studios     0.12
## 8183      DS 2005     Platform                     Namco Bandai Games     0.16
## 8184     GBA 2001       Sports           Konami Digital Entertainment     0.13
## 8185      DS 2008    Adventure                                    THQ     0.16
## 8186     Wii 2010       Sports                 GameMill Entertainment     0.17
## 8187      PC 2005      Shooter                              LucasArts     0.02
## 8188      PS 2000       Sports                     Empire Interactive     0.10
## 8189      PS 2001    Adventure                             LEGO Media     0.10
## 8190    X360 2007       Sports                   Take-Two Interactive     0.16
## 8191    X360 2016       Sports                        Electronic Arts     0.03
## 8192      DS 2010    Adventure                                    THQ     0.17
## 8193     GBA 2004       Sports                                  Atari     0.13
## 8194      XB 2008       Sports                        Electronic Arts     0.13
## 8195     GBA 2005     Platform                                    THQ     0.13
## 8196     PS2 2006 Role-Playing                              Banpresto     0.00
## 8197     PS2 2008       Sports           Konami Digital Entertainment     0.00
## 8198      XB 2003       Sports                        Electronic Arts     0.13
## 8199      XB 2005         Misc                     Namco Bandai Games     0.13
## 8200     PS3 2011         Misc                                    THQ     0.16
## 8201     PS3 2010       Action                                    THQ     0.12
## 8202      XB 2002       Sports                                   Sega     0.13
## 8203      DS 2007         Misc                                Ubisoft     0.15
## 8204      DS 2010         Misc             Disney Interactive Studios     0.14
## 8205    X360 2011       Action Warner Bros. Interactive Entertainment     0.08
## 8206     Wii 2008     Fighting           Konami Digital Entertainment     0.13
## 8207     PSP 2010         Misc                         Ubisoft Annecy     0.07
## 8208     PS2 2005       Action                           Midway Games     0.09
## 8209     PS3 2010         Misc             Disney Interactive Studios     0.11
## 8210     PS3 2009       Sports                            Codemasters     0.00
## 8211     PS2 2005       Sports            Sony Computer Entertainment     0.09
## 8212      DS 2009    Adventure                                Ubisoft     0.16
## 8213     PS2 2001      Shooter        Midas Interactive Entertainment     0.09
## 8214     PS3 2009     Strategy                                   Sega     0.13
## 8215     3DS 2013         Misc           Konami Digital Entertainment     0.00
## 8216      DS 2006       Sports           Konami Digital Entertainment     0.00
## 8217     PS3 2011       Action Warner Bros. Interactive Entertainment     0.09
## 8218      PC 2011    Adventure                              LucasArts     0.00
## 8219      DS 2009    Adventure                                Ubisoft     0.07
## 8220      PS 2000    Adventure                     Mattel Interactive     0.10
## 8221     PS3 2011       Racing                                 Capcom     0.04
## 8222     PSV 2016       Sports           Konami Digital Entertainment     0.00
## 8223     PS2 2002       Sports                                   Sega     0.09
## 8224      DS 2008 Role-Playing                                Unknown     0.00
## 8225     PSV 2014       Action             Idea Factory International     0.07
## 8226     GBA 2001       Sports                     BAM! Entertainment     0.12
## 8227     PS3 2009       Action                 Playlogic Game Factory     0.11
## 8228     PS2 2002       Sports                                Natsume     0.09
## 8229      GC 2002     Platform                                    THQ     0.13
## 8230     PS2 2001    Adventure                                    3DO     0.09
## 8231      GC 2006     Platform                                Ubisoft     0.13
## 8232     PS3 2008       Action             Disney Interactive Studios     0.14
## 8233     PS4 2015    Adventure                         Telltale Games     0.10
## 8234    XOne 2014         Misc                 Microsoft Game Studios     0.11
## 8235      DS 2010       Sports                                  Atari     0.16
## 8236      PS 1995     Fighting                  Acclaim Entertainment     0.10
## 8237      DS 2007    Adventure           Konami Digital Entertainment     0.09
## 8238     GBA 2004         Misc                    Crave Entertainment     0.12
## 8239     PS2 2005      Shooter                        Essential Games     0.00
## 8240     PS3 2008       Sports                             Activision     0.16
## 8241      GC 2006       Sports                   Take-Two Interactive     0.13
## 8242     PS3 2009       Sports                                  Spike     0.16
## 8243      DS 2009 Role-Playing                            Square Enix     0.00
## 8244     PS2 2002       Sports            Sony Computer Entertainment     0.08
## 8245     PS3 2011       Action                      DTP Entertainment     0.07
## 8246      DS 2010     Strategy                     Namco Bandai Games     0.00
## 8247      GC 2006       Action                           Midway Games     0.13
## 8248      XB 2003       Sports                 Microsoft Game Studios     0.13
## 8249      PS 1998     Fighting                                    SNK     0.00
## 8250      PC 2011 Role-Playing                            Square Enix     0.08
## 8251    X360 2011       Sports                             Activision     0.16
## 8252      PS 1996       Action                       Adeline Software     0.10
## 8253      DS 2007       Sports                              505 Games     0.16
## 8254     Wii 2008   Simulation                              Destineer     0.16
## 8255      DS 2007       Action                     Namco Bandai Games     0.00
## 8256     PS2 2004       Sports            Sony Computer Entertainment     0.08
## 8257     PS3 2008     Fighting                        Electronic Arts     0.13
## 8258      DS 2009       Puzzle          Performance Designed Products     0.16
## 8259     Wii 2008       Sports                        Electronic Arts     0.16
## 8260     PS4 2015       Action                                   Sega     0.00
## 8261      GC 2003     Platform                          Vivendi Games     0.13
## 8262      PC 2012 Role-Playing                                 Funcom     0.07
## 8263    X360 2008       Sports                   Take-Two Interactive     0.15
## 8264    X360 2006       Action                             Activision     0.16
## 8265      GC 2005       Action                             Activision     0.13
## 8266      XB 2003      Shooter                          Vivendi Games     0.13
## 8267     PS3 2011     Platform            Sony Computer Entertainment     0.08
## 8268     PSP 2012       Action                     Namco Bandai Games     0.00
## 8269     PS2 2009       Action                             Activision     0.08
## 8270     GBA 2001       Sports           Konami Digital Entertainment     0.12
## 8271     PS2 2001      Shooter                     Virgin Interactive     0.08
## 8272      XB 2003         Misc                 Microsoft Game Studios     0.13
## 8273     PS3 2009       Action Warner Bros. Interactive Entertainment     0.08
## 8274      GC 2005     Fighting                        Electronic Arts     0.13
## 8275      DS 2006       Puzzle                               Nintendo     0.13
## 8276      PS 2001     Platform            Sony Computer Entertainment     0.10
## 8277      GB 1999       Sports           Konami Digital Entertainment     0.00
## 8278     SAT 1998     Fighting                                    SNK     0.00
## 8279      DS 2010       Action                     Namco Bandai Games     0.00
## 8280     Wii 2008    Adventure                        Scholastic Inc.     0.16
## 8281     PSV 2014       Action                     Namco Bandai Games     0.06
## 8282      PS 1999     Strategy                     Namco Bandai Games     0.00
## 8283      PS 1999    Adventure                               ChunSoft     0.00
## 8284      DS 2007      Shooter                        SouthPeak Games     0.15
## 8285      XB 2004      Shooter                           Midway Games     0.13
## 8286      XB 2003      Shooter                          Vivendi Games     0.13
## 8287     PSP 2010     Platform                            D3Publisher     0.05
## 8288     PS2 2005       Racing                                Play It     0.08
## 8289     PS2 2003     Strategy                                 Jaleco     0.08
## 8290     GBA 2005         Misc                                    THQ     0.12
## 8291      DS 2009       Action                   Take-Two Interactive     0.16
## 8292     PS2 2008       Sports                                  Atari     0.08
## 8293     PS2 2000       Action                                    3DO     0.08
## 8294     3DS 2016 Role-Playing                            Deep Silver     0.03
## 8295      PC 2009     Strategy                 Microsoft Game Studios     0.01
## 8296      DS 2006       Action                                    THQ     0.12
## 8297     PS2 2009       Sports                                  Atari     0.08
## 8298      PS 1997       Action                                 Capcom     0.00
## 8299     PS3 2010       Action Warner Bros. Interactive Entertainment     0.10
## 8300    X360 2006       Sports                   Take-Two Interactive     0.15
## 8301    X360 2010       Action                 Microsoft Game Studios     0.06
## 8302      PS 1996     Fighting            Sony Computer Entertainment     0.00
## 8303     PS2 2003       Action                           Midway Games     0.08
## 8304     PS2 2003 Role-Playing                            Square Enix     0.00
## 8305     PS2 2007 Role-Playing                     Namco Bandai Games     0.00
## 8306     Wii 2010         Misc                        UFO Interactive     0.16
## 8307      WS 2000     Strategy                     Namco Bandai Games     0.00
## 8308      GC 2003     Platform Warner Bros. Interactive Entertainment     0.13
## 8309     GBA 2005     Platform                                    THQ     0.12
## 8310     PSP 2009       Action                     Namco Bandai Games     0.00
## 8311     PSP 2008       Sports                             Activision     0.16
## 8312     Wii 2010       Sports                            D3Publisher     0.16
## 8313     PSP 2007       Action            Sony Computer Entertainment     0.07
## 8314     Wii 2010    Adventure                                Unknown     0.09
## 8315      XB 2003       Action                              Interplay     0.13
## 8316    X360 2008 Role-Playing                            Codemasters     0.03
## 8317     PSP 2006       Sports                        Electronic Arts     0.13
## 8318     PSP 2013       Action           Konami Digital Entertainment     0.00
## 8319      DC 1999       Racing                                  Genki     0.00
## 8320      PS 1998     Fighting                                 Agetec     0.05
## 8321    X360 2007       Action                             Activision     0.16
## 8322     Wii 2009       Sports                                  Atari     0.16
## 8323     Wii 2008       Puzzle                            Deep Silver     0.04
## 8324      XB 2004       Action                      Eidos Interactive     0.13
## 8325     PS3 2009         Misc            Sony Computer Entertainment     0.00
## 8326     PSP 2008       Sports            Sony Computer Entertainment     0.16
## 8327     3DS 2012       Action                             Activision     0.13
## 8328     GBA 2005       Action                        Electronic Arts     0.12
## 8329    X360 2014       Action                             Activision     0.09
## 8330      PS 1999     Platform                                  Atari     0.09
## 8331     GBA 2004         Misc                  Majesco Entertainment     0.12
## 8332     Wii 2008       Puzzle                            Mumbo Jumbo     0.16
## 8333     Wii 2008         Misc                           Game Factory     0.16
## 8334    X360 2009       Action                 Playlogic Game Factory     0.14
## 8335     PS2 2007     Strategy                     Bethesda Softworks     0.06
## 8336    X360 2010       Racing                                 Capcom     0.07
## 8337     PSP 2004         Misc           Konami Digital Entertainment     0.00
## 8338     N64 1999       Racing                           Midway Games     0.14
## 8339     N64 1999    Adventure                            Hudson Soft     0.05
## 8340     N64 2000      Shooter                  Acclaim Entertainment     0.12
## 8341      XB 2003       Action                        Electronic Arts     0.13
## 8342     GBA 2004         Misc                  Majesco Entertainment     0.12
## 8343     Wii 2008   Simulation                  Majesco Entertainment     0.14
## 8344     GBA 2004         Misc                               Nintendo     0.12
## 8345     PS3 2012 Role-Playing                   Nippon Ichi Software     0.06
## 8346     PS2 2009       Sports                                  Spike     0.08
## 8347     PSP 2010       Action                     Namco Bandai Games     0.00
## 8348     PS2 2008         Misc             Disney Interactive Studios     0.08
## 8349     PS2 2007    Adventure                        Kadokawa Shoten     0.00
## 8350     GBA 2004       Action             Disney Interactive Studios     0.12
## 8351      PC 2005     Strategy                   Take-Two Interactive     0.02
## 8352     PSP 2013       Sports           Konami Digital Entertainment     0.00
## 8353      PS 1995 Role-Playing                       Panther Software     0.02
## 8354     Wii 2010         Misc                                Ubisoft     0.16
## 8355     PS4 2015       Sports                        Electronic Arts     0.10
## 8356    X360 2010    Adventure                                Ubisoft     0.11
## 8357      DS 2010         Misc                              Telegames     0.16
## 8358     PS2 2006 Role-Playing                     Namco Bandai Games     0.00
## 8359     GBA 2004    Adventure                                 Capcom     0.00
## 8360      DS 2008       Action                                    THQ     0.16
## 8361     PS2 2001       Sports                             Tecmo Koei     0.05
## 8362      PS 2000       Action           Konami Digital Entertainment     0.09
## 8363     Wii 2009       Puzzle           Konami Digital Entertainment     0.10
## 8364    X360 2007         Misc                 Microsoft Game Studios     0.14
## 8365     PS2 2004       Action                        Electronic Arts     0.08
## 8366    X360 2009       Action                             Activision     0.12
## 8367    X360 2012       Action                 GameMill Entertainment     0.16
## 8368     PS2 2007       Action               Blast! Entertainment Ltd     0.08
## 8369     GBA 2004         Misc                  Majesco Entertainment     0.12
## 8370     Wii 2013   Simulation             Disney Interactive Studios     0.08
## 8371     Wii 2007         Misc                      Rising Star Games     0.11
## 8372    SNES 1996      Shooter                            Hudson Soft     0.00
## 8373     PS2 2004      Shooter                                  Atari     0.08
## 8374      PS 2000       Action                                    3DO     0.09
## 8375     PS2 2005       Action                                 Capcom     0.04
## 8376      PS 1996       Action                Gremlin Interactive Ltd     0.09
## 8377      GC 2003 Role-Playing                                Unknown     0.00
## 8378     PS4 2015       Racing                       Milestone S.r.l.     0.00
## 8379      GC 2005       Sports                        Electronic Arts     0.13
## 8380    X360 2007       Racing                             Activision     0.15
## 8381    X360 2009       Action             Disney Interactive Studios     0.11
## 8382     GBA 2003      Shooter                        Electronic Arts     0.12
## 8383     PS2 2007     Fighting                     Namco Bandai Games     0.00
## 8384      GC 2002     Platform                         TDK Mediactive     0.13
## 8385      PS 1998 Role-Playing                             SquareSoft     0.00
## 8386     PS2 2004       Sports            Sony Computer Entertainment     0.08
## 8387      XB 2002      Shooter                             Infogrames     0.13
## 8388      PS 2001       Racing                     Hasbro Interactive     0.09
## 8389      PS 1996       Sports                Gremlin Interactive Ltd     0.09
## 8390     3DS 2011         Misc                                Ubisoft     0.13
## 8391      XB 2003       Action                   Take-Two Interactive     0.13
## 8392     PSV 2015 Role-Playing                     Namco Bandai Games     0.00
## 8393      PS 1995       Racing                       Crystal Dynamics     0.09
## 8394     Wii 2010       Action                             Activision     0.15
## 8395     PS2 2002       Sports                        Electronic Arts     0.07
## 8396     PS2 2008         Misc                                    THQ     0.08
## 8397      DS 2006     Fighting                               Nintendo     0.02
## 8398      PS 1998    Adventure                    Human Entertainment     0.02
## 8399      PS 2000       Action                                Ubisoft     0.09
## 8400     Wii 2007       Sports                                Ubisoft     0.15
## 8401     PS4 2016       Sports           Konami Digital Entertainment     0.00
## 8402      GC 2003     Platform                                 Capcom     0.13
## 8403     Wii 2009         Misc                              Mindscape     0.00
## 8404     PSP 2005       Racing            Sony Computer Entertainment     0.14
## 8405      DS 2006     Platform                               Nintendo     0.00
## 8406     PS2 2008 Role-Playing                                  Atlus     0.00
## 8407    X360 2010   Simulation                              505 Games     0.08
## 8408      PS 1996         Misc           Konami Digital Entertainment     0.00
## 8409     PS2 2000       Racing                  Acclaim Entertainment     0.08
## 8410     PS4 2016 Role-Playing                                   Sega     0.06
## 8411     PS3 2008       Action           Konami Digital Entertainment     0.13
## 8412      XB 2003     Fighting                      Eidos Interactive     0.13
## 8413      DS 2004       Puzzle                 Ignition Entertainment     0.10
## 8414      XB 2002       Action                           Midway Games     0.13
## 8415     PS4 2015       Action                             Tecmo Koei     0.05
## 8416     PS2 2003 Role-Playing                            Hudson Soft     0.00
## 8417      GC 2002 Role-Playing                             Activision     0.10
## 8418     PS3 2011       Racing                                Ubisoft     0.00
## 8419    X360 2009       Sports                 Focus Home Interactive     0.13
## 8420     GBA 2002       Racing                                    THQ     0.12
## 8421     GBA 2002      Shooter                     BAM! Entertainment     0.12
## 8422    SNES 1996     Strategy                             Tecmo Koei     0.00
## 8423      DS 2010         Misc                              505 Games     0.16
## 8424      DS 2007    Adventure                   Take-Two Interactive     0.15
## 8425    SNES 1993       Sports                            Hudson Soft     0.00
## 8426      DS 2009         Misc                              Game Life     0.04
## 8427    SNES 1996     Fighting                               Nintendo     0.00
## 8428     3DS 2014 Role-Playing                            Square Enix     0.00
## 8429    XOne 2015      Shooter                              505 Games     0.08
## 8430      XB 2006      Shooter                      Eidos Interactive     0.12
## 8431     3DS 2014       Action                        Nippon Columbia     0.00
## 8432    X360 2015       Sports                            Deep Silver     0.15
## 8433      DS 2008       Action                             Activision     0.15
## 8434     PS3 2008      Shooter                              LucasArts     0.11
## 8435     PS2 2004         Misc                                   Sega     0.08
## 8436      GC 2003         Misc                           Midway Games     0.13
## 8437      XB 2004    Adventure                          Vivendi Games     0.12
## 8438     GBA 2005         Misc                              DSI Games     0.12
## 8439     Wii 2008     Platform                     Namco Bandai Games     0.11
## 8440     Wii 2006      Shooter             Disney Interactive Studios     0.10
## 8441     PS2 2008       Sports            Sony Computer Entertainment     0.08
## 8442      DS 2005       Action                          Vivendi Games     0.14
## 8443     SAT 1997       Action                                 Capcom     0.00
## 8444      PC 2014 Role-Playing                                 NCSoft     0.08
## 8445     3DS 2016 Role-Playing                     Namco Bandai Games     0.00
## 8446    X360 2010   Simulation                             Activision     0.12
## 8447      DS 2007         Misc                           IE Institute     0.00
## 8448     PS3 2014       Sports           Konami Digital Entertainment     0.00
## 8449     PS4 2015       Action                  Marvelous Interactive     0.07
## 8450    SNES 1997       Sports                               Nintendo     0.00
## 8451      GC 2002    Adventure                               Nintendo     0.01
## 8452      PC 2012   Simulation                        Electronic Arts     0.00
## 8453    X360 2012       Action                                   Sega     0.11
## 8454      XB 2004       Racing                     Empire Interactive     0.12
## 8455     3DS 2015 Role-Playing                     Namco Bandai Games     0.04
## 8456     PS3 2008       Sports                        Electronic Arts     0.15
## 8457     PS3 2010       Action                             Activision     0.14
## 8458    2600 1983       Action                           Parker Bros.     0.15
## 8459    2600 1982       Action                     Avalon Interactive     0.15
## 8460    2600 1981       Action                     Mattel Interactive     0.15
## 8461     SAT 1995      Shooter           Konami Digital Entertainment     0.00
## 8462    X360 2007     Strategy                              LucasArts     0.13
## 8463     PS3 2012 Role-Playing                          Compile Heart     0.05
## 8464     PS2 2002     Platform                                  Atari     0.08
## 8465     PSV 2015       Action                     Namco Bandai Games     0.00
## 8466     Wii 2010     Strategy                   Take-Two Interactive     0.13
## 8467     PS3 2016       Action            Sony Computer Entertainment     0.13
## 8468     PSV 2013 Role-Playing                                   Sega     0.00
## 8469     PS2 2001       Racing                                  Atari     0.08
## 8470     PS2 2002 Role-Playing            Sony Computer Entertainment     0.00
## 8471     PS2 2001       Racing                              LucasArts     0.08
## 8472     Wii 2008       Puzzle                         Popcorn Arcade     0.16
## 8473     GBA 2002       Racing                                    THQ     0.12
## 8474     PS3 2014 Role-Playing                             Tecmo Koei     0.05
## 8475     PS3 2009       Action                             Activision     0.15
## 8476    X360 2009    Adventure                            Codemasters     0.14
## 8477      PS 2000      Shooter                        Fox Interactive     0.09
## 8478     PS2 2004       Sports            Sony Computer Entertainment     0.08
## 8479     PSP 2006 Role-Playing                   Take-Two Interactive     0.13
## 8480     PSP 2008       Action                             Activision     0.12
## 8481     3DS 2011       Racing                            Codemasters     0.07
## 8482      DS 2011         Misc                                    THQ     0.12
## 8483     Wii 2010      Shooter                     Neko Entertainment     0.08
## 8484     PS3 2010       Action                        Electronic Arts     0.11
## 8485      DS 2010 Role-Playing                            Square Enix     0.12
## 8486    X360 2011       Action                 Ignition Entertainment     0.07
## 8487     PS2 2003       Sports                                   Sega     0.08
## 8488     Wii 2011       Action                                   Sega     0.11
## 8489     PS2 2000       Racing                        Electronic Arts     0.06
## 8490     PSP 2006     Fighting                  Majesco Entertainment     0.13
## 8491      DS 2009     Fighting           Konami Digital Entertainment     0.00
## 8492    X360 2010       Action                     Namco Bandai Games     0.08
## 8493      DS 2010       Action                                  PlayV     0.00
## 8494      GC 2002      Shooter                         TDK Mediactive     0.13
## 8495      DS 2005       Sports                               Nintendo     0.11
## 8496     PS2 2002     Platform                             Infogrames     0.08
## 8497      PS 2000         Misc                            Hudson Soft     0.00
## 8498     GBA 2006   Simulation                                    THQ     0.12
## 8499     PS2 2003    Adventure                                  Atari     0.08
## 8500     PS3 2013       Action                             Tecmo Koei     0.02
## 8501     GBA 2006       Action                     Namco Bandai Games     0.12
## 8502     Wii 2007       Racing                             Activision     0.15
## 8503     Wii 2009       Action                          Vir2L Studios     0.14
## 8504      PC 2011     Strategy                             7Sixty LLC     0.06
## 8505     Wii 2012       Action                             Activision     0.11
## 8506     Wii 2010       Action                                Unknown     0.11
## 8507     PS2 2003   Simulation                      Sammy Corporation     0.08
## 8508     3DS 2011    Adventure           Konami Digital Entertainment     0.07
## 8509      DS 2006       Action             Disney Interactive Studios     0.15
## 8510     Wii 2007     Fighting                                  Atari     0.15
## 8511     PS2 2006    Adventure                                   Sega     0.00
## 8512     GBA 2003       Action                                Ubisoft     0.12
## 8513     PSP 2010 Role-Playing                     Falcom Corporation     0.00
## 8514    X360 2011       Action                         Ubisoft Annecy     0.09
## 8515      PS 1995 Role-Playing            Sony Computer Entertainment     0.09
## 8516     PSP 2009         Misc             Disney Interactive Studios     0.13
## 8517     GBA 2005       Sports                      DTP Entertainment     0.12
## 8518      PS 2000       Sports                     Namco Bandai Games     0.00
## 8519      GC 2004         Misc                           Midway Games     0.13
## 8520      GC 2003       Racing                                    THQ     0.13
## 8521      DS 2007     Strategy                                   Sega     0.00
## 8522      PS 1998       Sports                     Victor Interactive     0.00
## 8523      PS 1998       Racing                Gremlin Interactive Ltd     0.09
## 8524      XB 2003     Strategy                                  Atari     0.12
## 8525     PS3 2009   Simulation                                Ubisoft     0.12
## 8526     PS2 2007         Misc                             Activision     0.08
## 8527     Wii 2012       Sports                   Take-Two Interactive     0.15
## 8528    X360 2014       Sports           Konami Digital Entertainment     0.05
## 8529     PS4 2015       Action                             Tecmo Koei     0.07
## 8530    SNES 1992    Adventure                               ChunSoft     0.00
## 8531     3DS 2011 Role-Playing                     Namco Bandai Games     0.00
## 8532      GC 2005       Racing                          Vivendi Games     0.12
## 8533    X360 2011         Misc                              505 Games     0.11
## 8534     Wii 2009       Sports                                  Atari     0.15
## 8535      DS 2010   Simulation                  Majesco Entertainment     0.13
## 8536    X360 2014       Racing                            Deep Silver     0.15
## 8537      XB 2005      Shooter                        Electronic Arts     0.12
## 8538     PS2 2005         Misc                           Midway Games     0.08
## 8539     PS2 2002     Platform                           Midway Games     0.08
## 8540     PS3 2007       Action                                Ubisoft     0.14
## 8541      DS 2009       Puzzle                            D3Publisher     0.15
## 8542      DS 2005         Misc                               Nintendo     0.00
## 8543     PS2 2005    Adventure                             Activision     0.08
## 8544     PS2 2003       Action                                Ubisoft     0.08
## 8545     PS3 2012       Action                             Activision     0.12
## 8546     Wii 2007     Platform           Konami Digital Entertainment     0.14
## 8547     PS2 2002    Adventure                  Acclaim Entertainment     0.08
## 8548     PSP 2011     Strategy           Konami Digital Entertainment     0.00
## 8549     PS3 2008      Shooter                       Activision Value     0.15
## 8550      XB 2003       Action                             Tecmo Koei     0.12
## 8551     PS2 2003       Sports                             Activision     0.08
## 8552      GC 2005       Action                                    THQ     0.12
## 8553    SNES 1997       Sports           Konami Digital Entertainment     0.00
## 8554      DS 2009   Simulation                                Unknown     0.12
## 8555     PS3 2007       Sports                   Take-Two Interactive     0.15
## 8556      GC 2006     Platform                            D3Publisher     0.12
## 8557      DS 2006       Action                          Vivendi Games     0.13
## 8558     PSP 2006     Strategy                          Vivendi Games     0.15
## 8559     PS2 2005 Role-Playing                              Banpresto     0.00
## 8560     PS2 2006       Sports           Konami Digital Entertainment     0.00
## 8561     PS2 2002      Shooter           Konami Digital Entertainment     0.08
## 8562    X360 2006         Misc                             Activision     0.15
## 8563     GBA 2002       Racing                             Infogrames     0.12
## 8564     PS2 2008     Fighting                     Namco Bandai Games     0.08
## 8565    SNES 1995       Sports           Konami Digital Entertainment     0.00
## 8566     Wii 2008     Fighting                           Midway Games     0.14
## 8567     PS2 2003         Misc                                Play It     0.08
## 8568     PSP 2006     Strategy              Sony Online Entertainment     0.14
## 8569      GC 2005       Action                          Vivendi Games     0.12
## 8570     Wii 2009       Sports                             Activision     0.15
## 8571     PS3 2009     Fighting                 Ignition Entertainment     0.11
## 8572      DS 2010    Adventure                   Asylum Entertainment     0.00
## 8573    XOne 2014       Action                            Square Enix     0.08
## 8574      DS 2008       Sports                                Ubisoft     0.15
## 8575      DS 2009     Strategy                  Majesco Entertainment     0.15
## 8576    SNES 1991   Simulation                              Imagineer     0.00
## 8577     Wii 2011       Sports                   Take-Two Interactive     0.15
## 8578     PSP 2011       Action                                 Capcom     0.00
## 8579      PC 2011       Sports                   Take-Two Interactive     0.09
## 8580     GBA 2001       Action                                    THQ     0.11
## 8581      PS 1997       Sports                                  Aques     0.00
## 8582     N64 1998     Fighting                                  Ocean     0.13
## 8583     N64 1999      Shooter                    Crave Entertainment     0.13
## 8584     N64 2001       Action                     BAM! Entertainment     0.13
## 8585     N64 2001       Sports           Konami Digital Entertainment     0.00
## 8586     N64 2000     Fighting                                Ubisoft     0.13
## 8587     N64 2000       Racing                           Midway Games     0.13
## 8588     N64 1999      Shooter                             Activision     0.13
## 8589     N64 2000     Strategy                               Nintendo     0.13
## 8590     N64 1999       Racing                                    THQ     0.13
## 8591     N64 1998       Action                                Ubisoft     0.13
## 8592     N64 1999         Misc                           Midway Games     0.13
## 8593     N64 1996   Simulation                       Enix Corporation     0.00
## 8594    X360 2006 Role-Playing                     Namco Bandai Games     0.12
## 8595      DS 2009       Puzzle                                Ubisoft     0.00
## 8596      DS 2010       Action                     Namco Bandai Games     0.05
## 8597      DS 2006         Misc                               TDK Core     0.00
## 8598     PSP 2006   Simulation                      Rising Star Games     0.08
## 8599      PC 2014       Racing                                Ubisoft     0.00
## 8600     PSP 2008   Simulation                     Namco Bandai Games     0.00
## 8601     PS2 2003     Fighting                          Vivendi Games     0.08
## 8602    X360 2009    Adventure                 Focus Home Interactive     0.11
## 8603     PS2 2006 Role-Playing                     Namco Bandai Games     0.00
## 8604      XB 2004       Sports                 Zoo Digital Publishing     0.12
## 8605     PS3 2007      Shooter                          Vivendi Games     0.14
## 8606    X360 2006       Sports                           Midway Games     0.15
## 8607      DS 2010   Simulation                                    THQ     0.15
## 8608     PS3 2011       Sports                                Ubisoft     0.08
## 8609      DS 2008       Sports                                Ubisoft     0.14
## 8610      DS 2008    Adventure           Konami Digital Entertainment     0.03
## 8611     PS3 2013   Simulation                 Focus Home Interactive     0.00
## 8612     Wii 2010       Action                    Crave Entertainment     0.15
## 8613     PSV 2011       Action            Sony Computer Entertainment     0.06
## 8614      DS 2009       Action                                    THQ     0.08
## 8615     PS2 2004    Adventure                     Namco Bandai Games     0.08
## 8616      DS 2007 Role-Playing                                Success     0.16
## 8617      PC 2011      Shooter                        Electronic Arts     0.07
## 8618    SNES 1992       Sports                              Banpresto     0.00
## 8619    X360 2010       Sports                                Ubisoft     0.10
## 8620     PSP 2011       Sports            Sony Computer Entertainment     0.15
## 8621    X360 2011       Racing                       Black Bean Games     0.00
## 8622    X360 2005       Sports                   Take-Two Interactive     0.13
## 8623     Wii 2009         Misc                            D3Publisher     0.14
## 8624     PS2 2006       Racing                     Empire Interactive     0.08
## 8625     PSP 2006     Fighting                                  Atari     0.14
## 8626      PS 1995       Sports                        Electronic Arts     0.09
## 8627      DS 2008       Action                              Destineer     0.15
## 8628    X360 2013       Action                             Tecmo Koei     0.09
## 8629      PS 2000       Sports            Sony Computer Entertainment     0.09
## 8630     Wii 2008       Action                                    THQ     0.15
## 8631    X360 2012         Misc                                Ubisoft     0.13
## 8632      DS 2012       Action Warner Bros. Interactive Entertainment     0.00
## 8633     PS3 2014     Fighting                                   Sega     0.05
## 8634      PS 2000       Sports           Konami Digital Entertainment     0.00
## 8635     SAT 1998    Adventure                              Imagineer     0.00
## 8636      DS 2007         Misc                                Ubisoft     0.12
## 8637     Wii 2010     Strategy           Konami Digital Entertainment     0.11
## 8638     PSV 2013    Adventure Warner Bros. Interactive Entertainment     0.02
## 8639     GBA 2001       Racing           Konami Digital Entertainment     0.09
## 8640    SNES 1994     Fighting                                 Capcom     0.00
## 8641     PS3 2008       Sports                           Midway Games     0.11
## 8642     GBA 2003       Racing                               Nintendo     0.11
## 8643      PS 1999       Racing                                 Square     0.00
## 8644      DS 2011         Misc                            D3Publisher     0.14
## 8645     GBA 2001       Puzzle                     Namco Bandai Games     0.00
## 8646      DS 2009         Misc                      DTP Entertainment     0.14
## 8647    WiiU 2012       Action                                    THQ     0.07
## 8648     Wii 2010    Adventure                              Destineer     0.15
## 8649     Wii 2011         Misc                        Electronic Arts     0.10
## 8650      DS 2007       Sports                                  Spike     0.15
## 8651     PSP 2009       Sports                                   Sega     0.00
## 8652     Wii 2011       Sports                   Take-Two Interactive     0.15
## 8653      PC 2010      Shooter                       City Interactive     0.00
## 8654      DS 2007         Misc                              505 Games     0.15
## 8655     PS3 2011         Misc                                    THQ     0.04
## 8656     GBA 2005       Action                                    THQ     0.11
## 8657     PS3 2012 Role-Playing                   Nippon Ichi Software     0.04
## 8658     PS4 2016    Adventure                                   Sega     0.00
## 8659      PS 1998         Misc                                 Syscom     0.00
## 8660    X360 2009       Sports                                  Aspyr     0.15
## 8661      PS 1996       Sports                        Electronic Arts     0.09
## 8662    X360 2010       Action           Konami Digital Entertainment     0.10
## 8663      PS 1996     Fighting                  Acclaim Entertainment     0.01
## 8664     PS2 2004      Shooter                                Play It     0.08
## 8665      DS 2007       Puzzle                      Rising Star Games     0.13
## 8666     PSP 2010         Misc                                Ubisoft     0.11
## 8667     Wii 2007    Adventure                        Electronic Arts     0.14
## 8668      PS 1995      Shooter            Sony Computer Entertainment     0.00
## 8669     PSP 2008     Strategy                     Namco Bandai Games     0.00
## 8670      GC 2003       Sports                        Electronic Arts     0.12
## 8671      DS 2006    Adventure                                    THQ     0.14
## 8672    XOne 2013     Strategy                             Activision     0.11
## 8673     Wii 2010       Sports                                  Atari     0.15
## 8674     PS4 2014     Fighting                       Arc System Works     0.10
## 8675     Wii 2009         Misc                             Activision     0.14
## 8676      DS 2010         Misc                                    THQ     0.14
## 8677     3DS 2015 Role-Playing                                   Sega     0.03
## 8678      PC 2011       Racing                            Codemasters     0.00
## 8679     3DS 2012         Misc                               Nintendo     0.00
## 8680    X360 2012   Simulation           Konami Digital Entertainment     0.11
## 8681      DS 2010       Action                    Crave Entertainment     0.15
## 8682     Wii 2012       Action                                    THQ     0.12
## 8683     GBA 2001       Racing                                    THQ     0.11
## 8684      XB 2005      Shooter                 Microsoft Game Studios     0.12
## 8685      PS 1996       Racing                                Ubisoft     0.09
## 8686      DS 2005       Puzzle                                Ubisoft     0.10
## 8687      GC 2002       Sports                                   Sega     0.12
## 8688     PS2 2007     Fighting                         AQ Interactive     0.06
## 8689      XB 2004       Sports                        Electronic Arts     0.12
## 8690     PSP 2010       Sports           Konami Digital Entertainment     0.00
## 8691     PSP 2005      Shooter                                    THQ     0.14
## 8692     PS2 2003      Shooter                          Vivendi Games     0.08
## 8693    XOne 2014    Adventure                         Telltale Games     0.08
## 8694     PSP 2011 Role-Playing                            Square Enix     0.00
## 8695     Wii 2007       Puzzle                              505 Games     0.13
## 8696     Wii 2008         Misc                             Activision     0.14
## 8697     3DS 2012 Role-Playing                     Namco Bandai Games     0.00
## 8698      PS 1996       Action                      Eidos Interactive     0.09
## 8699      PC 2012       Action                           Nordic Games     0.03
## 8700     PS3 2010       Action                                    THQ     0.07
## 8701     PS3 2011         Misc                     Namco Bandai Games     0.00
## 8702      DS 2009       Action                             Activision     0.14
## 8703      DS 2009   Simulation                                Ubisoft     0.15
## 8704     PS2 2008         Misc                              MTV Games     0.08
## 8705     3DS 2011       Action                  Marvelous Interactive     0.00
## 8706      DS 2005       Action                             Activision     0.14
## 8707    X360 2010       Action                         Ubisoft Annecy     0.07
## 8708     PS3 2009     Strategy                             Ghostlight     0.09
## 8709     GBA 2002       Action                         TDK Mediactive     0.11
## 8710      DS 2007       Puzzle                White Park Bay Software     0.13
## 8711     PS4 2013     Platform                               System 3     0.06
## 8712      PS 2000       Racing                  Vatical Entertainment     0.09
## 8713      PS 1996       Action                        Electronic Arts     0.09
## 8714     Wii 2011       Sports                   Take-Two Interactive     0.05
## 8715      DS 2010       Action                                Ubisoft     0.14
## 8716     GBA 2002       Sports                             Activision     0.11
## 8717      PS 1999       Racing            Sony Computer Entertainment     0.09
## 8718      PS 1996         Misc            Sony Computer Entertainment     0.02
## 8719      PS 1997       Racing          BMG Interactive Entertainment     0.09
## 8720      DS 2007     Fighting                                   Sega     0.12
## 8721     Wii 2011   Simulation                    Crave Entertainment     0.15
## 8722     GBA 2003     Fighting                     Namco Bandai Games     0.11
## 8723      PS 1998       Racing                             Tecmo Koei     0.00
## 8724    X360 2005       Sports                        Electronic Arts     0.11
## 8725     PS2 2001       Racing                     BAM! Entertainment     0.08
## 8726      PC 2011      Shooter Warner Bros. Interactive Entertainment     0.04
## 8727    X360 2011     Platform                                    THQ     0.10
## 8728     PS2 2003      Shooter                                    THQ     0.08
## 8729      DS 2009       Racing                             Activision     0.13
## 8730     3DS 2011    Adventure                                Ubisoft     0.07
## 8731     PS3 2010       Action                      Rising Star Games     0.08
## 8732     PSP 2006       Puzzle           Konami Digital Entertainment     0.14
## 8733     PS2 2001         Misc                            Codemasters     0.08
## 8734      DS 2008       Puzzle                              Avanquest     0.14
## 8735    X360 2009       Action                             Activision     0.14
## 8736      DS 2008      Shooter                            Square Enix     0.12
## 8737      GC 2003       Racing                  Acclaim Entertainment     0.12
## 8738     PS2 2001       Racing                  Acclaim Entertainment     0.08
## 8739     PS3 2007       Sports                   Take-Two Interactive     0.14
## 8740      DS 2007 Role-Playing                     Namco Bandai Games     0.00
## 8741     PS2 2004 Role-Playing                             Tecmo Koei     0.08
## 8742      XB 2004     Platform                 Microsoft Game Studios     0.12
## 8743    X360 2009     Strategy                                   Sega     0.11
## 8744     PS3 2009       Sports                   Take-Two Interactive     0.13
## 8745     PSP 2006       Sports                        Electronic Arts     0.07
## 8746      GC 2005     Platform                                    THQ     0.12
## 8747      PC 2012    Adventure                               Daedalic     0.00
## 8748     3DS 2014   Simulation                                Natsume     0.12
## 8749      GC 2002       Sports                        Electronic Arts     0.12
## 8750      GC 2003       Sports                        Electronic Arts     0.12
## 8751      GC 2001       Racing                  Acclaim Entertainment     0.12
## 8752    XOne 2016       Sports                        Electronic Arts     0.13
## 8753      DS 2009       Puzzle                                    GSP     0.00
## 8754    X360 2014       Action           Konami Digital Entertainment     0.07
## 8755     PS2 2005 Role-Playing                                  Atari     0.08
## 8756    X360 2009       Racing                                    THQ     0.14
## 8757      PS 1999         Misc            Sony Computer Entertainment     0.09
## 8758    2600 1989       Puzzle                                  Atari     0.14
## 8759    2600 1982       Action                             Activision     0.14
## 8760     SAT 1996       Puzzle                                   Sega     0.00
## 8761     PSP 2012     Strategy                           Bandai Namco     0.00
## 8762     PSP 2006       Sports           Konami Digital Entertainment     0.00
## 8763     3DS 2011       Action                                Ubisoft     0.05
## 8764      XB 2004       Racing                 Zoo Digital Publishing     0.11
## 8765      DS 2010       Action             Disney Interactive Studios     0.12
## 8766     PS3 2014       Action                            Square Enix     0.05
## 8767      DS 2009   Simulation                       City Interactive     0.13
## 8768      XB 2005     Strategy                            Deep Silver     0.11
## 8769    XOne 2015       Action                     Bethesda Softworks     0.07
## 8770      XB 2002       Action                                  Atari     0.11
## 8771     GBA 2005         Misc                  Majesco Entertainment     0.11
## 8772     PSP 2009     Fighting                     Namco Bandai Games     0.14
## 8773      GC 2005     Platform                                    THQ     0.12
## 8774      PS 1998       Racing                         GT Interactive     0.09
## 8775     Wii 2007       Action                             Tecmo Koei     0.11
## 8776    X360 2006      Shooter                 Microsoft Game Studios     0.12
## 8777     PS2 2005       Racing           Konami Digital Entertainment     0.07
## 8778     PS2 2000       Sports            Sony Computer Entertainment     0.07
## 8779     PS2 2004         Misc                      Eidos Interactive     0.07
## 8780      DS 2007     Strategy                            Square Enix     0.08
## 8781     Wii 2009      Shooter                             Activision     0.14
## 8782      GC 2004      Shooter                            Global Star     0.12
## 8783     Wii 2008   Simulation                            Deep Silver     0.13
## 8784     PSP 2011    Adventure                        Kadokawa Shoten     0.00
## 8785      DS 2006     Platform                          Vivendi Games     0.13
## 8786     PS2 2009       Sports           Konami Digital Entertainment     0.00
## 8787     PS3 2007   Simulation                                Ubisoft     0.10
## 8788      DS 2009       Racing                 Zoo Digital Publishing     0.14
## 8789    X360 2010       Action                                    THQ     0.12
## 8790     SAT 1997     Strategy                                   Sega     0.00
## 8791     PS3 2013 Role-Playing                   Nippon Ichi Software     0.07
## 8792      GC 2003     Platform           Konami Digital Entertainment     0.12
## 8793      DS 2005       Action                                    THQ     0.13
## 8794      PC 2010       Action                                    THQ     0.07
## 8795     PS2 2009       Action                            D3Publisher     0.05
## 8796      DS 2009       Puzzle                              Mindscape     0.00
## 8797     Wii 2010       Sports                     Namco Bandai Games     0.14
## 8798     PS2 2008       Sports           Konami Digital Entertainment     0.05
## 8799     GBA 2005    Adventure                                    THQ     0.11
## 8800     3DS 2015         Misc                            Square Enix     0.00
## 8801      DS 2010       Sports                   Take-Two Interactive     0.14
## 8802     3DS 2012     Platform                     Namco Bandai Games     0.08
## 8803      PS 2000       Action                             Activision     0.08
## 8804     Wii 2010       Sports                            D3Publisher     0.14
## 8805     PS3 2011       Action                                   Sega     0.07
## 8806     PS3 2007       Action                   Take-Two Interactive     0.12
## 8807     Wii 2006      Shooter                 Ignition Entertainment     0.12
## 8808      DS 2010       Action                             Activision     0.11
## 8809     PSP 2012       Action           Konami Digital Entertainment     0.00
## 8810     SAT 1997     Fighting                                   Sega     0.00
## 8811    SNES 1996 Role-Playing                             SquareSoft     0.00
## 8812     PSV 2014       Action                     Namco Bandai Games     0.00
## 8813     GBA 2003       Action                                Ubisoft     0.11
## 8814     Wii 2008       Puzzle                  Majesco Entertainment     0.14
## 8815      GC 2003       Action                       Tomy Corporation     0.12
## 8816      XB 2003       Sports                                   Sega     0.11
## 8817      XB 2002      Shooter                   Take-Two Interactive     0.11
## 8818      PS 1997    Adventure            Sony Computer Entertainment     0.00
## 8819      GC 2005       Action                                 Capcom     0.12
## 8820     PSP 2005 Role-Playing            Sony Computer Entertainment     0.14
## 8821      DS 2010       Puzzle                               Astragon     0.09
## 8822     PS3 2007       Sports                        Electronic Arts     0.12
## 8823      PC 2011   Simulation                        Electronic Arts     0.05
## 8824    X360 2011       Action                      DTP Entertainment     0.08
## 8825      GC 2006     Platform                                   Sega     0.12
## 8826      DS 2011         Misc                                Unknown     0.14
## 8827      PS 2001       Sports                        Electronic Arts     0.08
## 8828      DS 2010         Misc                           Game Factory     0.14
## 8829      XB 2004     Fighting                                 Capcom     0.11
## 8830    X360 2007 Role-Playing                            Square Enix     0.13
## 8831     PSP 2007    Adventure                     Namco Bandai Games     0.00
## 8832      XB 2004      Shooter                                  Atari     0.11
## 8833     PS2 2005    Adventure                                  Atari     0.07
## 8834     PSV 2013 Role-Playing                                 GungHo     0.08
## 8835    SNES 1991       Sports                              Imagineer     0.00
## 8836     PS2 2001       Sports            Sony Computer Entertainment     0.07
## 8837    X360 2013      Shooter                            D3Publisher     0.06
## 8838     Wii 2007       Action                             Activision     0.13
## 8839     Wii 2007         Misc                                Xplosiv     0.14
## 8840     PS3 2012      Shooter                               EA Games     0.07
## 8841     PS2 2008     Fighting                 Ignition Entertainment     0.07
## 8842     PS3 2008       Sports            Sony Computer Entertainment     0.14
## 8843     PS2 2005 Role-Playing                                  Atari     0.07
## 8844     PS4 2015     Fighting                     Namco Bandai Games     0.00
## 8845      PC 2011       Action                                Unknown     0.00
## 8846     3DS 2013       Action           Konami Digital Entertainment     0.04
## 8847     PS3 2015       Action                     Namco Bandai Games     0.00
## 8848    XOne 2014         Misc             Disney Interactive Studios     0.11
## 8849     GBA 2004         Misc                  Majesco Entertainment     0.11
## 8850     PS2 2001       Racing                        Electronic Arts     0.07
## 8851     PSV 2014 Role-Playing                   Nippon Ichi Software     0.02
## 8852      GC 2002   Simulation                                  Titus     0.12
## 8853     SAT 1995       Sports                                   Sega     0.00
## 8854     PSP 2010       Action                             Activision     0.09
## 8855     PSV 2014 Role-Playing            Sony Computer Entertainment     0.00
## 8856     PSP 2011 Role-Playing            Sony Computer Entertainment     0.00
## 8857     3DS 2015   Simulation                Marvelous Entertainment     0.04
## 8858     GBA 2005       Action                                    THQ     0.11
## 8859     PS2 2008      Shooter                             Activision     0.07
## 8860     PS2 2008       Sports                        Electronic Arts     0.07
## 8861    XOne 2016     Platform                        Electronic Arts     0.08
## 8862     N64 2001       Sports                          Media Factory     0.00
## 8863     N64 2000     Platform                                  Epoch     0.00
## 8864     N64 1997    Adventure                   Take-Two Interactive     0.12
## 8865     N64 1997     Fighting                              Vic Tokai     0.12
## 8866     PSV 2015 Role-Playing               Nihon Falcom Corporation     0.00
## 8867      GC 2002       Sports                  Acclaim Entertainment     0.12
## 8868     Wii 2009       Action                              Destineer     0.14
## 8869      DS 2009   Simulation                                Ubisoft     0.14
## 8870      PS 1998       Action                             Activision     0.08
## 8871      XB 2002     Fighting                          Rage Software     0.11
## 8872      XB 2003       Racing                     Empire Interactive     0.11
## 8873     PSV 2016 Role-Playing                   Nippon Ichi Software     0.02
## 8874     Wii 2008    Adventure                     JoWood Productions     0.13
## 8875     Wii 2011       Sports                                   Sega     0.05
## 8876    SNES 1995       Puzzle                               Nintendo     0.00
## 8877     Wii 2008       Action                              Destineer     0.14
## 8878      XB 2004      Shooter                                    THQ     0.11
## 8879     Wii 2007       Racing                             Activision     0.13
## 8880     PS3 2007      Shooter                             Activision     0.12
## 8881      XB 2006       Action                                    THQ     0.11
## 8882     PS3 2009       Sports           Konami Digital Entertainment     0.00
## 8883     PS2 2001      Shooter                            Codemasters     0.07
## 8884      GC 2006       Action                             Activision     0.12
## 8885      DS 2005       Puzzle                              505 Games     0.14
## 8886     Wii 2007       Action                          Vivendi Games     0.12
## 8887    X360 2009         Misc                              MTV Games     0.14
## 8888      PS 1998     Strategy                              Mindscape     0.08
## 8889     GBA 2002       Sports                  Acclaim Entertainment     0.11
## 8890      XB 2004       Action                                    THQ     0.11
## 8891      PS 1999       Sports                             Tecmo Koei     0.00
## 8892     PS3 2013       Sports                   Take-Two Interactive     0.14
## 8893     Wii 2011       Racing                             Activision     0.10
## 8894     PS3 2015       Action           Konami Digital Entertainment     0.00
## 8895     PS2 2005       Racing                                Ubisoft     0.07
## 8896      GC 2006       Action                     Namco Bandai Games     0.11
## 8897     GBA 2004         Misc                  Majesco Entertainment     0.11
## 8898    X360 2008   Simulation                                Ubisoft     0.06
## 8899      GC 2005    Adventure                               Nintendo     0.11
## 8900     PS2 2006     Platform                                Unknown     0.00
## 8901      PS 1998     Fighting            Sony Computer Entertainment     0.08
## 8902     Wii 2009         Misc                        Electronic Arts     0.14
## 8903     GBA 2002     Fighting                                 Capcom     0.11
## 8904      DS 2008 Role-Playing                            D3Publisher     0.13
## 8905     SAT 1997      Shooter                     Namco Bandai Games     0.00
## 8906      DS 2004       Racing                     Namco Bandai Games     0.14
## 8907     PS4 2014       Action                             Tecmo Koei     0.04
## 8908     Wii 2008    Adventure                                   Sega     0.14
## 8909     GEN 1993     Fighting                                 Capcom     0.00
## 8910     PS3 2011       Action           Konami Digital Entertainment     0.00
## 8911     PS2 2006     Fighting                     Namco Bandai Games     0.00
## 8912      PS 2000       Sports           Konami Digital Entertainment     0.00
## 8913      DS 2005       Puzzle                              505 Games     0.14
## 8914      DS 2006       Sports           Konami Digital Entertainment     0.00
## 8915     Wii 2008       Puzzle                           Game Factory     0.13
## 8916     Wii 2008       Sports                                    THQ     0.14
## 8917      DC 2001    Adventure                                   Sega     0.00
## 8918     PS2 2008       Sports                     Bethesda Softworks     0.07
## 8919      XB 2005         Misc                                 Capcom     0.11
## 8920     PS2 2003      Shooter                                Play It     0.07
## 8921      GC 2005       Action                          Vivendi Games     0.11
## 8922      GC 2005       Action                                Ubisoft     0.11
## 8923     PSP 2011    Adventure                              Banpresto     0.00
## 8924     Wii 2009       Sports                   Take-Two Interactive     0.14
## 8925      XB 2005     Platform                     Namco Bandai Games     0.11
## 8926     PSV 2014    Adventure                         Telltale Games     0.10
## 8927     PSP 2009   Simulation                      Rising Star Games     0.07
## 8928      XB 2003 Role-Playing                                   Sega     0.11
## 8929      PC 2012       Racing                            Codemasters     0.01
## 8930      GC 2002       Sports                                Unknown     0.09
## 8931      DS 2007         Misc                                Ubisoft     0.13
## 8932    X360 2011       Action                       Black Bean Games     0.08
## 8933     PSP 2008         Misc                 Ignition Entertainment     0.13
## 8934     PSP 2004     Fighting                                 Capcom     0.13
## 8935    X360 2009       Sports                   Take-Two Interactive     0.11
## 8936      GC 2005       Action                        Electronic Arts     0.11
## 8937      PS 2001       Racing                             Activision     0.08
## 8938     PS4 2014       Action                                   Sega     0.00
## 8939     PSV 2011       Racing                            Codemasters     0.03
## 8940      PS 2000     Platform                                Ubisoft     0.08
## 8941      PS 1997     Strategy                     Namco Bandai Games     0.00
## 8942      PS 1999    Adventure                    Crave Entertainment     0.08
## 8943      XB 2004     Platform                          Vivendi Games     0.11
## 8944     PS2 2000   Simulation           Konami Digital Entertainment     0.00
## 8945      DS 2005       Action           Konami Digital Entertainment     0.15
## 8946     PSV 2014    Adventure                           Idea Factory     0.09
## 8947     3DS 2013       Action                        Nippon Columbia     0.00
## 8948    XOne 2016 Role-Playing                            Square Enix     0.08
## 8949      XB 2006       Sports                        Electronic Arts     0.11
## 8950      DS 2009 Role-Playing                     Namco Bandai Games     0.00
## 8951     GBA 2004       Sports           Konami Digital Entertainment     0.00
## 8952     3DS 2012     Platform                                Ubisoft     0.06
## 8953    X360 2011       Action                                   Sega     0.09
## 8954     GBA 2003      Shooter                        Electronic Arts     0.11
## 8955    X360 2012 Role-Playing                            Deep Silver     0.05
## 8956      PS 1996    Adventure                       Crystal Dynamics     0.08
## 8957      DS 2007      Shooter                          Vivendi Games     0.13
## 8958      XB 2005         Misc                                   Sega     0.11
## 8959      PS 1999 Role-Playing                                  Atlus     0.00
## 8960      DS 2008     Platform                              505 Games     0.00
## 8961      PC 2014      Shooter                                   Sega     0.00
## 8962     PS3 2010       Sports            Sony Computer Entertainment     0.13
## 8963      DS 2011         Misc                     Namco Bandai Games     0.00
## 8964     3DS 2011         Misc                     Namco Bandai Games     0.09
## 8965     Wii 2010       Sports                       Black Bean Games     0.12
## 8966      DS 2010       Sports                                  Atari     0.14
## 8967      PS 1997       Racing            Sony Computer Entertainment     0.08
## 8968     GBA 2005         Misc                          Vivendi Games     0.10
## 8969      GC 2003      Shooter                                Ubisoft     0.11
## 8970      PS 2001   Simulation           Konami Digital Entertainment     0.08
## 8971    X360 2010       Action                             Activision     0.11
## 8972      XB 2001       Racing                      Eidos Interactive     0.11
## 8973      DS 2010         Misc                             Activision     0.14
## 8974     PSP 2013 Role-Playing                     Namco Bandai Games     0.00
## 8975     PS2 2001       Racing            Sony Computer Entertainment     0.07
## 8976     PSP 2011 Role-Playing                                Unknown     0.00
## 8977      DS 2008         Misc                        Electronic Arts     0.13
## 8978     PS2 2002       Sports                  Acclaim Entertainment     0.07
## 8979      DS 2009       Puzzle                  The Adventure Company     0.07
## 8980      DS 2004       Sports                        Electronic Arts     0.13
## 8981     SAT 1995     Fighting                     Namco Bandai Games     0.00
## 8982     GBA 2005         Misc                                   Sega     0.10
## 8983     GBA 2003 Role-Playing           Konami Digital Entertainment     0.10
## 8984    X360 2007       Racing                                    THQ     0.13
## 8985     Wii 2010     Strategy                     Namco Bandai Games     0.00
## 8986      DS 2010         Misc                                    THQ     0.14
## 8987      XB 2004     Fighting                 Zoo Digital Publishing     0.11
## 8988      PS 1995 Role-Playing            Sony Computer Entertainment     0.00
## 8989     PSV 2013       Action                             Tecmo Koei     0.04
## 8990      DS 2013       Action                             Activision     0.00
## 8991     GBA 2004       Action                    Crave Entertainment     0.10
## 8992      DS 2008      Shooter                 Ignition Entertainment     0.13
## 8993      GC 2002       Sports                           Midway Games     0.11
## 8994      DS 2007 Role-Playing                     Namco Bandai Games     0.00
## 8995      XB 2003       Action                 Microsoft Game Studios     0.11
## 8996     PSP 2010 Role-Playing                     Falcom Corporation     0.09
## 8997     PS2 2005 Role-Playing                             Ghostlight     0.07
## 8998     PSP 2006     Platform                                 Capcom     0.12
## 8999     PS2 2007    Adventure                                Ubisoft     0.07
## 9000     PS2 2002     Fighting                                  Titus     0.07
## 9001      DS 2006         Misc                     Namco Bandai Games     0.02
## 9002     PSV 2014       Action                             Tecmo Koei     0.03
## 9003     GBA 2002       Sports           Konami Digital Entertainment     0.00
## 9004      XB 2005       Racing                           Midway Games     0.11
## 9005     GEN 1994 Role-Playing                              Game Arts     0.00
## 9006      DS 2009     Platform Warner Bros. Interactive Entertainment     0.13
## 9007      PS 2001       Puzzle                     Empire Interactive     0.08
## 9008     3DS 2014       Sports                        Kadokawa Shoten     0.00
## 9009     3DS 2013       Action                            D3Publisher     0.10
## 9010     PSV 2014 Role-Playing                   Nippon Ichi Software     0.07
## 9011      PS 1997       Sports                Gremlin Interactive Ltd     0.08
## 9012     PS2 2009      Shooter                             Activision     0.07
## 9013     PS2 2007       Action             Disney Interactive Studios     0.07
## 9014      GB 2000    Adventure                          Media Factory     0.00
## 9015     SCD 1994     Strategy                                   Sega     0.00
## 9016     GBA 2003     Platform                                Ubisoft     0.10
## 9017     PS2 2001       Action                                Wanadoo     0.07
## 9018      PS 1998       Action            Sony Computer Entertainment     0.08
## 9019     Wii 2011       Action                                    THQ     0.08
## 9020      DS 2010   Simulation                                Nobilis     0.13
## 9021      DS 2009       Puzzle                              Zoo Games     0.13
## 9022    X360 2010       Racing           Konami Digital Entertainment     0.12
## 9023      DS 2009    Adventure                               Nintendo     0.00
## 9024     PS2 2005 Role-Playing                              505 Games     0.07
## 9025     Wii 2010       Action                                  Atari     0.13
## 9026      GC 2007       Action                                    THQ     0.11
## 9027     PS2 2009       Action                        Electronic Arts     0.11
## 9028     PS2 2001     Platform                         TDK Mediactive     0.07
## 9029      DS 2008 Role-Playing                     Namco Bandai Games     0.00
## 9030     PS3 2011       Action                             Tecmo Koei     0.00
## 9031     Wii 2008         Misc                        SouthPeak Games     0.10
## 9032      PS 1997       Racing                              Psygnosis     0.08
## 9033    XOne 2015       Action                     Bethesda Softworks     0.08
## 9034     GBA 2001     Platform                             Infogrames     0.10
## 9035     PSP 2009       Action                        Electronic Arts     0.11
## 9036      PC 2010 Role-Playing                        Electronic Arts     0.00
## 9037      DS 2009       Puzzle                        UFO Interactive     0.13
## 9038     PSV 2015       Action             Disney Interactive Studios     0.00
## 9039      PS 1996     Fighting                  Acclaim Entertainment     0.08
## 9040      DS 2006       Racing                                Ubisoft     0.09
## 9041     Wii 2006         Misc               System 3 Arcade Software     0.13
## 9042     PS2 2004    Adventure                            Codemasters     0.07
## 9043      DS 2011       Action                             Activision     0.12
## 9044     PS2 2006    Adventure                                    THQ     0.07
## 9045     PS2 2004 Role-Playing                             Tecmo Koei     0.07
## 9046    X360 2006       Action                      Eidos Interactive     0.10
## 9047      PC 2009      Shooter                              505 Games     0.00
## 9048      PS 2001       Racing                                    THQ     0.08
## 9049     PSP 2011       Action                                  Spike     0.00
## 9050      DS 2010       Action Warner Bros. Interactive Entertainment     0.11
## 9051      GC 2002   Simulation                               Nintendo     0.00
## 9052     GBA 2005         Misc                             Activision     0.10
## 9053      GB 2001 Role-Playing                       Enix Corporation     0.00
## 9054     PS2 2003       Puzzle                              Mindscape     0.07
## 9055     Wii 2008       Action                                    THQ     0.13
## 9056      PC 2000     Strategy                                Ubisoft     0.02
## 9057     PSP 2008       Racing                                Xplosiv     0.05
## 9058      PS 2002       Action                     Namco Bandai Games     0.00
## 9059      PS 1997     Strategy                             SquareSoft     0.00
## 9060     PSP 2006         Misc                              505 Games     0.13
## 9061      GC 2004       Sports                        Electronic Arts     0.11
## 9062     3DS 2011     Platform                   Nippon Ichi Software     0.09
## 9063      PC 2007      Shooter                        Electronic Arts     0.00
## 9064      DS 2008       Sports                       Arc System Works     0.13
## 9065     Wii 2007     Fighting                                Ubisoft     0.07
## 9066     PS3 2010 Role-Playing                          Compile Heart     0.09
## 9067     PS3 2011       Racing                       Black Bean Games     0.01
## 9068      DC 1998     Fighting                      Eidos Interactive     0.00
## 9069     PS2 2001       Sports                                    3DO     0.07
## 9070      DS 2008 Role-Playing                      Eidos Interactive     0.12
## 9071     PSP 2011    Adventure                               Broccoli     0.00
## 9072     3DS 2012       Action                Marvelous Entertainment     0.00
## 9073     PS2 2004         Misc                            Codemasters     0.07
## 9074      DS 2009   Simulation                  Majesco Entertainment     0.13
## 9075     PSP 2010 Role-Playing                     Namco Bandai Games     0.00
## 9076      XB 2003       Action                                  Atari     0.11
## 9077      PC 2003 Role-Playing                              LucasArts     0.01
## 9078      XB 2005       Sports                        Electronic Arts     0.11
## 9079      XB 2002       Sports                                   Sega     0.11
## 9080     PSP 2008 Role-Playing                                Acquire     0.06
## 9081      DS 2010       Action                            D3Publisher     0.10
## 9082      XB 2002     Fighting                                Unknown     0.09
## 9083     PSP 2004 Role-Playing                     Namco Bandai Games     0.03
## 9084     Wii 2007         Misc                                Ubisoft     0.13
## 9085      DS 2008 Role-Playing                                 GungHo     0.13
## 9086     GBA 2001      Shooter                             Activision     0.10
## 9087     PS3 2014       Action                     Namco Bandai Games     0.00
## 9088     PS3 2010 Role-Playing                         Ubisoft Annecy     0.06
## 9089      PS 2001       Action                  Acclaim Entertainment     0.08
## 9090     PS2 2001         Misc            Sony Computer Entertainment     0.07
##      EU_Sales JP_Sales Other_Sales Global_Sales
## 1       29.02     3.77        8.46        82.74
## 2        3.58     6.81        0.77        40.24
## 3       12.88     3.79        3.31        35.82
## 4       11.01     3.28        2.96        33.00
## 5        8.89    10.22        1.00        31.37
## 6        2.26     4.22        0.58        30.26
## 7        9.23     6.50        2.90        30.01
## 8        9.20     2.93        2.85        29.02
## 9        7.06     4.70        2.26        28.62
## 10       0.63     0.28        0.47        28.31
## 11      11.00     1.93        2.75        24.76
## 12       7.57     4.13        1.92        23.42
## 13       6.18     7.20        0.71        23.10
## 14       8.03     3.60        2.15        22.72
## 15       8.59     2.53        1.79        22.00
## 16       4.94     0.24        1.67        21.82
## 17       9.27     0.97        4.14        21.40
## 18       0.40     0.41       10.57        20.81
## 19       3.75     3.54        0.55        20.61
## 20       9.26     4.16        2.05        20.22
## 21       4.52     6.04        1.37        18.36
## 22       2.71     4.18        0.42        18.14
## 23       3.44     3.84        0.46        17.28
## 24       5.31     0.06        1.38        16.38
## 25       5.49     0.47        1.78        16.15
## 26       3.90     5.38        0.50        15.85
## 27       3.28     5.65        0.82        15.32
## 28       5.36     5.32        1.18        15.30
## 29       5.09     1.87        1.16        14.98
## 30       4.28     0.13        1.32        14.76
## 31       5.04     3.12        0.59        14.64
## 32       3.73     0.11        1.13        14.64
## 33       4.05     4.34        0.79        14.35
## 34       5.81     0.35        2.31        14.24
## 35       5.88     0.65        2.52        14.03
## 36       4.30     0.07        1.12        13.73
## 37       3.63     0.08        1.29        13.51
## 38       5.82     0.49        1.62        13.46
## 39       4.51     0.30        1.30        13.10
## 40       2.61     2.66        1.02        13.04
## 41       4.44     0.48        1.83        12.73
## 42       3.52     5.33        0.88        12.27
## 43       3.91     2.67        0.89        12.21
## 44       2.83     0.13        1.21        12.14
## 45       5.81     0.36        2.02        11.98
## 46       2.77     3.96        0.77        11.90
## 47       2.85     1.91        0.23        11.89
## 48       0.01     1.10        7.53        11.66
## 49       3.40     1.20        0.76        11.52
## 50       3.37     3.08        0.65        11.33
## 51       2.04     2.69        0.29        11.18
## 52       3.10     0.14        1.03        11.02
## 53       3.87     2.54        0.52        10.95
## 54       2.99     2.13        0.78        10.79
## 55       4.88     0.81        2.12        10.77
## 56       3.69     0.38        1.63        10.69
## 57       3.76     0.44        1.62        10.57
## 58       2.15     2.12        0.29        10.55
## 59       2.65     3.15        0.35        10.49
## 60       3.11     1.25        0.98        10.42
## 61       3.15     0.00        1.07        10.26
## 62       2.63     0.04        0.82        10.21
## 63       1.98     0.08        0.78         9.88
## 64       1.94     2.23        0.15         9.87
## 65       3.07     2.47        0.63         9.82
## 66       2.36     0.04        0.73         9.76
## 67       2.47     3.28        0.96         9.72
## 68       3.73     0.38        1.38         9.59
## 69       2.89     0.01        0.78         9.52
## 70       3.42     1.69        0.50         9.49
## 71       2.38     0.13        0.90         9.32
## 72       1.71     3.00        0.23         9.30
## 73       2.83     0.02        0.77         9.20
## 74       2.32     4.36        0.41         9.09
## 75       1.88     1.98        0.70         9.02
## 76       2.86     0.10        0.85         8.84
## 77       1.24     3.81        0.18         8.76
## 78       6.06     0.06        1.26         8.49
## 79       3.53     2.49        0.68         8.49
## 80       1.53     0.05        0.08         8.49
## 81       2.30     1.58        0.73         8.42
## 82       1.86     3.14        0.43         8.33
## 83       5.05     0.13        2.01         8.24
## 84       6.42     0.00        0.71         8.11
## 85       2.01     0.13        0.15         8.09
## 86       3.90     0.66        0.91         8.06
## 87       2.07     2.73        0.33         8.05
## 88       1.72     3.63        0.23         7.86
## 89       1.78     2.69        0.55         7.84
## 90       0.45     0.00        0.08         7.81
## 91       2.83     0.24        1.75         7.72
## 92       2.42     0.98        0.64         7.69
## 93       3.29     0.22        1.23         7.67
## 94       3.30     0.14        1.37         7.60
## 95       1.89     1.45        0.16         7.60
## 96       2.17     1.31        0.31         7.58
## 97       1.18     0.70        0.19         7.46
## 98       1.35     2.42        0.43         7.45
## 99       1.90     0.00        0.69         7.37
## 100      2.13     0.06        0.69         7.34
## 101      2.19     0.60        0.70         7.31
## 102      2.09     0.01        0.67         7.30
## 103      3.03     0.00        0.73         7.27
## 104      2.93     0.35        1.10         7.23
## 105      2.83     0.08        1.02         7.20
## 106      2.22     1.40        0.29         7.16
## 107      1.75     1.42        0.28         7.13
## 108      1.04     1.39        0.22         7.07
## 109      2.07     1.27        0.49         6.96
## 110      3.15     0.24        1.10         6.96
## 111      1.77     0.87        0.19         6.95
## 112      2.21     0.00        0.56         6.91
## 113      4.32     0.07        1.73         6.90
## 114      3.02     0.08        1.09         6.90
## 115      2.75     0.17        0.99         6.83
## 116      2.80     0.19        1.06         6.83
## 117      2.35     0.94        0.30         6.82
## 118      2.64     0.00        0.67         6.81
## 119      1.92     0.06        0.64         6.76
## 120      2.25     0.21        1.00         6.73
## 121      2.30     0.28        1.04         6.72
## 122      4.32     0.11        1.42         6.69
## 123      2.78     1.60        0.62         6.67
## 124      2.61     0.17        1.03         6.60
## 125      4.29     0.05        1.47         6.59
## 126      1.84     1.03        0.47         6.59
## 127      2.71     0.25        1.05         6.56
## 128      0.93     1.69        0.14         6.51
## 129      2.56     0.16        1.14         6.50
## 130      1.30     0.08        0.07         6.43
## 131      1.58     2.06        0.21         6.41
## 132      1.20     1.49        0.07         6.40
## 133      1.56     1.29        0.99         6.39
## 134      1.35     0.06        0.61         6.36
## 135      1.97     0.09        0.57         6.34
## 136      1.26     0.87        0.17         6.31
## 137      0.83     2.87        0.12         6.30
## 138      6.21     0.00        0.00         6.28
## 139      2.80     0.02        0.33         6.27
## 140      1.78     0.03        0.51         6.24
## 141      1.62     0.07        0.49         6.24
## 142      1.90     0.07        0.60         6.11
## 143      2.01     0.87        0.72         6.05
## 144      1.20     0.16        0.19         6.03
## 145      1.74     0.83        0.83         6.03
## 146      1.83     0.78        0.24         6.03
## 147      2.28     0.28        1.01         5.99
## 148      0.00     2.33        1.74         5.95
## 149      2.05     0.17        0.90         5.92
## 150      0.69     4.35        0.15         5.84
## 151      1.63     0.00        0.53         5.83
## 152      1.47     2.02        0.45         5.82
## 153      1.89     1.36        0.23         5.74
## 154      1.94     0.07        0.58         5.72
## 155      2.05     0.16        0.96         5.65
## 156      0.69     1.81        0.11         5.58
## 157      1.95     0.21        0.87         5.57
## 158      0.60     1.97        0.04         5.55
## 159      1.65     0.07        0.55         5.55
## 160      1.91     0.11        0.80         5.53
## 161      1.92     0.10        0.51         5.51
## 162      0.57     4.13        0.34         5.50
## 163      1.24     0.91        0.20         5.49
## 164      1.64     0.99        0.23         5.47
## 165      1.11     0.95        0.20         5.46
## 166      1.24     0.94        0.09         5.45
## 167      1.87     0.00        0.84         5.43
## 168      2.29     0.24        0.82         5.42
## 169      2.51     0.00        0.94         5.42
## 170      1.24     1.87        0.52         5.36
## 171      0.96     2.00        0.20         5.34
## 172      1.12     1.01        0.16         5.31
## 173      1.71     0.03        0.44         5.30
## 174      0.77     2.78        0.14         5.30
## 175      1.08     2.11        0.17         5.29
## 176      0.79     1.09        0.06         5.27
## 177      1.56     0.08        0.51         5.27
## 178      2.48     1.03        0.52         5.26
## 179      2.46     0.20        0.28         5.24
## 180      0.26     0.01        0.71         5.23
## 181      0.75     3.61        0.20         5.21
## 182      2.15     0.00        0.62         5.20
## 183      1.25     0.83        0.20         5.20
## 184      1.30     1.27        0.31         5.19
## 185      0.98     1.57        0.15         5.19
## 186      3.48     0.03        0.58         5.18
## 187      1.83     0.95        0.49         5.17
## 188      0.74     2.20        0.11         5.15
## 189      2.02     1.89        0.28         5.15
## 190      2.48     0.44        0.58         5.14
## 191      2.23     0.13        0.80         5.13
## 192      0.61     1.70        0.11         5.13
## 193      1.11     0.05        0.38         5.13
## 194      1.53     0.01        0.38         5.13
## 195      1.69     0.00        0.20         5.12
## 196      0.63     0.00        0.68         5.12
## 197      1.43     1.08        0.65         5.11
## 198      2.01     0.00        0.41         5.08
## 199      2.02     0.16        1.21         5.08
## 200      3.29     0.06        1.13         5.08
## 201      1.30     0.15        0.22         5.07
## 202      1.16     1.11        0.73         5.05
## 203      1.38     0.02        0.20         5.02
## 204      1.06     0.80        0.57         5.02
## 205      1.89     0.00        0.33         5.01
## 206      1.36     0.07        0.21         5.00
## 207      1.18     0.29        0.46         5.00
## 208      0.01     0.01        1.48         4.98
## 209      1.03     0.09        0.44         4.96
## 210      1.20     1.54        0.37         4.96
## 211      1.73     0.12        0.78         4.94
## 212      0.26     0.01        0.66         4.91
## 213      1.54     0.00        0.46         4.90
## 214      0.99     0.89        0.10         4.88
## 215      0.00     4.87        0.00         4.87
## 216      0.60     1.52        0.10         4.85
## 217      1.36     0.12        0.63         4.84
## 218      1.68     0.00        0.59         4.83
## 219      2.00     0.09        0.83         4.83
## 220      3.14     0.04        1.07         4.82
## 221      1.57     0.44        0.21         4.79
## 222      3.75     0.06        0.69         4.77
## 223      1.31     0.04        0.41         4.76
## 224      2.10     0.02        0.25         4.73
## 225      2.19     0.00        0.79         4.70
## 226      1.41     0.02        0.20         4.68
## 227      1.12     1.32        0.37         4.68
## 228      1.95     0.08        0.70         4.67
## 229      2.04     0.06        0.47         4.64
## 230      1.97     0.13        0.24         4.63
## 231      1.12     0.00        0.44         4.62
## 232      0.91     1.15        0.13         4.61
## 233      0.99     0.89        0.13         4.60
## 234      1.99     0.22        0.48         4.58
## 235      1.39     1.10        0.30         4.58
## 236      1.15     1.44        0.43         4.57
## 237      1.87     0.07        0.82         4.55
## 238      0.92     0.01        0.42         4.53
## 239      0.26     0.01        0.08         4.53
## 240      0.24     0.00        0.05         4.50
## 241      0.24     0.01        0.61         4.49
## 242      1.51     0.03        0.23         4.48
## 243      0.14     4.10        0.02         4.47
## 244      1.69     0.08        0.74         4.47
## 245      1.94     0.19        0.77         4.45
## 246      1.29     0.02        0.43         4.45
## 247      1.11     0.46        0.33         4.44
## 248      1.35     0.01        0.39         4.42
## 249      1.29     0.01        0.46         4.41
## 250      2.39     1.05        0.86         4.39
## 251      1.05     0.13        0.40         4.39
## 252      0.50     1.61        0.08         4.38
## 253      1.79     0.08        0.47         4.37
## 254      1.73     0.14        0.75         4.35
## 255      0.91     0.26        0.13         4.34
## 256      0.58     1.38        0.17         4.33
## 257      2.93     0.01        0.46         4.31
## 258      1.18     0.00        0.37         4.31
## 259      0.26     0.00        0.05         4.31
## 260      1.27     0.11        0.41         4.31
## 261      1.20     0.03        0.39         4.26
## 262      1.11     0.72        0.30         4.25
## 263      1.34     0.07        0.61         4.25
## 264      2.02     0.10        0.72         4.24
## 265      1.11     0.05        0.07         4.24
## 266      0.00     0.83        1.93         4.23
## 267      1.02     0.00        0.75         4.22
## 268      2.27     0.00        0.23         4.21
## 269      1.27     0.62        0.30         4.21
## 270      2.55     0.04        0.84         4.21
## 271      2.30     0.20        0.83         4.20
## 272      2.07     0.18        0.65         4.20
## 273      1.83     0.57        0.53         4.20
## 274      1.47     0.04        0.43         4.19
## 275      1.06     0.58        0.53         4.19
## 276      2.79     0.02        0.53         4.19
## 277      0.44     0.31        0.04         4.17
## 278      0.48     1.57        0.07         4.16
## 279      0.27     0.00        0.11         4.16
## 280      0.21     0.01        0.56         4.14
## 281      1.86     0.11        0.77         4.14
## 282      0.00     0.09        0.00         4.12
## 283      0.61     1.76        0.09         4.12
## 284      2.48     0.03        0.89         4.11
## 285      1.20     0.37        0.40         4.10
## 286      0.51     2.10        0.07         4.10
## 287      1.50     0.05        0.42         4.10
## 288      1.26     0.01        0.37         4.09
## 289      1.52     0.00        0.00         4.09
## 290      1.06     0.04        0.33         4.08
## 291      0.04     0.04        1.67         4.07
## 292      1.28     0.03        0.41         4.06
## 293      2.26     0.90        0.77         4.06
## 294      1.55     0.16        0.06         4.05
## 295      1.51     0.51        0.35         4.05
## 296      2.12     0.10        0.69         4.03
## 297      0.58     0.64        0.04         4.03
## 298      1.87     0.12        0.65         4.02
## 299      0.28     2.46        0.04         4.01
## 300      1.20     0.07        0.59         4.01
## 301      1.78     0.92        0.37         4.00
## 302      0.89     0.05        0.37         3.99
## 303      1.35     0.00        0.54         3.98
## 304      1.36     0.06        0.40         3.92
## 305      1.96     0.08        0.70         3.92
## 306      0.76     1.07        0.11         3.91
## 307      1.17     0.01        0.42         3.90
## 308      1.71     0.13        0.73         3.89
## 309      0.49     2.62        0.11         3.89
## 310      1.61     0.06        0.67         3.88
## 311      2.09     0.00        0.64         3.88
## 312      1.94     0.31        0.70         3.87
## 313      0.00     3.77        0.00         3.87
## 314      1.14     0.10        0.51         3.87
## 315      0.65     0.03        0.69         3.85
## 316      1.89     1.12        0.68         3.85
## 317      1.57     1.05        0.35         3.84
## 318      1.44     0.22        0.06         3.84
## 319      0.96     0.54        0.13         3.83
## 320      0.48     0.81        0.27         3.83
## 321      1.93     0.41        0.43         3.82
## 322      1.37     0.73        0.27         3.81
## 323      1.58     0.10        0.61         3.79
## 324      1.91     0.27        0.46         3.78
## 325      1.03     0.00        0.36         3.78
## 326      1.24     0.47        0.25         3.77
## 327      1.40     0.10        0.87         3.77
## 328      1.47     0.00        0.32         3.76
## 329      1.56     0.00        0.17         3.76
## 330      0.88     0.59        0.32         3.76
## 331      2.00     0.14        0.22         3.73
## 332      2.00     0.21        0.56         3.73
## 333      0.77     1.54        0.11         3.72
## 334      1.58     0.00        0.19         3.71
## 335      2.48     0.04        0.59         3.70
## 336      0.73     1.38        0.10         3.70
## 337      1.51     0.27        0.61         3.69
## 338      1.61     0.08        0.41         3.69
## 339      0.00     3.67        0.00         3.67
## 340      1.18     0.01        0.35         3.67
## 341      1.22     0.00        0.79         3.66
## 342      1.13     0.55        0.10         3.65
## 343      0.81     0.06        0.24         3.65
## 344      0.97     0.00        0.35         3.65
## 345      1.80     0.40        0.74         3.64
## 346      1.09     0.15        0.33         3.64
## 347      0.68     0.66        0.06         3.63
## 348      2.46     0.05        0.52         3.63
## 349      0.00     0.64        2.93         3.63
## 350      1.42     0.05        0.38         3.63
## 351      0.83     0.46        0.25         3.62
## 352      1.61     0.15        0.57         3.61
## 353      1.22     0.03        0.44         3.61
## 354      1.40     0.00        0.16         3.61
## 355      1.17     0.00        0.42         3.61
## 356      1.50     0.10        0.39         3.61
## 357      0.67     0.46        0.10         3.60
## 358      1.02     0.03        0.37         3.59
## 359      1.35     0.06        0.16         3.58
## 360      1.79     0.00        0.20         3.56
## 361      1.40     0.07        0.50         3.54
## 362      1.77     0.05        0.49         3.54
## 363      1.58     0.12        0.18         3.54
## 364      1.13     0.10        0.41         3.53
## 365      1.14     0.01        0.41         3.53
## 366      1.08     0.02        0.29         3.53
## 367      2.40     0.02        0.40         3.53
## 368      1.33     0.00        0.23         3.52
## 369      1.21     0.01        0.17         3.52
## 370      0.50     0.05        0.30         3.52
## 371      1.66     0.27        0.38         3.52
## 372      0.94     0.12        0.34         3.51
## 373      0.50     1.75        0.08         3.51
## 374      0.39     0.03        0.24         3.50
## 375      0.38     1.42        0.06         3.50
## 376      0.97     0.02        0.31         3.50
## 377      1.83     0.73        0.35         3.50
## 378      2.36     0.04        0.51         3.49
## 379      1.22     0.02        0.31         3.49
## 380      1.02     0.04        0.32         3.48
## 381      1.01     0.01        0.35         3.48
## 382      0.89     0.00        0.30         3.46
## 383      1.75     0.10        0.72         3.45
## 384      0.00     3.44        0.00         3.44
## 385      0.73     0.03        0.29         3.44
## 386      1.27     0.33        0.29         3.44
## 387      1.54     0.17        0.38         3.43
## 388      1.07     0.06        0.47         3.42
## 389      2.07     0.00        0.22         3.42
## 390      0.00     2.55        0.02         3.42
## 391      1.20     0.02        0.43         3.41
## 392      0.69     0.59        0.40         3.41
## 393      2.28     0.05        0.61         3.40
## 394      1.47     0.19        0.17         3.39
## 395      1.03     0.00        0.32         3.38
## 396      1.35     0.48        0.47         3.38
## 397      0.94     0.74        0.27         3.38
## 398      0.76     0.00        0.13         3.36
## 399      0.67     0.73        0.06         3.36
## 400      1.61     0.82        0.28         3.36
## 401      1.53     0.00        0.18         3.34
## 402      1.14     0.01        0.29         3.34
## 403      0.99     2.32        0.02         3.33
## 404      1.29     0.12        0.46         3.33
## 405      1.01     0.57        0.30         3.33
## 406      1.17     0.76        0.24         3.32
## 407      1.39     0.03        0.43         3.32
## 408      1.05     0.05        0.22         3.31
## 409      1.28     0.05        0.46         3.28
## 410      1.92     0.06        0.50         3.28
## 411      0.92     0.00        0.23         3.28
## 412      1.05     0.02        0.31         3.27
## 413      1.13     0.46        0.32         3.27
## 414      1.59     0.31        0.87         3.27
## 415      0.19     2.78        0.04         3.26
## 416      1.30     0.77        0.22         3.24
## 417      2.11     0.00        0.23         3.23
## 418      1.33     0.12        0.51         3.23
## 419      0.30     0.00        0.59         3.22
## 420      0.00     3.18        0.00         3.22
## 421      1.33     0.00        0.16         3.21
## 422      0.10     2.35        0.02         3.20
## 423      0.72     0.12        0.10         3.20
## 424      1.21     0.07        0.16         3.20
## 425      0.60     0.80        0.44         3.19
## 426      1.01     0.04        0.66         3.19
## 427      0.00     3.19        0.00         3.19
## 428      0.77     0.01        0.26         3.19
## 429      1.12     0.09        0.19         3.18
## 430      0.87     0.93        0.20         3.18
## 431      1.08     0.10        0.47         3.17
## 432      1.02     0.00        0.29         3.17
## 433      0.51     1.93        0.14         3.17
## 434      0.56     0.38        0.17         3.17
## 435      0.98     0.00        0.30         3.16
## 436      0.16     0.99        0.09         3.15
## 437      1.06     0.00        0.29         3.15
## 438      1.57     0.06        0.29         3.15
## 439      0.97     0.88        0.42         3.15
## 440      0.99     0.03        0.24         3.15
## 441      0.00     0.00        2.46         3.14
## 442      1.25     0.02        0.16         3.13
## 443      0.86     0.00        0.13         3.12
## 444      0.62     0.14        0.04         3.12
## 445      1.00     1.03        0.17         3.12
## 446      0.87     0.14        0.42         3.12
## 447      0.00     3.03        0.01         3.12
## 448      1.27     0.06        0.50         3.12
## 449      0.82     0.03        0.27         3.11
## 450      2.02     0.00        0.30         3.11
## 451      0.28     0.55        0.08         3.09
## 452      0.16     0.01        0.42         3.08
## 453      0.45     0.64        0.07         3.08
## 454      0.91     0.04        0.24         3.07
## 455      0.99     0.46        0.22         3.07
## 456      0.62     0.55        0.34         3.07
## 457      1.21     0.00        0.14         3.07
## 458      0.86     0.03        0.24         3.07
## 459      0.84     0.00        0.29         3.05
## 460      1.35     0.02        0.28         3.04
## 461      0.64     0.12        0.22         3.04
## 462      0.80     0.02        0.27         3.03
## 463      1.33     0.00        0.16         3.03
## 464      1.07     0.08        0.47         3.02
## 465      1.04     0.00        0.13         3.02
## 466      0.47     0.45        0.07         3.02
## 467      1.13     0.07        0.38         3.02
## 468      0.32     0.00        0.31         3.00
## 469      0.21     0.01        0.19         3.00
## 470      0.00     0.76        1.09         3.00
## 471      1.02     0.00        0.41         3.00
## 472      1.41     0.05        0.53         2.99
## 473      0.51     0.80        0.07         2.99
## 474      1.18     0.00        0.13         2.99
## 475      1.26     1.16        0.45         2.99
## 476      0.86     0.64        0.13         2.99
## 477      1.00     1.39        0.12         2.98
## 478      1.12     0.08        0.45         2.97
## 479      1.72     0.00        0.29         2.97
## 480      1.01     0.00        0.38         2.97
## 481      1.37     0.06        0.49         2.96
## 482      0.04     1.19        0.15         2.96
## 483      1.15     0.04        0.41         2.96
## 484      0.71     0.15        0.26         2.95
## 485      0.58     0.34        0.04         2.94
## 486      0.51     0.06        0.15         2.94
## 487      1.11     0.04        0.33         2.94
## 488      0.69     0.12        0.37         2.94
## 489      0.77     0.05        0.05         2.94
## 490      0.80     0.03        0.27         2.93
## 491      1.06     0.73        0.26         2.92
## 492      1.13     0.05        0.30         2.91
## 493      0.45     0.62        0.09         2.91
## 494      1.85     0.11        0.33         2.90
## 495      0.80     0.04        0.22         2.90
## 496      1.14     0.00        0.22         2.90
## 497      0.86     0.00        0.28         2.90
## 498      1.24     1.13        0.45         2.90
## 499      1.51     0.06        0.61         2.89
## 500      0.32     1.38        0.20         2.89
## 501      1.12     0.01        0.24         2.89
## 502      1.07     0.00        0.28         2.88
## 503      0.72     0.02        0.11         2.88
## 504      1.27     0.00        0.31         2.88
## 505      2.43     0.12        0.22         2.87
## 506      0.77     0.00        0.22         2.86
## 507      0.16     0.00        0.17         2.86
## 508      0.63     0.03        0.11         2.86
## 509      0.55     0.00        0.32         2.85
## 510      0.51     0.89        0.07         2.85
## 511      0.53     0.98        0.05         2.85
## 512      1.34     0.00        0.14         2.85
## 513      1.14     0.00        0.31         2.85
## 514      1.98     0.05        0.42         2.85
## 515      0.57     0.11        0.30         2.84
## 516      0.86     0.05        0.28         2.83
## 517      0.09     0.00        0.22         2.83
## 518      1.05     0.07        0.43         2.83
## 519      1.08     0.04        0.39         2.83
## 520      0.67     0.10        0.09         2.82
## 521      1.05     0.04        0.14         2.82
## 522      2.79     0.00        0.00         2.81
## 523      1.25     0.03        0.48         2.81
## 524      1.19     0.00        0.30         2.81
## 525      1.06     0.04        0.38         2.80
## 526      0.80     0.00        0.26         2.80
## 527      0.07     1.10        0.15         2.80
## 528      0.20     2.13        0.18         2.79
## 529      0.88     0.09        0.38         2.79
## 530      0.72     0.00        0.11         2.79
## 531      1.15     0.04        0.41         2.79
## 532      0.00     2.78        0.01         2.79
## 533      0.70     0.00        0.11         2.79
## 534      1.43     0.00        0.48         2.79
## 535      0.22     0.00        0.38         2.79
## 536      1.47     0.68        0.34         2.79
## 537      0.29     1.96        0.07         2.79
## 538      0.74     0.00        0.36         2.78
## 539      0.97     0.07        0.47         2.78
## 540      0.83     0.26        0.25         2.78
## 541      0.98     0.17        0.43         2.78
## 542      1.12     0.00        0.24         2.77
## 543      1.20     0.04        0.30         2.77
## 544      1.15     0.07        0.30         2.77
## 545      0.17     0.00        0.03         2.76
## 546      0.54     0.71        0.07         2.75
## 547      1.31     0.06        0.31         2.74
## 548      0.36     1.13        0.23         2.73
## 549      0.31     1.04        0.05         2.73
## 550      0.94     0.02        0.24         2.72
## 551      0.93     0.02        0.27         2.71
## 552      0.52     0.33        0.10         2.70
## 553      0.48     1.09        0.14         2.70
## 554      0.76     0.00        0.47         2.70
## 555      0.53     0.87        0.05         2.70
## 556      0.11     0.00        0.16         2.69
## 557      0.64     0.01        0.19         2.69
## 558      0.12     0.00        0.18         2.69
## 559      0.52     0.35        0.18         2.69
## 560      0.98     0.00        0.24         2.68
## 561      1.11     0.00        0.34         2.68
## 562      0.00     2.68        0.00         2.68
## 563      1.41     0.04        0.53         2.68
## 564      0.75     0.89        0.26         2.68
## 565      0.63     0.00        0.09         2.67
## 566      0.92     0.01        0.26         2.67
## 567      0.64     0.00        0.25         2.67
## 568      1.09     0.00        0.14         2.67
## 569      0.58     0.00        0.09         2.66
## 570      0.80     0.00        0.26         2.65
## 571      1.11     0.00        0.40         2.65
## 572      0.88     0.00        0.22         2.65
## 573      1.11     0.01        0.66         2.65
## 574      0.00     2.65        0.00         2.65
## 575      0.50     0.12        0.03         2.65
## 576      0.87     0.00        0.24         2.64
## 577      0.47     0.02        0.14         2.63
## 578      1.10     0.12        0.65         2.63
## 579      0.82     0.04        0.24         2.63
## 580      0.46     0.06        0.41         2.63
## 581      0.12     0.00        0.36         2.62
## 582      1.06     0.24        0.25         2.62
## 583      0.81     0.04        0.21         2.62
## 584      1.79     0.01        0.23         2.62
## 585      0.14     0.01        0.16         2.62
## 586      0.84     0.96        0.19         2.61
## 587      1.22     0.04        0.44         2.61
## 588      0.52     0.92        0.14         2.60
## 589      0.55     0.11        0.08         2.60
## 590      1.63     0.04        0.43         2.59
## 591      1.12     0.08        0.45         2.59
## 592      0.21     0.00        0.35         2.59
## 593      1.24     0.01        0.69         2.58
## 594      1.33     0.07        0.28         2.58
## 595      1.24     0.03        0.27         2.58
## 596      0.27     1.75        0.18         2.58
## 597      0.88     0.03        0.26         2.58
## 598      0.74     0.31        0.22         2.57
## 599      1.68     0.33        0.28         2.57
## 600      0.56     0.03        0.22         2.57
## 601      0.08     0.00        0.35         2.57
## 602      0.59     0.21        0.07         2.56
## 603      0.00     2.41        0.00         2.56
## 604      0.23     0.00        0.22         2.56
## 605      0.57     0.70        0.07         2.54
## 606      0.87     0.29        0.25         2.54
## 607      0.12     0.00        0.20         2.54
## 608      0.14     0.00        0.03         2.53
## 609      1.12     0.06        0.22         2.52
## 610      0.75     0.16        0.06         2.52
## 611      0.78     0.00        0.24         2.52
## 612      0.00     0.52        1.51         2.52
## 613      1.31     0.08        0.52         2.51
## 614      0.02     0.00        0.19         2.50
## 615      0.07     0.26        2.05         2.50
## 616      0.14     1.08        0.01         2.50
## 617      1.06     0.18        0.39         2.49
## 618      0.56     0.00        0.09         2.49
## 619      0.97     0.00        0.23         2.49
## 620      0.52     0.00        0.15         2.49
## 621      0.85     0.10        0.39         2.48
## 622      0.85     0.00        0.25         2.48
## 623      1.14     0.06        0.13         2.48
## 624      0.44     0.05        0.27         2.48
## 625      0.34     0.00        0.21         2.48
## 626      0.20     0.00        0.17         2.47
## 627      0.36     0.92        0.07         2.47
## 628      0.58     0.00        0.20         2.46
## 629      0.54     0.05        0.31         2.45
## 630      0.00     2.43        0.02         2.45
## 631      0.12     1.34        0.06         2.45
## 632      0.25     0.00        0.07         2.44
## 633      0.73     0.04        0.22         2.44
## 634      0.98     0.00        0.59         2.44
## 635      1.19     0.00        0.18         2.43
## 636      0.82     0.00        0.10         2.43
## 637      0.61     0.02        0.23         2.42
## 638      0.61     0.46        0.08         2.42
## 639      0.32     0.78        0.05         2.42
## 640      1.18     0.54        0.41         2.42
## 641      0.22     0.51        0.06         2.41
## 642      0.26     0.00        0.08         2.41
## 643      0.76     0.70        0.14         2.41
## 644      0.76     0.00        0.22         2.41
## 645      0.00     0.04        1.68         2.41
## 646      0.08     0.00        0.26         2.40
## 647      0.24     0.00        0.07         2.40
## 648      0.18     1.42        0.03         2.40
## 649      0.10     0.00        0.00         2.40
## 650      0.18     0.00        0.07         2.39
## 651      1.49     0.05        0.36         2.39
## 652      0.48     0.00        0.18         2.39
## 653      0.63     0.00        0.22         2.39
## 654      0.81     0.00        0.10         2.39
## 655      0.87     0.04        0.40         2.39
## 656      0.71     0.00        0.20         2.39
## 657      0.61     0.03        0.07         2.38
## 658      0.97     0.00        0.39         2.38
## 659      0.46     0.02        0.18         2.38
## 660      0.39     0.03        0.02         2.38
## 661      0.76     0.26        0.36         2.38
## 662      0.54     0.01        0.37         2.38
## 663      0.15     0.00        0.19         2.38
## 664      0.91     0.00        0.30         2.38
## 665      0.01     0.00        0.18         2.37
## 666      0.02     0.08        0.00         2.37
## 667      1.08     0.04        0.30         2.37
## 668      0.86     0.01        0.26         2.37
## 669      0.13     0.00        0.21         2.37
## 670      0.74     0.02        0.22         2.36
## 671      0.14     1.48        0.05         2.36
## 672      1.05     0.00        0.23         2.35
## 673      0.48     0.40        0.08         2.35
## 674      0.00     2.34        0.01         2.35
## 675      0.46     0.01        0.20         2.35
## 676      0.83     0.00        0.20         2.34
## 677      0.00     0.01        1.41         2.34
## 678      0.90     0.00        0.24         2.34
## 679      0.70     0.34        0.21         2.34
## 680      0.86     0.00        0.20         2.33
## 681      0.54     0.47        0.17         2.32
## 682      0.14     0.00        0.24         2.32
## 683      0.56     0.00        0.19         2.32
## 684      0.40     1.06        0.07         2.32
## 685      1.35     0.04        0.14         2.32
## 686      1.06     0.09        0.32         2.31
## 687      0.45     1.21        0.13         2.31
## 688      0.64     0.00        0.09         2.31
## 689      0.00     2.02        0.01         2.31
## 690      0.46     0.10        0.10         2.31
## 691      0.85     0.00        0.21         2.30
## 692      1.06     0.00        0.29         2.30
## 693      0.54     0.62        0.18         2.30
## 694      0.75     0.15        0.31         2.29
## 695      1.25     0.00        0.13         2.29
## 696      0.68     0.04        0.34         2.29
## 697      0.80     0.00        0.10         2.28
## 698      1.27     0.46        0.26         2.28
## 699      0.98     0.00        0.20         2.28
## 700      0.00     2.28        0.00         2.28
## 701      0.12     1.63        0.02         2.28
## 702      0.07     0.01        1.82         2.28
## 703      0.90     0.00        0.37         2.28
## 704      0.77     0.10        0.36         2.28
## 705      2.00     0.02        0.18         2.28
## 706      0.39     0.64        0.12         2.27
## 707      0.62     0.00        0.31         2.27
## 708      0.92     0.04        0.24         2.27
## 709      0.10     0.91        0.04         2.27
## 710      0.73     0.54        0.09         2.26
## 711      0.54     0.02        0.30         2.26
## 712      0.84     0.00        0.23         2.26
## 713      0.57     0.14        0.21         2.26
## 714      0.79     0.87        0.32         2.25
## 715      0.44     1.06        0.13         2.25
## 716      0.46     0.20        0.08         2.25
## 717      0.25     0.46        0.06         2.25
## 718      0.15     0.00        0.17         2.25
## 719      0.41     1.05        0.11         2.25
## 720      0.51     0.91        0.32         2.25
## 721      0.71     0.22        0.13         2.24
## 722      0.83     0.00        0.11         2.23
## 723      0.25     0.21        0.03         2.23
## 724      0.61     0.00        0.21         2.23
## 725      0.85     0.00        0.28         2.23
## 726      0.62     0.18        0.16         2.22
## 727      1.03     0.00        0.31         2.22
## 728      0.32     0.02        0.18         2.22
## 729      0.63     0.45        0.13         2.22
## 730      0.98     0.00        0.21         2.22
## 731      0.55     0.02        0.19         2.21
## 732      0.55     0.00        0.19         2.21
## 733      0.82     0.05        0.28         2.21
## 734      0.24     0.00        0.18         2.20
## 735      0.12     0.00        0.02         2.20
## 736      0.02     0.00        0.17         2.20
## 737      0.51     0.34        0.23         2.20
## 738      0.00     2.05        0.00         2.20
## 739      0.68     0.02        0.21         2.20
## 740      0.91     0.00        0.23         2.20
## 741      0.97     0.55        0.33         2.19
## 742      0.78     0.02        0.22         2.19
## 743      0.44     0.00        0.08         2.19
## 744      0.17     1.10        0.05         2.19
## 745      0.72     0.30        0.13         2.19
## 746      1.07     0.07        0.45         2.19
## 747      0.00     2.17        0.01         2.18
## 748      0.20     0.00        0.06         2.18
## 749      0.78     0.01        0.17         2.18
## 750      0.07     0.00        0.13         2.18
## 751      0.04     0.73        0.12         2.18
## 752      0.17     0.47        0.06         2.17
## 753      0.68     0.01        0.20         2.17
## 754      0.46     0.08        0.03         2.17
## 755      0.11     1.56        0.02         2.17
## 756      0.83     0.00        0.10         2.16
## 757      0.47     0.00        0.18         2.16
## 758      0.55     0.02        0.08         2.15
## 759      1.16     0.13        0.32         2.15
## 760      0.03     1.98        0.00         2.15
## 761      1.41     0.00        0.14         2.15
## 762      1.03     0.00        0.59         2.14
## 763      0.00     1.45        0.03         2.14
## 764      0.00     2.13        0.00         2.14
## 765      0.38     0.19        0.10         2.14
## 766      0.84     0.00        0.10         2.14
## 767      0.12     0.00        0.02         2.13
## 768      0.81     0.00        0.27         2.13
## 769      0.07     1.35        0.08         2.13
## 770      0.37     0.89        0.05         2.13
## 771      1.16     0.06        0.33         2.13
## 772      0.97     0.02        0.21         2.12
## 773      0.05     1.07        0.09         2.12
## 774      0.09     0.45        0.11         2.12
## 775      0.61     0.05        0.09         2.12
## 776      0.33     0.92        0.04         2.12
## 777      0.27     0.05        0.18         2.11
## 778      0.62     0.00        0.29         2.11
## 779      0.40     0.00        0.03         2.11
## 780      1.34     0.40        0.26         2.11
## 781      0.31     0.02        0.09         2.11
## 782      0.45     0.63        0.13         2.11
## 783      0.56     0.00        0.20         2.11
## 784      0.21     1.13        0.13         2.11
## 785      0.33     0.00        0.15         2.11
## 786      0.07     1.05        0.04         2.10
## 787      0.72     0.00        0.22         2.10
## 788      0.44     0.04        0.07         2.10
## 789      0.13     0.02        0.18         2.10
## 790      0.51     0.01        0.17         2.10
## 791      0.63     0.29        0.19         2.09
## 792      0.00     1.96        0.14         2.09
## 793      0.65     0.08        0.20         2.09
## 794      0.60     0.05        0.18         2.09
## 795      0.12     0.01        0.13         2.09
## 796      0.00     0.00        0.12         2.09
## 797      0.94     0.00        0.22         2.09
## 798      0.93     0.14        0.32         2.09
## 799      0.42     0.96        0.25         2.09
## 800      0.32     0.00        0.00         2.08
## 801      0.71     0.00        0.27         2.08
## 802      1.02     0.05        0.39         2.08
## 803      0.52     0.00        0.20         2.08
## 804      0.33     0.73        0.06         2.08
## 805      0.99     0.13        0.36         2.08
## 806      0.04     0.00        0.00         2.08
## 807      1.08     0.00        0.11         2.08
## 808      0.94     0.00        0.35         2.08
## 809      0.46     0.00        0.08         2.07
## 810      0.42     0.75        0.26         2.07
## 811      0.39     0.00        0.19         2.07
## 812      0.54     0.54        0.23         2.07
## 813      0.36     0.00        0.07         2.07
## 814      0.80     0.01        0.22         2.06
## 815      0.97     0.02        0.34         2.06
## 816      0.63     0.04        0.19         2.06
## 817      0.52     0.74        0.08         2.06
## 818      0.77     0.04        0.10         2.06
## 819      0.46     0.79        0.13         2.06
## 820      0.62     0.13        0.25         2.06
## 821      0.57     0.46        0.13         2.06
## 822      0.92     0.04        0.37         2.05
## 823      0.64     0.00        0.19         2.05
## 824      0.33     0.04        0.25         2.05
## 825      0.06     0.83        0.00         2.05
## 826      0.48     0.05        0.06         2.05
## 827      0.83     0.15        0.35         2.05
## 828      0.25     0.00        0.05         2.05
## 829      1.29     0.02        0.25         2.05
## 830      0.27     0.53        0.14         2.04
## 831      0.42     0.01        0.16         2.04
## 832      1.09     0.00        0.23         2.04
## 833      0.02     0.00        0.28         2.04
## 834      1.02     0.00        0.31         2.04
## 835      0.48     0.29        0.07         2.04
## 836      1.06     0.03        0.37         2.04
## 837      0.25     0.00        0.25         2.03
## 838      0.61     0.13        0.05         2.03
## 839      0.40     0.00        0.16         2.03
## 840      0.18     0.00        0.27         2.03
## 841      0.67     0.00        0.30         2.02
## 842      0.05     0.01        0.15         2.02
## 843      0.09     0.00        0.17         2.02
## 844      0.98     0.04        0.18         2.02
## 845      1.27     0.00        0.25         2.01
## 846      0.62     0.00        0.18         2.01
## 847      0.85     0.01        0.37         2.00
## 848      0.45     0.53        0.13         2.00
## 849      1.31     0.02        0.33         2.00
## 850      0.16     1.29        0.03         2.00
## 851      0.30     0.00        0.22         2.00
## 852      0.64     0.27        0.13         1.99
## 853      0.30     0.90        0.04         1.99
## 854      0.64     0.05        0.09         1.99
## 855      1.09     0.02        0.12         1.98
## 856      0.27     0.75        0.04         1.98
## 857      0.58     0.00        0.16         1.98
## 858      0.63     0.07        0.16         1.98
## 859      0.86     0.08        0.32         1.97
## 860      0.80     0.00        0.18         1.97
## 861      0.95     0.00        0.28         1.97
## 862      0.59     0.00        0.19         1.97
## 863      0.58     0.51        0.17         1.97
## 864      0.64     0.02        0.30         1.97
## 865      0.11     0.00        0.02         1.97
## 866      0.57     0.02        0.15         1.96
## 867      0.50     0.63        0.33         1.96
## 868      0.37     0.41        0.05         1.96
## 869      0.23     1.53        0.02         1.96
## 870      0.03     1.05        0.08         1.96
## 871      0.65     0.02        0.20         1.96
## 872      0.49     0.00        0.16         1.95
## 873      1.01     0.00        0.20         1.95
## 874      0.61     0.00        0.09         1.95
## 875      0.77     0.00        0.09         1.95
## 876      0.20     0.00        0.06         1.95
## 877      0.74     0.00        0.25         1.94
## 878      1.26     0.01        0.18         1.94
## 879      0.00     0.00        0.00         1.94
## 880      1.23     0.00        0.13         1.94
## 881      0.38     0.55        0.05         1.94
## 882      0.15     0.65        0.04         1.94
## 883      0.42     0.03        0.07         1.94
## 884      0.40     0.00        0.12         1.94
## 885      0.72     0.00        0.21         1.93
## 886      0.61     0.00        0.17         1.93
## 887      0.56     0.00        0.27         1.93
## 888      0.39     0.00        0.06         1.93
## 889      0.26     1.30        0.03         1.93
## 890      0.60     0.20        0.07         1.93
## 891      0.24     0.00        0.16         1.93
## 892      0.89     0.10        0.37         1.93
## 893      0.00     0.29        0.12         1.93
## 894      0.87     0.01        0.17         1.92
## 895      0.53     0.41        0.06         1.92
## 896      0.97     0.01        0.22         1.92
## 897      0.85     0.00        0.20         1.92
## 898      0.96     0.00        0.20         1.92
## 899      0.80     0.00        0.09         1.92
## 900      0.73     0.00        0.25         1.92
## 901      0.16     1.46        0.03         1.92
## 902      0.67     0.00        0.18         1.92
## 903      0.16     1.01        0.02         1.91
## 904      0.57     0.00        0.19         1.91
## 905      0.44     0.00        0.17         1.91
## 906      0.78     0.04        0.31         1.91
## 907      0.66     0.00        0.17         1.91
## 908      0.75     0.03        0.09         1.90
## 909      0.92     0.06        0.32         1.90
## 910      0.91     0.03        0.22         1.89
## 911      0.15     0.00        0.18         1.89
## 912      0.30     1.33        0.04         1.89
## 913      0.54     0.03        0.26         1.88
## 914      0.44     0.00        0.08         1.88
## 915      0.72     0.00        0.24         1.88
## 916      0.12     1.48        0.03         1.88
## 917      0.69     0.09        0.21         1.88
## 918      0.36     0.03        0.07         1.88
## 919      0.08     0.00        1.33         1.87
## 920      0.53     0.30        0.09         1.87
## 921      1.47     0.04        0.14         1.87
## 922      0.16     1.07        0.10         1.87
## 923      0.62     0.40        0.12         1.87
## 924      0.52     0.41        0.06         1.86
## 925      0.03     0.00        0.08         1.86
## 926      0.69     0.03        0.02         1.86
## 927      0.44     0.39        0.10         1.86
## 928      0.41     0.04        0.04         1.86
## 929      1.37     0.00        0.49         1.86
## 930      0.92     0.01        0.29         1.86
## 931      0.71     0.00        0.24         1.86
## 932      0.37     0.00        0.15         1.86
## 933      0.42     0.69        0.12         1.86
## 934      0.71     0.13        0.16         1.86
## 935      0.59     0.55        0.11         1.85
## 936      0.49     0.00        0.03         1.85
## 937      0.82     0.00        0.20         1.85
## 938      0.18     0.35        0.06         1.85
## 939      0.19     0.83        0.03         1.85
## 940      0.49     0.08        0.23         1.85
## 941      1.10     0.42        0.33         1.84
## 942      0.34     0.35        0.18         1.84
## 943      0.05     0.00        0.25         1.84
## 944      0.06     0.93        0.00         1.83
## 945      0.49     0.00        0.03         1.83
## 946      0.76     0.00        0.23         1.83
## 947      0.40     0.03        0.07         1.83
## 948      1.02     0.07        0.28         1.83
## 949      0.07     1.49        0.02         1.83
## 950      0.54     0.02        0.17         1.83
## 951      0.33     0.52        0.05         1.83
## 952      0.34     0.79        0.09         1.82
## 953      0.43     0.03        0.12         1.82
## 954      0.07     0.00        0.02         1.82
## 955      0.00     0.00        0.00         1.82
## 956      0.74     0.07        0.09         1.82
## 957      0.21     1.35        0.03         1.81
## 958      0.84     0.11        0.31         1.81
## 959      0.59     0.00        0.18         1.81
## 960      0.51     0.12        0.08         1.81
## 961      0.44     0.56        0.04         1.81
## 962      0.69     0.00        0.23         1.81
## 963      0.03     0.00        0.77         1.80
## 964      0.59     0.21        0.07         1.80
## 965      0.00     0.01        0.13         1.80
## 966      0.21     0.03        0.16         1.80
## 967      0.68     0.00        0.12         1.80
## 968      0.96     0.07        0.27         1.79
## 969      0.39     0.08        0.06         1.79
## 970      0.88     0.06        0.34         1.79
## 971      0.57     0.03        0.14         1.78
## 972      0.29     0.00        0.24         1.78
## 973      0.03     1.49        0.03         1.78
## 974      0.58     0.00        0.08         1.78
## 975      1.01     0.02        0.36         1.78
## 976      0.95     0.36        0.14         1.78
## 977      0.94     0.06        0.33         1.78
## 978      0.46     0.72        0.19         1.78
## 979      0.57     0.14        0.13         1.77
## 980      0.76     0.00        0.16         1.77
## 981      0.45     0.00        0.16         1.77
## 982      0.54     0.84        0.08         1.77
## 983      0.03     0.00        0.15         1.77
## 984      0.09     1.33        0.12         1.77
## 985      0.06     1.03        0.04         1.77
## 986      0.29     0.24        0.06         1.77
## 987      0.45     0.01        0.24         1.77
## 988      0.31     0.56        0.04         1.76
## 989      0.42     0.00        0.07         1.76
## 990      0.54     0.00        0.16         1.76
## 991      0.38     0.40        0.06         1.76
## 992      0.47     0.20        0.07         1.76
## 993      0.12     1.09        0.02         1.76
## 994      0.67     0.00        0.22         1.76
## 995      0.46     0.00        0.07         1.76
## 996      0.67     0.00        0.22         1.76
## 997      0.69     0.04        0.31         1.76
## 998      0.90     0.01        0.17         1.76
## 999      0.47     0.00        0.03         1.76
## 1000     0.48     0.00        0.16         1.76
## 1001     0.95     0.00        0.29         1.76
## 1002     1.07     0.02        0.32         1.76
## 1003     0.87     0.02        0.26         1.76
## 1004     0.04     0.00        0.04         1.75
## 1005     0.37     0.25        0.24         1.75
## 1006     0.45     0.00        0.07         1.75
## 1007     0.90     0.53        0.27         1.75
## 1008     0.54     0.03        0.18         1.75
## 1009     0.13     0.91        0.01         1.75
## 1010     0.34     0.21        0.27         1.75
## 1011     0.14     0.80        0.02         1.75
## 1012     0.66     0.08        0.18         1.75
## 1013     0.66     0.01        0.22         1.75
## 1014     0.46     0.00        0.03         1.75
## 1015     0.89     0.04        0.10         1.74
## 1016     0.49     0.45        0.17         1.74
## 1017     0.63     0.02        0.25         1.74
## 1018     0.40     0.00        0.16         1.74
## 1019     0.89     0.03        0.14         1.74
## 1020     0.61     0.01        0.16         1.74
## 1021     0.04     0.00        0.01         1.74
## 1022     0.04     0.00        0.04         1.74
## 1023     0.88     0.06        0.30         1.74
## 1024     0.75     0.13        0.27         1.74
## 1025     0.66     0.12        0.27         1.73
## 1026     0.66     0.00        0.22         1.73
## 1027     0.68     0.14        0.26         1.73
## 1028     0.20     0.00        0.05         1.73
## 1029     0.62     0.10        0.07         1.73
## 1030     0.44     0.00        0.14         1.73
## 1031     0.70     0.00        0.08         1.73
## 1032     0.52     0.01        0.14         1.73
## 1033     0.66     0.00        0.22         1.72
## 1034     0.78     0.06        0.27         1.72
## 1035     0.78     0.00        0.28         1.72
## 1036     0.18     0.00        0.94         1.72
## 1037     0.83     0.00        0.19         1.72
## 1038     0.98     0.00        0.33         1.72
## 1039     0.03     0.00        0.08         1.72
## 1040     0.21     0.55        0.15         1.72
## 1041     0.87     0.00        0.25         1.71
## 1042     0.16     0.00        0.12         1.71
## 1043     0.64     0.00        0.08         1.71
## 1044     0.41     0.00        0.15         1.71
## 1045     0.34     0.32        0.18         1.71
## 1046     0.55     0.00        0.07         1.71
## 1047     0.00     1.71        0.00         1.71
## 1048     0.39     0.00        0.06         1.71
## 1049     0.00     0.00        0.12         1.70
## 1050     1.08     0.03        0.26         1.70
## 1051     0.24     0.00        1.23         1.70
## 1052     0.42     0.14        0.15         1.70
## 1053     1.12     0.00        0.09         1.70
## 1054     0.21     0.79        0.08         1.70
## 1055     0.00     1.69        0.01         1.70
## 1056     0.83     0.00        0.19         1.70
## 1057     0.05     0.00        0.23         1.70
## 1058     0.34     0.04        0.10         1.69
## 1059     0.18     0.00        0.15         1.69
## 1060     0.54     0.02        0.25         1.69
## 1061     0.53     0.01        0.14         1.69
## 1062     0.64     0.00        0.11         1.69
## 1063     0.44     0.08        0.22         1.69
## 1064     1.01     0.00        0.13         1.69
## 1065     0.28     0.03        0.02         1.69
## 1066     0.48     0.04        0.07         1.69
## 1067     0.66     0.08        0.08         1.69
## 1068     0.71     0.01        0.18         1.69
## 1069     0.12     0.00        0.05         1.69
## 1070     0.52     0.00        0.19         1.69
## 1071     0.42     0.22        0.06         1.69
## 1072     0.52     0.07        0.30         1.69
## 1073     0.47     0.00        0.32         1.68
## 1074     0.64     0.00        0.22         1.68
## 1075     0.06     0.00        0.04         1.68
## 1076     0.64     0.00        0.15         1.68
## 1077     0.24     0.82        0.03         1.68
## 1078     0.87     0.33        0.10         1.68
## 1079     0.00     0.00        0.00         1.68
## 1080     0.30     0.00        0.14         1.68
## 1081     0.55     0.04        0.17         1.68
## 1082     0.27     0.17        0.06         1.68
## 1083     0.57     0.00        0.17         1.67
## 1084     0.52     0.00        0.22         1.67
## 1085     1.02     0.00        0.20         1.67
## 1086     0.05     0.00        0.04         1.67
## 1087     0.59     0.01        0.26         1.67
## 1088     0.67     0.42        0.15         1.67
## 1089     0.39     0.00        0.06         1.67
## 1090     0.30     0.42        0.04         1.67
## 1091     0.49     0.02        0.07         1.67
## 1092     0.95     0.03        0.10         1.67
## 1093     0.65     0.00        0.19         1.67
## 1094     0.59     0.04        0.07         1.67
## 1095     0.32     0.00        0.22         1.67
## 1096     0.09     0.00        0.23         1.67
## 1097     0.45     0.00        0.14         1.67
## 1098     0.66     0.11        0.26         1.66
## 1099     0.73     0.06        0.30         1.66
## 1100     0.30     0.31        0.04         1.66
## 1101     0.61     0.06        0.20         1.66
## 1102     0.64     0.01        0.14         1.66
## 1103     0.63     0.00        0.21         1.66
## 1104     0.70     0.02        0.18         1.66
## 1105     0.15     0.03        0.22         1.66
## 1106     0.12     0.54        0.04         1.66
## 1107     0.10     0.00        0.02         1.65
## 1108     0.11     0.60        0.05         1.65
## 1109     0.38     0.15        0.05         1.65
## 1110     0.68     0.33        0.16         1.65
## 1111     0.00     1.65        0.00         1.65
## 1112     0.38     0.02        0.16         1.65
## 1113     0.02     1.27        0.03         1.64
## 1114     0.05     0.76        0.03         1.64
## 1115     0.72     0.00        0.16         1.64
## 1116     0.10     0.00        0.02         1.64
## 1117     0.63     0.00        0.08         1.64
## 1118     0.26     0.61        0.03         1.64
## 1119     0.63     0.00        0.21         1.64
## 1120     0.15     0.00        0.05         1.64
## 1121     0.88     0.00        0.22         1.64
## 1122     0.48     0.00        0.14         1.64
## 1123     0.89     0.05        0.25         1.64
## 1124     0.02     0.00        0.07         1.63
## 1125     0.96     0.02        0.20         1.63
## 1126     0.25     0.56        0.04         1.63
## 1127     0.81     0.00        0.24         1.63
## 1128     0.73     0.02        0.28         1.63
## 1129     0.34     0.00        0.10         1.63
## 1130     0.48     0.32        0.11         1.63
## 1131     0.14     0.00        0.15         1.63
## 1132     0.09     0.00        0.22         1.62
## 1133     0.85     0.02        0.17         1.62
## 1134     0.41     0.00        0.22         1.62
## 1135     0.63     0.01        0.19         1.62
## 1136     0.61     0.03        0.15         1.62
## 1137     0.04     0.49        0.10         1.62
## 1138     0.11     0.45        0.04         1.62
## 1139     0.61     0.00        0.11         1.62
## 1140     0.38     0.30        0.13         1.61
## 1141     0.62     0.00        0.21         1.61
## 1142     0.53     0.03        0.13         1.61
## 1143     0.27     0.65        0.03         1.61
## 1144     0.00     1.61        0.01         1.61
## 1145     0.38     0.20        0.04         1.61
## 1146     1.18     0.00        0.43         1.61
## 1147     0.00     0.00        0.11         1.61
## 1148     0.68     0.01        0.13         1.61
## 1149     0.48     0.01        0.15         1.60
## 1150     0.99     0.00        0.22         1.60
## 1151     0.23     0.00        0.07         1.60
## 1152     0.69     0.02        0.18         1.60
## 1153     0.96     0.09        0.08         1.60
## 1154     0.09     0.00        0.02         1.60
## 1155     0.48     0.30        0.10         1.60
## 1156     0.02     1.36        0.02         1.60
## 1157     0.74     0.02        0.26         1.60
## 1158     0.44     0.06        0.04         1.60
## 1159     0.12     0.00        0.21         1.59
## 1160     1.58     0.00        0.00         1.59
## 1161     0.36     0.04        0.04         1.59
## 1162     0.41     0.46        0.10         1.59
## 1163     0.46     0.34        0.21         1.59
## 1164     0.09     0.00        0.02         1.59
## 1165     1.10     0.32        0.13         1.59
## 1166     0.44     0.07        0.15         1.59
## 1167     0.50     0.00        0.14         1.59
## 1168     0.60     0.00        0.10         1.59
## 1169     0.80     0.03        0.29         1.58
## 1170     0.56     0.00        0.15         1.58
## 1171     0.58     0.00        0.16         1.58
## 1172     0.60     0.01        0.17         1.58
## 1173     0.60     0.00        0.10         1.58
## 1174     0.80     0.01        0.15         1.58
## 1175     0.49     0.00        0.15         1.58
## 1176     0.76     0.00        0.17         1.58
## 1177     0.26     0.34        0.09         1.58
## 1178     0.37     0.00        0.15         1.58
## 1179     0.44     0.44        0.12         1.58
## 1180     0.65     0.00        0.08         1.58
## 1181     0.18     0.12        1.16         1.57
## 1182     0.60     0.00        0.20         1.57
## 1183     0.53     0.00        0.06         1.57
## 1184     0.11     0.46        0.04         1.57
## 1185     0.64     0.49        0.25         1.56
## 1186     0.60     0.00        0.20         1.56
## 1187     0.40     0.00        0.10         1.56
## 1188     0.14     0.81        0.02         1.56
## 1189     0.19     0.00        0.05         1.56
## 1190     0.44     0.33        0.21         1.56
## 1191     0.17     0.69        0.03         1.56
## 1192     0.00     1.56        0.00         1.56
## 1193     0.38     0.44        0.05         1.56
## 1194     0.75     0.01        0.21         1.56
## 1195     0.56     0.00        0.15         1.55
## 1196     0.54     0.04        0.25         1.55
## 1197     0.59     0.00        0.20         1.55
## 1198     0.57     0.00        0.07         1.55
## 1199     0.44     0.19        0.14         1.55
## 1200     0.47     0.02        0.22         1.55
## 1201     0.38     0.02        0.03         1.55
## 1202     0.87     0.02        0.09         1.55
## 1203     0.53     0.00        0.13         1.55
## 1204     0.53     0.00        0.22         1.55
## 1205     0.51     0.21        0.23         1.55
## 1206     0.00     0.00        0.00         1.55
## 1207     0.36     0.00        0.12         1.55
## 1208     0.50     0.24        0.11         1.55
## 1209     0.35     0.01        0.12         1.54
## 1210     0.43     0.29        0.14         1.54
## 1211     0.22     0.52        0.10         1.54
## 1212     0.44     0.08        0.19         1.54
## 1213     0.87     0.00        0.09         1.54
## 1214     0.02     0.02        0.10         1.54
## 1215     0.52     0.01        0.15         1.54
## 1216     0.07     0.00        0.21         1.54
## 1217     0.58     0.00        0.10         1.54
## 1218     0.69     0.00        0.21         1.53
## 1219     0.41     0.00        0.21         1.53
## 1220     0.65     0.01        0.17         1.53
## 1221     0.79     0.00        0.17         1.53
## 1222     0.29     0.00        0.05         1.53
## 1223     0.05     0.00        0.04         1.53
## 1224     0.43     0.00        0.14         1.53
## 1225     1.26     0.00        0.10         1.53
## 1226     0.15     0.25        0.04         1.53
## 1227     0.58     0.00        0.10         1.53
## 1228     0.52     0.15        0.12         1.52
## 1229     0.45     0.00        0.13         1.52
## 1230     0.69     0.00        0.39         1.52
## 1231     0.39     0.00        0.06         1.52
## 1232     0.90     0.00        0.27         1.52
## 1233     0.05     0.00        0.04         1.52
## 1234     0.00     1.52        0.00         1.52
## 1235     0.06     1.27        0.01         1.52
## 1236     0.04     0.00        0.04         1.52
## 1237     0.05     0.00        0.03         1.52
## 1238     0.72     0.04        0.26         1.52
## 1239     0.63     0.03        0.26         1.52
## 1240     0.31     0.06        0.04         1.52
## 1241     0.05     0.00        0.21         1.51
## 1242     0.09     0.00        0.12         1.51
## 1243     0.71     0.00        0.15         1.51
## 1244     0.54     0.00        0.13         1.51
## 1245     1.16     0.00        0.34         1.51
## 1246     0.00     1.51        0.00         1.51
## 1247     0.15     0.42        0.01         1.51
## 1248     1.16     0.00        0.11         1.51
## 1249     0.06     0.00        0.04         1.51
## 1250     0.03     0.00        1.13         1.51
## 1251     0.27     0.00        0.05         1.51
## 1252     0.32     0.11        0.08         1.50
## 1253     0.58     0.05        0.23         1.50
## 1254     0.52     0.15        0.17         1.50
## 1255     0.48     0.00        0.17         1.50
## 1256     0.05     0.00        0.04         1.50
## 1257     0.78     0.00        0.23         1.50
## 1258     0.31     0.00        0.11         1.50
## 1259     0.07     0.05        0.20         1.50
## 1260     0.27     0.02        0.02         1.50
## 1261     0.10     0.92        0.02         1.50
## 1262     0.36     0.09        0.05         1.50
## 1263     0.00     1.50        0.00         1.50
## 1264     0.53     0.09        0.12         1.50
## 1265     0.20     0.00        0.16         1.50
## 1266     0.14     0.10        0.04         1.50
## 1267     0.28     0.00        0.13         1.49
## 1268     0.38     0.36        0.04         1.49
## 1269     0.43     0.00        0.06         1.49
## 1270     0.00     0.00        0.27         1.49
## 1271     0.36     0.00        0.13         1.49
## 1272     0.36     0.25        0.06         1.49
## 1273     1.10     0.00        0.39         1.49
## 1274     0.52     0.01        0.14         1.49
## 1275     0.73     0.00        0.15         1.49
## 1276     0.69     0.28        0.14         1.48
## 1277     0.88     0.00        0.18         1.48
## 1278     0.37     0.52        0.12         1.48
## 1279     0.50     0.65        0.05         1.48
## 1280     0.25     0.02        0.02         1.48
## 1281     0.35     0.39        0.04         1.48
## 1282     0.47     0.03        0.20         1.48
## 1283     0.56     0.00        0.19         1.48
## 1284     0.20     0.00        0.20         1.48
## 1285     0.59     0.00        0.07         1.48
## 1286     0.92     0.00        0.17         1.47
## 1287     0.55     0.06        0.28         1.47
## 1288     0.41     0.14        0.20         1.47
## 1289     0.18     0.65        0.02         1.47
## 1290     0.37     0.00        0.06         1.47
## 1291     0.03     0.01        0.10         1.47
## 1292     0.40     0.44        0.18         1.47
## 1293     0.20     0.49        0.09         1.47
## 1294     0.40     0.00        0.12         1.47
## 1295     0.50     0.03        0.15         1.47
## 1296     0.20     0.00        0.12         1.47
## 1297     0.72     0.02        0.33         1.47
## 1298     0.19     0.89        0.10         1.46
## 1299     0.38     0.00        0.06         1.46
## 1300     0.40     0.02        0.12         1.46
## 1301     0.46     0.04        0.15         1.46
## 1302     0.56     0.00        0.19         1.46
## 1303     0.83     0.00        0.17         1.46
## 1304     0.55     0.00        0.10         1.46
## 1305     0.48     0.02        0.12         1.46
## 1306     0.37     0.10        0.04         1.46
## 1307     0.08     0.00        0.02         1.46
## 1308     0.55     0.00        0.10         1.46
## 1309     0.24     0.25        0.04         1.46
## 1310     0.59     0.03        0.21         1.46
## 1311     0.40     0.00        0.11         1.46
## 1312     0.65     0.06        0.28         1.46
## 1313     0.20     0.04        0.05         1.46
## 1314     0.58     0.00        0.35         1.46
## 1315     0.75     0.07        0.12         1.46
## 1316     0.47     0.54        0.07         1.45
## 1317     0.44     0.00        0.12         1.45
## 1318     0.46     0.00        0.13         1.45
## 1319     0.49     0.01        0.21         1.45
## 1320     0.55     0.00        0.19         1.45
## 1321     1.13     0.00        0.32         1.45
## 1322     0.35     0.46        0.10         1.45
## 1323     0.76     0.00        0.16         1.45
## 1324     0.00     1.44        0.01         1.45
## 1325     0.00     1.45        0.00         1.45
## 1326     0.00     1.45        0.00         1.45
## 1327     0.00     1.44        0.01         1.45
## 1328     0.17     0.03        0.01         1.45
## 1329     0.34     0.00        0.13         1.45
## 1330     0.08     1.24        0.02         1.45
## 1331     0.05     0.00        0.02         1.45
## 1332     0.90     0.00        0.18         1.45
## 1333     0.53     0.00        0.13         1.44
## 1334     1.08     0.00        0.32         1.44
## 1335     0.42     0.00        0.28         1.44
## 1336     0.77     0.00        0.19         1.44
## 1337     0.07     1.09        0.02         1.44
## 1338     0.79     0.08        0.23         1.44
## 1339     0.38     0.00        0.13         1.44
## 1340     0.40     0.00        0.12         1.44
## 1341     0.07     0.02        0.11         1.44
## 1342     0.74     0.05        0.31         1.44
## 1343     0.32     0.00        0.09         1.44
## 1344     0.50     0.00        0.21         1.44
## 1345     0.08     0.00        0.19         1.44
## 1346     0.54     0.00        0.09         1.43
## 1347     0.37     0.00        0.11         1.43
## 1348     0.39     0.00        0.13         1.43
## 1349     0.46     0.00        0.13         1.43
## 1350     0.48     0.00        0.14         1.43
## 1351     0.23     0.35        0.03         1.43
## 1352     0.00     1.39        0.03         1.43
## 1353     0.54     0.00        0.09         1.43
## 1354     0.04     1.30        0.01         1.42
## 1355     0.54     0.00        0.18         1.42
## 1356     0.41     0.02        0.19         1.42
## 1357     0.05     0.00        0.02         1.42
## 1358     0.22     0.22        0.10         1.42
## 1359     0.08     0.00        0.19         1.42
## 1360     0.57     0.00        0.14         1.42
## 1361     0.12     0.71        0.02         1.42
## 1362     0.00     1.30        0.00         1.42
## 1363     0.40     0.00        0.13         1.42
## 1364     0.38     0.35        0.05         1.42
## 1365     0.21     1.18        0.03         1.42
## 1366     0.64     0.06        0.25         1.41
## 1367     0.51     0.00        0.32         1.41
## 1368     0.63     0.00        0.14         1.41
## 1369     0.34     0.00        0.13         1.41
## 1370     0.28     0.00        0.04         1.41
## 1371     0.34     0.00        0.11         1.41
## 1372     0.15     0.00        0.19         1.41
## 1373     0.37     0.03        0.05         1.41
## 1374     0.45     0.32        0.28         1.41
## 1375     0.31     0.13        0.10         1.41
## 1376     0.34     0.00        0.05         1.41
## 1377     0.47     0.77        0.17         1.41
## 1378     0.17     0.00        0.05         1.41
## 1379     0.54     0.00        0.18         1.41
## 1380     0.47     0.00        0.12         1.40
## 1381     0.28     0.00        0.05         1.40
## 1382     0.08     0.03        0.93         1.40
## 1383     0.20     0.00        0.05         1.40
## 1384     0.70     0.01        0.27         1.40
## 1385     0.52     0.08        0.06         1.40
## 1386     0.00     1.39        0.01         1.40
## 1387     0.86     0.00        0.16         1.40
## 1388     1.05     0.02        0.30         1.40
## 1389     0.53     0.00        0.09         1.39
## 1390     0.66     0.02        0.22         1.39
## 1391     0.42     0.54        0.10         1.39
## 1392     0.02     0.00        0.09         1.39
## 1393     0.60     0.07        0.23         1.39
## 1394     0.16     0.00        0.03         1.39
## 1395     0.17     0.15        0.02         1.39
## 1396     0.18     0.91        0.06         1.39
## 1397     0.38     0.00        0.13         1.39
## 1398     0.62     0.00        0.26         1.39
## 1399     0.48     0.02        0.12         1.39
## 1400     0.37     0.00        0.05         1.38
## 1401     0.56     0.00        0.33         1.38
## 1402     0.18     0.59        0.02         1.38
## 1403     0.32     0.49        0.07         1.38
## 1404     0.38     0.02        0.11         1.38
## 1405     0.54     0.00        0.07         1.38
## 1406     0.34     0.38        0.21         1.38
## 1407     0.57     0.15        0.22         1.38
## 1408     0.53     0.00        0.13         1.38
## 1409     0.04     0.00        0.09         1.38
## 1410     0.43     0.01        0.13         1.38
## 1411     0.53     0.00        0.18         1.38
## 1412     0.58     0.00        0.15         1.38
## 1413     0.01     0.00        0.76         1.37
## 1414     0.62     0.06        0.23         1.37
## 1415     0.70     0.16        0.26         1.37
## 1416     0.52     0.00        0.09         1.37
## 1417     0.78     0.01        0.09         1.37
## 1418     0.67     0.02        0.26         1.37
## 1419     0.50     0.01        0.13         1.37
## 1420     0.33     0.00        0.05         1.37
## 1421     0.60     0.00        0.22         1.37
## 1422     0.00     1.37        0.00         1.37
## 1423     0.27     0.02        0.22         1.36
## 1424     0.45     0.00        0.06         1.36
## 1425     0.66     0.00        0.07         1.36
## 1426     0.58     0.01        0.15         1.36
## 1427     0.04     0.00        1.09         1.36
## 1428     0.08     1.00        0.01         1.36
## 1429     0.00     1.36        0.00         1.36
## 1430     0.08     0.00        0.01         1.36
## 1431     0.51     0.28        0.09         1.36
## 1432     0.42     0.00        0.11         1.36
## 1433     0.52     0.00        0.17         1.36
## 1434     0.47     0.00        0.13         1.36
## 1435     0.29     0.11        0.14         1.35
## 1436     0.00     1.26        0.09         1.35
## 1437     0.76     0.08        0.27         1.35
## 1438     0.03     0.00        0.03         1.35
## 1439     0.73     0.02        0.37         1.35
## 1440     0.01     0.06        0.09         1.35
## 1441     0.76     0.00        0.39         1.35
## 1442     0.57     0.05        0.14         1.35
## 1443     0.51     0.05        0.13         1.35
## 1444     0.36     0.05        0.18         1.35
## 1445     0.21     0.00        0.13         1.35
## 1446     0.05     1.06        0.02         1.35
## 1447     0.58     0.00        0.07         1.35
## 1448     0.34     0.08        0.13         1.35
## 1449     0.45     0.04        0.21         1.35
## 1450     0.04     1.03        0.04         1.35
## 1451     0.50     0.02        0.12         1.35
## 1452     0.04     1.07        0.09         1.35
## 1453     1.04     0.00        0.31         1.35
## 1454     0.89     0.01        0.14         1.35
## 1455     0.37     0.13        0.17         1.35
## 1456     0.21     0.01        0.18         1.34
## 1457     0.07     0.43        0.08         1.34
## 1458     0.04     0.10        0.11         1.34
## 1459     0.27     0.00        0.04         1.34
## 1460     0.43     0.00        0.06         1.34
## 1461     0.22     0.24        0.04         1.34
## 1462     0.05     0.05        0.01         1.34
## 1463     0.51     0.00        0.17         1.34
## 1464     0.02     0.00        0.00         1.34
## 1465     0.06     0.00        0.18         1.34
## 1466     0.50     0.01        0.21         1.33
## 1467     0.05     0.00        0.02         1.33
## 1468     0.42     0.00        0.11         1.33
## 1469     0.59     0.06        0.21         1.33
## 1470     0.36     0.00        0.11         1.33
## 1471     0.31     0.01        0.12         1.33
## 1472     0.35     0.01        0.05         1.33
## 1473     0.24     0.00        0.02         1.33
## 1474     0.38     0.01        0.05         1.33
## 1475     0.35     0.00        0.06         1.33
## 1476     0.50     0.00        0.09         1.33
## 1477     0.35     0.07        0.04         1.33
## 1478     0.31     0.00        0.11         1.33
## 1479     0.40     0.32        0.18         1.33
## 1480     0.51     0.00        0.17         1.33
## 1481     0.48     0.00        0.13         1.33
## 1482     0.17     0.58        0.06         1.33
## 1483     0.50     0.01        0.10         1.32
## 1484     0.38     0.02        0.24         1.32
## 1485     0.42     0.00        0.19         1.32
## 1486     0.36     0.40        0.17         1.32
## 1487     0.13     0.00        1.18         1.32
## 1488     0.43     0.18        0.19         1.32
## 1489     0.52     0.00        0.11         1.32
## 1490     1.16     0.02        0.11         1.32
## 1491     0.16     0.40        0.03         1.32
## 1492     0.08     0.00        0.18         1.32
## 1493     0.50     0.00        0.09         1.32
## 1494     0.04     0.96        0.01         1.32
## 1495     0.30     0.09        0.16         1.32
## 1496     0.50     0.00        0.09         1.32
## 1497     0.44     0.04        0.12         1.32
## 1498     0.45     0.00        0.11         1.32
## 1499     0.46     0.00        0.28         1.32
## 1500     0.50     0.00        0.09         1.31
## 1501     0.50     0.00        0.17         1.31
## 1502     0.23     0.00        0.11         1.31
## 1503     0.42     0.05        0.13         1.31
## 1504     0.35     0.00        0.12         1.31
## 1505     0.00     0.00        0.09         1.31
## 1506     0.45     0.00        0.07         1.31
## 1507     0.67     0.00        0.07         1.31
## 1508     0.38     0.00        0.12         1.31
## 1509     0.07     0.00        0.02         1.31
## 1510     0.50     0.00        0.17         1.31
## 1511     0.49     0.00        0.13         1.31
## 1512     0.04     0.06        0.09         1.31
## 1513     0.43     0.00        0.04         1.31
## 1514     0.00     0.00        0.00         0.01
## 1515     0.35     0.00        0.02         1.30
## 1516     0.57     0.06        0.21         1.30
## 1517     0.04     0.02        0.17         1.30
## 1518     0.44     0.09        0.21         1.30
## 1519     0.02     0.00        1.02         1.30
## 1520     0.48     0.00        0.13         1.30
## 1521     0.20     0.00        0.05         1.30
## 1522     0.00     1.29        0.01         1.30
## 1523     0.40     0.00        0.11         1.30
## 1524     0.38     0.28        0.08         1.30
## 1525     0.64     0.02        0.10         1.30
## 1526     0.66     0.02        0.15         1.29
## 1527     0.47     0.11        0.10         1.29
## 1528     0.02     0.85        0.03         1.29
## 1529     0.92     0.00        0.25         1.29
## 1530     0.27     0.45        0.04         1.29
## 1531     0.17     0.02        0.10         1.29
## 1532     0.44     0.00        0.12         1.29
## 1533     0.34     0.00        0.02         1.29
## 1534     0.49     0.00        0.16         1.29
## 1535     0.14     0.00        0.10         1.29
## 1536     0.40     0.00        0.12         1.29
## 1537     0.20     0.24        0.13         1.29
## 1538     0.05     0.00        0.01         1.29
## 1539     0.49     0.00        0.16         1.28
## 1540     0.45     0.01        0.11         1.28
## 1541     0.59     0.00        0.14         1.28
## 1542     0.46     0.17        0.20         1.28
## 1543     0.00     1.28        0.00         1.28
## 1544     0.56     0.00        0.11         1.28
## 1545     0.14     0.00        0.04         1.28
## 1546     0.45     0.00        0.11         1.28
## 1547     0.16     0.00        0.04         1.28
## 1548     0.49     0.00        0.16         1.28
## 1549     0.35     0.36        0.07         1.28
## 1550     0.49     0.00        0.16         1.28
## 1551     0.56     0.05        0.22         1.27
## 1552     0.40     0.21        0.08         1.27
## 1553     0.05     0.00        0.00         1.27
## 1554     0.03     0.00        0.52         1.27
## 1555     0.48     0.00        0.08         1.27
## 1556     0.30     0.47        0.06         1.27
## 1557     0.08     0.00        0.01         1.27
## 1558     0.16     0.00        0.11         1.27
## 1559     0.40     0.00        0.12         1.27
## 1560     0.37     0.00        0.05         1.27
## 1561     0.16     0.41        0.02         1.27
## 1562     0.38     0.00        0.12         1.27
## 1563     0.20     0.00        0.11         1.27
## 1564     0.38     0.26        0.13         1.27
## 1565     0.73     0.00        0.15         1.27
## 1566     0.30     0.06        0.03         1.27
## 1567     0.48     0.00        0.16         1.27
## 1568     0.26     0.53        0.08         1.27
## 1569     0.00     1.27        0.00         1.27
## 1570     0.57     0.00        0.14         1.26
## 1571     0.02     1.12        0.01         1.26
## 1572     1.01     0.00        0.25         1.26
## 1573     0.03     1.10        0.08         1.26
## 1574     0.05     0.62        0.05         1.26
## 1575     0.42     0.13        0.10         1.26
## 1576     0.52     0.03        0.21         1.26
## 1577     1.15     0.00        0.11         1.26
## 1578     1.13     0.01        0.10         1.26
## 1579     0.62     0.00        0.14         1.26
## 1580     0.22     0.00        0.04         1.26
## 1581     0.51     0.00        0.11         1.26
## 1582     0.68     0.00        0.12         1.26
## 1583     0.17     0.02        0.13         1.25
## 1584     0.47     0.00        0.08         1.25
## 1585     0.00     0.01        0.75         1.25
## 1586     0.01     0.00        0.00         0.01
## 1587     0.53     0.03        0.22         1.25
## 1588     0.00     1.25        0.00         1.25
## 1589     0.00     1.25        0.00         1.25
## 1590     0.13     0.10        0.04         1.25
## 1591     0.53     0.01        0.23         1.25
## 1592     0.19     0.31        0.03         1.25
## 1593     0.04     0.03        0.16         1.25
## 1594     0.05     0.00        0.00         1.25
## 1595     0.48     0.00        0.16         1.25
## 1596     0.56     0.00        0.17         1.25
## 1597     0.16     0.00        0.04         1.25
## 1598     0.03     0.22        0.14         1.24
## 1599     0.48     0.00        0.16         1.24
## 1600     0.03     0.00        0.09         1.24
## 1601     0.19     0.67        0.09         1.24
## 1602     0.04     0.00        0.10         1.24
## 1603     0.41     0.00        0.19         1.24
## 1604     0.48     0.05        0.28         1.24
## 1605     0.44     0.00        0.06         1.24
## 1606     0.47     0.00        0.11         1.24
## 1607     0.19     0.75        0.06         1.24
## 1608     0.00     0.00        0.55         1.24
## 1609     0.22     0.43        0.03         1.24
## 1610     0.38     0.00        0.04         1.24
## 1611     0.55     0.00        0.13         1.23
## 1612     0.47     0.00        0.16         1.23
## 1613     0.64     0.07        0.22         1.23
## 1614     0.20     0.07        0.04         1.23
## 1615     0.57     0.00        0.07         1.23
## 1616     0.47     0.00        0.16         1.23
## 1617     0.47     0.00        0.08         1.23
## 1618     1.02     0.00        0.13         1.23
## 1619     0.14     0.00        0.10         1.23
## 1620     0.70     0.03        0.25         1.23
## 1621     0.17     0.75        0.02         1.23
## 1622     0.33     0.00        0.02         1.23
## 1623     0.47     0.00        0.08         1.23
## 1624     0.06     0.62        0.01         1.23
## 1625     0.27     0.12        0.04         1.23
## 1626     0.41     0.21        0.17         1.23
## 1627     0.11     0.70        0.02         1.23
## 1628     0.06     0.01        0.11         1.23
## 1629     0.08     0.00        0.23         1.23
## 1630     0.38     0.00        0.12         1.23
## 1631     0.63     0.00        0.10         1.23
## 1632     0.64     0.00        0.14         1.23
## 1633     0.53     0.00        0.20         1.22
## 1634     0.47     0.15        0.18         1.22
## 1635     0.16     0.46        0.03         1.22
## 1636     0.07     1.00        0.02         1.22
## 1637     0.30     0.12        0.04         1.22
## 1638     0.31     0.08        0.04         1.22
## 1639     0.08     0.85        0.02         1.22
## 1640     0.46     0.01        0.15         1.22
## 1641     0.75     0.11        0.25         1.22
## 1642     0.29     0.00        0.21         1.22
## 1643     0.05     0.00        0.03         1.22
## 1644     0.00     1.14        0.08         1.22
## 1645     0.27     0.27        0.07         1.22
## 1646     0.46     0.00        0.08         1.22
## 1647     0.19     0.00        0.05         1.22
## 1648     0.46     0.00        0.08         1.22
## 1649     0.46     0.01        0.15         1.22
## 1650     0.00     0.00        0.00         0.01
## 1651     0.44     0.14        0.09         1.22
## 1652     0.04     0.00        0.16         1.21
## 1653     0.24     0.00        0.04         1.21
## 1654     0.40     0.00        0.04         1.21
## 1655     0.70     0.01        0.37         1.21
## 1656     0.14     0.00        0.04         1.21
## 1657     0.43     0.00        0.12         1.21
## 1658     0.17     0.35        0.03         1.21
## 1659     0.00     1.20        0.01         1.21
## 1660     0.48     0.01        0.06         1.21
## 1661     0.49     0.28        0.10         1.21
## 1662     0.48     0.01        0.03         1.21
## 1663     0.32     0.00        0.02         1.21
## 1664     0.46     0.00        0.08         1.21
## 1665     0.65     0.00        0.32         1.21
## 1666     0.88     0.31        0.00         1.20
## 1667     0.46     0.00        0.15         1.20
## 1668     0.49     0.00        0.20         1.20
## 1669     0.04     0.00        0.16         1.20
## 1670     0.13     0.56        0.03         1.20
## 1671     0.59     0.00        0.10         1.20
## 1672     0.31     0.00        0.12         1.20
## 1673     0.37     0.01        0.11         1.20
## 1674     0.60     0.00        0.19         1.20
## 1675     0.00     1.20        0.00         1.20
## 1676     0.00     1.20        0.00         1.20
## 1677     0.00     1.20        0.00         1.20
## 1678     0.05     0.00        0.02         1.20
## 1679     0.39     0.36        0.04         1.20
## 1680     0.43     0.01        0.04         1.20
## 1681     0.46     0.00        0.15         1.20
## 1682     0.03     0.36        0.07         1.20
## 1683     0.17     0.42        0.06         1.20
## 1684     0.24     0.86        0.09         1.20
## 1685     0.49     0.00        0.21         1.19
## 1686     0.35     0.38        0.09         1.19
## 1687     0.45     0.00        0.08         1.19
## 1688     0.36     0.19        0.09         1.19
## 1689     0.47     0.00        0.28         1.19
## 1690     0.32     0.00        0.02         1.19
## 1691     0.84     0.11        0.15         1.19
## 1692     0.23     0.00        0.04         1.19
## 1693     0.64     0.27        0.10         1.19
## 1694     0.04     0.00        0.16         1.19
## 1695     0.13     0.04        0.01         1.19
## 1696     0.14     0.35        0.02         1.19
## 1697     0.16     0.00        0.04         1.19
## 1698     0.01     0.00        0.00         0.01
## 1699     0.66     0.00        0.12         1.19
## 1700     0.27     0.01        0.04         1.19
## 1701     0.24     0.29        0.02         1.19
## 1702     0.14     0.00        0.22         1.19
## 1703     0.31     0.33        0.08         1.19
## 1704     0.20     0.00        0.08         1.19
## 1705     0.45     0.00        0.08         1.18
## 1706     0.07     0.00        0.01         1.18
## 1707     0.25     0.36        0.10         1.18
## 1708     0.49     0.00        0.29         1.18
## 1709     0.00     1.08        0.00         1.18
## 1710     0.24     0.38        0.04         1.18
## 1711     0.18     0.44        0.06         1.18
## 1712     0.31     0.00        0.02         1.18
## 1713     0.46     0.02        0.17         1.18
## 1714     0.49     0.01        0.20         1.18
## 1715     0.15     0.00        0.08         1.18
## 1716     0.07     0.04        0.66         1.18
## 1717     0.14     0.52        0.02         1.18
## 1718     1.06     0.00        0.09         1.17
## 1719     0.44     0.00        0.08         1.17
## 1720     0.37     0.00        0.10         1.17
## 1721     0.26     0.02        0.15         1.17
## 1722     0.04     0.00        0.16         1.17
## 1723     0.45     0.00        0.15         1.17
## 1724     0.31     0.15        0.11         1.17
## 1725     0.49     0.01        0.12         1.17
## 1726     0.47     0.01        0.10         1.17
## 1727     0.10     0.39        0.00         1.17
## 1728     0.64     0.04        0.18         1.17
## 1729     0.38     0.02        0.03         1.17
## 1730     0.00     1.17        0.00         1.17
## 1731     0.45     0.00        0.15         1.17
## 1732     0.44     0.00        0.08         1.17
## 1733     0.11     0.83        0.08         1.17
## 1734     0.36     0.00        0.05         1.17
## 1735     0.95     0.00        0.22         1.17
## 1736     0.44     0.00        0.08         1.17
## 1737     0.51     0.01        0.13         1.17
## 1738     0.23     0.00        0.11         1.17
## 1739     0.25     0.21        0.02         1.17
## 1740     0.52     0.02        0.20         1.16
## 1741     0.28     0.00        0.10         1.16
## 1742     0.45     0.00        0.14         1.16
## 1743     0.52     0.01        0.25         1.16
## 1744     0.25     0.30        0.16         1.16
## 1745     0.04     0.00        0.16         1.16
## 1746     0.44     0.00        0.15         1.16
## 1747     0.58     0.00        0.13         1.16
## 1748     0.27     0.43        0.08         1.16
## 1749     0.39     0.00        0.11         1.16
## 1750     0.44     0.00        0.15         1.16
## 1751     0.28     0.07        0.02         1.16
## 1752     0.08     0.50        0.01         1.16
## 1753     0.27     0.00        0.05         1.16
## 1754     0.16     0.77        0.02         1.16
## 1755     0.44     0.00        0.08         1.16
## 1756     0.39     0.02        0.25         1.16
## 1757     0.51     0.00        0.12         1.16
## 1758     0.38     0.09        0.17         1.16
## 1759     0.28     0.00        0.05         1.16
## 1760     0.68     0.01        0.32         1.16
## 1761     0.54     0.00        0.10         1.16
## 1762     1.14     0.00        0.01         1.15
## 1763     0.46     0.00        0.17         1.15
## 1764     0.44     0.00        0.15         1.15
## 1765     0.33     0.09        0.16         1.15
## 1766     0.44     0.00        0.15         1.15
## 1767     0.07     0.00        0.01         1.15
## 1768     0.46     0.06        0.18         1.15
## 1769     0.35     0.01        0.11         1.15
## 1770     1.12     0.00        0.03         1.15
## 1771     0.20     0.41        0.03         1.15
## 1772     0.00     1.15        0.00         1.15
## 1773     0.00     1.15        0.00         1.15
## 1774     0.52     0.00        0.13         1.15
## 1775     0.22     0.05        0.12         1.15
## 1776     0.16     0.46        0.03         1.15
## 1777     0.51     0.00        0.19         1.15
## 1778     0.00     1.15        0.00         1.15
## 1779     0.44     0.00        0.15         1.15
## 1780     0.43     0.00        0.07         1.15
## 1781     0.00     1.07        0.07         1.15
## 1782     0.26     0.35        0.07         1.14
## 1783     0.43     0.00        0.07         1.14
## 1784     0.34     0.25        0.11         1.14
## 1785     0.03     0.20        0.13         1.14
## 1786     0.17     0.65        0.07         1.14
## 1787     0.03     0.76        0.04         1.14
## 1788     0.04     0.00        0.16         1.14
## 1789     0.59     0.02        0.22         1.14
## 1790     0.75     0.00        0.14         1.14
## 1791     0.23     0.00        0.02         1.14
## 1792     0.16     0.25        0.03         1.14
## 1793     0.17     0.48        0.02         1.14
## 1794     0.23     0.47        0.03         1.14
## 1795     0.37     0.15        0.04         1.14
## 1796     0.38     0.00        0.05         1.14
## 1797     0.30     0.00        0.02         1.14
## 1798     0.51     0.00        0.62         1.14
## 1799     0.37     0.00        0.11         1.14
## 1800     0.10     0.88        0.03         1.14
## 1801     0.39     0.01        0.03         1.14
## 1802     0.10     0.00        0.03         1.13
## 1803     0.41     0.06        0.16         1.13
## 1804     0.43     0.00        0.09         1.13
## 1805     0.00     1.06        0.07         1.13
## 1806     0.30     0.00        0.02         1.13
## 1807     0.37     0.37        0.06         1.13
## 1808     0.12     0.00        0.02         1.13
## 1809     0.56     0.00        0.19         1.13
## 1810     0.05     0.84        0.01         1.13
## 1811     0.43     0.00        0.07         1.13
## 1812     0.39     0.00        0.10         1.13
## 1813     0.56     0.04        0.19         1.13
## 1814     0.21     0.62        0.08         1.13
## 1815     0.30     0.00        0.02         1.13
## 1816     0.30     0.00        0.15         1.13
## 1817     0.30     0.01        0.09         1.12
## 1818     0.06     0.00        0.01         1.12
## 1819     0.43     0.00        0.14         1.12
## 1820     0.24     0.30        0.02         1.12
## 1821     0.37     0.02        0.10         1.12
## 1822     0.33     0.28        0.15         1.12
## 1823     0.37     0.10        0.16         1.12
## 1824     0.20     0.01        0.08         1.12
## 1825     0.40     0.00        0.10         1.12
## 1826     0.00     0.01        0.08         1.12
## 1827     0.40     0.00        0.05         1.12
## 1828     0.06     0.63        0.02         1.12
## 1829     0.30     0.00        0.54         1.12
## 1830     1.12     0.00        0.00         1.12
## 1831     0.26     0.00        0.04         1.12
## 1832     0.23     0.00        0.04         1.11
## 1833     0.58     0.04        0.17         1.11
## 1834     0.37     0.00        0.11         1.11
## 1835     0.57     0.03        0.20         1.11
## 1836     0.04     0.00        0.15         1.11
## 1837     0.40     0.00        0.08         1.11
## 1838     0.06     0.00        0.35         1.11
## 1839     0.38     0.00        0.05         1.11
## 1840     0.07     0.70        0.01         1.11
## 1841     0.00     1.10        0.01         1.11
## 1842     0.14     0.00        0.03         1.11
## 1843     0.46     0.00        0.12         1.11
## 1844     0.31     0.29        0.06         1.11
## 1845     0.13     0.73        0.07         1.11
## 1846     0.35     0.00        0.23         1.11
## 1847     0.42     0.00        0.17         1.11
## 1848     0.40     0.00        0.17         1.10
## 1849     0.06     0.00        0.01         1.10
## 1850     0.53     0.01        0.12         1.10
## 1851     0.33     0.17        0.08         1.10
## 1852     0.06     0.00        0.01         1.10
## 1853     0.42     0.00        0.07         1.10
## 1854     0.53     0.00        0.21         1.10
## 1855     0.52     0.00        0.12         1.10
## 1856     0.46     0.01        0.18         1.10
## 1857     0.00     1.10        0.00         1.10
## 1858     0.00     1.10        0.00         1.10
## 1859     0.00     1.10        0.00         1.10
## 1860     0.00     1.10        0.00         1.10
## 1861     0.33     0.29        0.03         1.10
## 1862     0.12     0.45        0.02         1.10
## 1863     0.09     0.00        0.09         1.10
## 1864     0.40     0.04        0.13         1.10
## 1865     0.75     0.00        0.23         1.10
## 1866     0.84     0.00        0.25         1.10
## 1867     0.21     0.31        0.04         1.10
## 1868     0.33     0.01        0.22         1.10
## 1869     0.10     0.72        0.02         1.10
## 1870     0.22     0.45        0.12         1.10
## 1871     0.41     0.00        0.25         1.09
## 1872     0.36     0.00        0.10         1.09
## 1873     0.55     0.00        0.31         1.09
## 1874     0.04     0.84        0.16         1.09
## 1875     0.17     0.01        0.09         1.09
## 1876     0.29     0.00        0.02         1.09
## 1877     0.52     0.08        0.20         1.09
## 1878     0.05     0.00        0.02         1.09
## 1879     0.00     1.07        0.02         1.09
## 1880     0.18     0.00        0.16         1.09
## 1881     0.04     0.00        0.08         1.09
## 1882     0.02     0.00        0.05         1.09
## 1883     0.97     0.00        0.11         1.09
## 1884     0.03     0.01        0.15         1.09
## 1885     0.37     0.00        0.11         1.09
## 1886     0.42     0.00        0.14         1.09
## 1887     0.00     1.02        0.07         1.09
## 1888     0.28     0.04        0.13         1.09
## 1889     0.54     0.00        0.11         1.09
## 1890     0.52     0.00        0.22         1.09
## 1891     0.47     0.09        0.09         1.09
## 1892     0.41     0.00        0.07         1.09
## 1893     0.26     0.00        0.09         1.09
## 1894     0.41     0.00        0.14         1.08
## 1895     0.41     0.03        0.18         1.08
## 1896     0.41     0.00        0.14         1.08
## 1897     0.64     0.00        0.08         1.08
## 1898     0.12     0.00        0.09         1.08
## 1899     0.41     0.00        0.14         1.08
## 1900     0.43     0.00        0.11         1.08
## 1901     0.32     0.20        0.09         1.08
## 1902     0.00     0.00        0.06         1.08
## 1903     0.50     0.03        0.28         1.08
## 1904     0.69     0.00        0.12         1.08
## 1905     0.59     0.00        0.22         1.08
## 1906     0.06     0.00        0.01         1.08
## 1907     0.43     0.01        0.11         1.08
## 1908     0.34     0.00        0.10         1.08
## 1909     0.59     0.01        0.21         1.08
## 1910     0.40     0.13        0.08         1.08
## 1911     0.30     0.00        0.11         1.08
## 1912     0.41     0.00        0.07         1.08
## 1913     0.29     0.00        0.02         1.08
## 1914     0.29     0.00        0.02         1.08
## 1915     0.18     0.19        0.03         1.08
## 1916     0.35     0.09        0.16         1.08
## 1917     0.18     0.03        0.07         1.08
## 1918     0.00     0.00        0.06         1.07
## 1919     0.00     1.00        0.07         1.07
## 1920     0.03     0.00        0.15         1.07
## 1921     0.32     0.00        0.10         1.07
## 1922     0.39     0.02        0.09         1.07
## 1923     0.40     0.03        0.11         1.07
## 1924     0.12     0.77        0.02         1.07
## 1925     0.98     0.00        0.09         1.07
## 1926     0.01     0.00        0.54         1.07
## 1927     0.90     0.04        0.05         1.07
## 1928     0.06     0.21        0.07         1.07
## 1929     0.40     0.00        0.07         1.07
## 1930     0.15     0.13        0.05         1.07
## 1931     0.44     0.00        0.20         1.07
## 1932     0.64     0.05        0.25         1.07
## 1933     0.63     0.00        0.34         1.07
## 1934     0.30     0.00        0.10         1.07
## 1935     0.12     0.71        0.07         1.07
## 1936     0.42     0.00        0.10         1.07
## 1937     0.40     0.00        0.07         1.07
## 1938     0.40     0.00        0.07         1.06
## 1939     0.04     0.00        0.14         1.06
## 1940     0.40     0.00        0.11         1.06
## 1941     0.41     0.00        0.14         1.06
## 1942     0.74     0.00        0.10         1.06
## 1943     0.29     0.01        0.10         1.06
## 1944     0.67     0.00        0.23         1.06
## 1945     0.02     0.01        0.08         1.06
## 1946     0.00     0.99        0.07         1.06
## 1947     0.65     0.00        0.13         1.06
## 1948     0.41     0.00        0.14         1.06
## 1949     0.50     0.05        0.19         1.06
## 1950     0.30     0.01        0.10         1.06
## 1951     0.81     0.00        0.08         1.06
## 1952     0.41     0.00        0.14         1.06
## 1953     0.44     0.00        0.18         1.06
## 1954     0.04     0.00        0.01         1.06
## 1955     0.05     0.00        0.01         1.06
## 1956     0.40     0.00        0.11         1.06
## 1957     0.01     0.00        0.08         1.06
## 1958     0.02     0.00        0.00         1.06
## 1959     0.41     0.10        0.16         1.06
## 1960     0.28     0.00        0.02         1.06
## 1961     0.59     0.03        0.22         1.06
## 1962     0.40     0.00        0.14         1.06
## 1963     0.39     0.00        0.17         1.06
## 1964     0.06     0.64        0.04         1.06
## 1965     0.38     0.00        0.09         1.05
## 1966     0.05     0.00        0.01         1.05
## 1967     0.11     0.00        0.13         1.05
## 1968     0.54     0.00        0.08         1.05
## 1969     0.47     0.00        0.18         1.05
## 1970     0.05     0.00        0.01         1.05
## 1971     0.66     0.00        0.12         1.05
## 1972     0.00     1.05        0.00         1.05
## 1973     0.00     0.92        0.13         1.05
## 1974     0.00     1.05        0.00         1.05
## 1975     0.00     1.04        0.01         1.05
## 1976     0.34     0.03        0.13         1.05
## 1977     0.40     0.00        0.13         1.05
## 1978     0.48     0.12        0.15         1.05
## 1979     0.26     0.00        0.01         1.05
## 1980     0.11     0.00        0.03         1.05
## 1981     0.49     0.00        0.11         1.05
## 1982     0.38     0.01        0.11         1.05
## 1983     0.51     0.00        0.02         1.05
## 1984     0.49     0.00        0.11         1.05
## 1985     0.32     0.00        0.10         1.05
## 1986     0.13     0.66        0.07         1.05
## 1987     0.06     0.37        0.04         1.05
## 1988     0.40     0.00        0.11         1.05
## 1989     0.47     0.00        0.11         1.04
## 1990     0.40     0.00        0.13         1.04
## 1991     0.00     0.00        0.00         0.01
## 1992     0.37     0.26        0.09         1.04
## 1993     0.37     0.00        0.09         1.04
## 1994     0.06     0.83        0.07         1.04
## 1995     0.39     0.00        0.07         1.04
## 1996     0.35     0.02        0.10         1.04
## 1997     0.30     0.22        0.07         1.04
## 1998     0.12     0.45        0.03         1.04
## 1999     0.03     0.00        0.14         1.04
## 2000     0.35     0.01        0.09         1.04
## 2001     0.16     0.37        0.12         1.04
## 2002     0.20     0.31        0.03         1.04
## 2003     0.10     0.00        0.03         1.04
## 2004     0.33     0.00        0.09         1.04
## 2005     0.69     0.02        0.15         1.04
## 2006     0.46     0.00        0.05         1.04
## 2007     0.06     0.41        0.05         1.04
## 2008     0.34     0.00        0.09         1.04
## 2009     0.27     0.00        0.09         1.04
## 2010     0.48     0.02        0.19         1.04
## 2011     0.58     0.00        0.30         1.04
## 2012     0.34     0.00        0.22         1.04
## 2013     0.40     0.01        0.17         1.04
## 2014     0.03     0.00        0.14         1.03
## 2015     0.33     0.01        0.14         1.03
## 2016     0.02     0.00        0.08         1.03
## 2017     0.51     0.01        0.18         1.03
## 2018     0.23     0.00        0.08         1.03
## 2019     0.39     0.00        0.13         1.03
## 2020     0.00     0.01        0.00         0.01
## 2021     0.00     0.85        0.00         1.03
## 2022     0.47     0.00        0.11         1.03
## 2023     0.07     0.00        0.00         1.03
## 2024     0.01     0.00        0.08         1.03
## 2025     0.12     0.51        0.02         1.03
## 2026     0.32     0.01        0.08         1.02
## 2027     0.59     0.01        0.11         1.02
## 2028     0.46     0.00        0.11         1.02
## 2029     0.05     0.02        0.08         1.02
## 2030     0.36     0.05        0.08         1.02
## 2031     0.26     0.01        0.03         1.02
## 2032     0.40     0.00        0.11         1.02
## 2033     0.21     0.45        0.08         1.02
## 2034     0.12     0.49        0.02         1.02
## 2035     0.40     0.00        0.11         1.02
## 2036     0.39     0.00        0.07         1.02
## 2037     0.04     0.22        0.06         1.02
## 2038     0.03     0.00        0.03         1.02
## 2039     0.40     0.00        0.17         1.02
## 2040     0.39     0.00        0.13         1.02
## 2041     0.38     0.00        0.07         1.01
## 2042     0.28     0.10        0.30         1.01
## 2043     0.35     0.02        0.10         1.01
## 2044     0.36     0.03        0.21         1.01
## 2045     0.46     0.01        0.09         1.01
## 2046     0.22     0.05        0.10         1.01
## 2047     0.12     0.00        0.02         1.01
## 2048     0.93     0.00        0.08         1.01
## 2049     0.44     0.00        0.09         1.01
## 2050     0.00     1.01        0.00         1.01
## 2051     0.08     0.74        0.07         1.01
## 2052     0.48     0.02        0.18         1.01
## 2053     0.53     0.00        0.20         1.01
## 2054     0.61     0.00        0.18         1.01
## 2055     0.00     0.00        0.07         1.00
## 2056     0.38     0.00        0.13         1.00
## 2057     0.19     0.46        0.07         1.00
## 2058     0.76     0.03        0.09         1.00
## 2059     0.24     0.38        0.08         1.00
## 2060     0.14     0.21        0.00         1.00
## 2061     0.15     0.19        0.01         1.00
## 2062     0.10     0.47        0.02         1.00
## 2063     0.25     0.09        0.03         1.00
## 2064     0.00     1.00        0.00         1.00
## 2065     0.18     0.03        0.00         1.00
## 2066     0.33     0.02        0.15         1.00
## 2067     0.21     0.00        0.07         1.00
## 2068     0.90     0.02        0.00         1.00
## 2069     0.38     0.00        0.07         1.00
## 2070     0.38     0.00        0.07         1.00
## 2071     0.49     0.04        0.22         1.00
## 2072     0.38     0.00        0.07         1.00
## 2073     0.10     0.74        0.03         1.00
## 2074     0.04     0.01        0.08         1.00
## 2075     0.27     0.05        0.15         1.00
## 2076     0.38     0.00        0.17         1.00
## 2077     0.04     0.00        0.06         1.00
## 2078     0.35     0.00        0.16         1.00
## 2079     0.28     0.00        0.08         1.00
## 2080     0.78     0.00        0.04         1.00
## 2081     0.38     0.00        0.07         1.00
## 2082     0.28     0.00        0.08         0.99
## 2083     0.07     0.39        0.05         0.99
## 2084     0.21     0.00        0.04         0.99
## 2085     0.20     0.00        0.03         0.99
## 2086     0.31     0.00        0.10         0.99
## 2087     0.39     0.00        0.09         0.99
## 2088     0.34     0.01        0.08         0.99
## 2089     0.31     0.12        0.19         0.99
## 2090     0.00     0.00        0.06         0.99
## 2091     0.46     0.00        0.17         0.99
## 2092     0.30     0.00        0.09         0.99
## 2093     0.30     0.00        0.09         0.99
## 2094     0.38     0.00        0.06         0.99
## 2095     0.52     0.04        0.09         0.99
## 2096     0.05     0.00        0.07         0.99
## 2097     0.28     0.00        0.19         0.99
## 2098     0.23     0.38        0.08         0.99
## 2099     0.15     0.00        0.11         0.99
## 2100     0.50     0.00        0.11         0.99
## 2101     0.65     0.00        0.11         0.99
## 2102     0.20     0.00        0.03         0.99
## 2103     0.80     0.00        0.18         0.99
## 2104     0.88     0.00        0.08         0.99
## 2105     0.05     0.00        0.08         0.98
## 2106     0.53     0.19        0.25         0.98
## 2107     0.62     0.00        0.14         0.98
## 2108     0.26     0.16        0.08         0.98
## 2109     0.19     0.00        0.07         0.98
## 2110     0.19     0.28        0.02         0.98
## 2111     0.46     0.00        0.17         0.98
## 2112     0.13     0.21        0.02         0.98
## 2113     0.04     0.00        0.01         0.98
## 2114     0.00     0.00        0.00         0.01
## 2115     0.00     0.01        0.00         0.01
## 2116     0.10     0.27        0.05         0.98
## 2117     0.38     0.00        0.17         0.98
## 2118     0.54     0.01        0.18         0.98
## 2119     0.39     0.06        0.15         0.98
## 2120     0.44     0.00        0.08         0.98
## 2121     0.92     0.00        0.05         0.98
## 2122     0.41     0.06        0.18         0.98
## 2123     0.43     0.51        0.01         0.98
## 2124     0.05     0.00        0.10         0.98
## 2125     0.00     0.00        0.10         0.98
## 2126     0.27     0.00        0.09         0.98
## 2127     0.02     0.86        0.01         0.98
## 2128     0.32     0.15        0.14         0.97
## 2129     0.01     0.00        0.08         0.97
## 2130     0.37     0.00        0.10         0.97
## 2131     0.21     0.00        0.03         0.97
## 2132     0.44     0.00        0.13         0.97
## 2133     0.02     0.00        0.08         0.97
## 2134     0.18     0.29        0.01         0.97
## 2135     0.00     0.00        0.00         0.01
## 2136     0.35     0.00        0.10         0.97
## 2137     0.33     0.00        0.08         0.97
## 2138     0.37     0.00        0.12         0.97
## 2139     0.03     0.03        0.13         0.97
## 2140     0.10     0.00        0.10         0.97
## 2141     0.60     0.00        0.04         0.97
## 2142     0.37     0.00        0.08         0.97
## 2143     0.00     0.97        0.00         0.97
## 2144     0.05     0.00        0.01         0.97
## 2145     0.19     0.00        0.03         0.97
## 2146     0.45     0.00        0.16         0.97
## 2147     0.31     0.28        0.16         0.97
## 2148     0.37     0.00        0.06         0.97
## 2149     0.07     0.00        0.07         0.96
## 2150     0.25     0.26        0.07         0.96
## 2151     0.36     0.00        0.06         0.96
## 2152     0.28     0.04        0.14         0.96
## 2153     0.00     0.90        0.06         0.96
## 2154     0.17     0.00        0.07         0.96
## 2155     0.00     0.96        0.00         0.96
## 2156     0.49     0.00        0.10         0.96
## 2157     0.44     0.00        0.22         0.96
## 2158     0.22     0.00        0.02         0.96
## 2159     0.06     0.57        0.01         0.96
## 2160     0.33     0.00        0.09         0.96
## 2161     0.34     0.20        0.13         0.96
## 2162     0.37     0.00        0.12         0.96
## 2163     0.00     0.96        0.00         0.96
## 2164     0.54     0.00        0.11         0.96
## 2165     0.33     0.09        0.12         0.96
## 2166     0.00     0.53        0.03         0.96
## 2167     0.28     0.22        0.09         0.96
## 2168     0.15     0.00        0.04         0.96
## 2169     0.56     0.00        0.15         0.96
## 2170     0.36     0.13        0.07         0.96
## 2171     0.33     0.15        0.15         0.96
## 2172     0.40     0.00        0.08         0.95
## 2173     0.04     0.00        0.04         0.95
## 2174     0.00     0.00        0.00         0.01
## 2175     0.03     0.00        0.13         0.95
## 2176     0.45     0.00        0.14         0.95
## 2177     0.19     0.00        0.03         0.95
## 2178     0.30     0.00        0.08         0.95
## 2179     0.22     0.00        0.09         0.95
## 2180     0.51     0.00        0.17         0.95
## 2181     0.39     0.00        0.10         0.95
## 2182     0.17     0.46        0.06         0.95
## 2183     0.21     0.41        0.07         0.95
## 2184     0.25     0.00        0.02         0.95
## 2185     0.36     0.00        0.06         0.95
## 2186     0.28     0.00        0.13         0.95
## 2187     0.40     0.00        0.16         0.95
## 2188     0.43     0.00        0.10         0.95
## 2189     0.41     0.05        0.15         0.95
## 2190     0.31     0.01        0.13         0.95
## 2191     0.24     0.00        0.08         0.95
## 2192     0.17     0.00        0.08         0.95
## 2193     0.38     0.00        0.08         0.95
## 2194     0.43     0.18        0.09         0.95
## 2195     0.03     0.00        0.13         0.94
## 2196     0.50     0.00        0.17         0.94
## 2197     0.71     0.01        0.21         0.94
## 2198     0.27     0.13        0.07         0.94
## 2199     0.19     0.00        0.03         0.94
## 2200     0.17     0.00        0.08         0.94
## 2201     0.36     0.00        0.06         0.94
## 2202     0.04     0.00        0.07         0.94
## 2203     0.53     0.00        0.13         0.94
## 2204     0.36     0.00        0.12         0.94
## 2205     0.29     0.33        0.05         0.94
## 2206     0.36     0.02        0.08         0.94
## 2207     0.26     0.09        0.08         0.94
## 2208     0.03     0.00        0.13         0.94
## 2209     0.20     0.00        0.03         0.94
## 2210     0.07     0.71        0.06         0.94
## 2211     0.00     0.00        0.07         0.94
## 2212     0.35     0.00        0.06         0.94
## 2213     0.30     0.08        0.08         0.94
## 2214     0.03     0.04        0.12         0.94
## 2215     0.33     0.00        0.04         0.94
## 2216     0.06     0.63        0.05         0.94
## 2217     0.36     0.00        0.12         0.94
## 2218     0.03     0.00        0.13         0.94
## 2219     0.36     0.00        0.12         0.93
## 2220     0.45     0.02        0.10         0.93
## 2221     0.09     0.00        0.06         0.93
## 2222     0.58     0.00        0.20         0.93
## 2223     0.25     0.00        0.02         0.93
## 2224     0.30     0.00        0.04         0.93
## 2225     0.41     0.00        0.11         0.93
## 2226     0.52     0.02        0.11         0.93
## 2227     0.16     0.36        0.08         0.93
## 2228     0.42     0.02        0.14         0.93
## 2229     0.32     0.02        0.10         0.93
## 2230     0.44     0.00        0.15         0.93
## 2231     0.01     0.00        0.07         0.93
## 2232     0.25     0.00        0.02         0.93
## 2233     0.05     0.00        0.01         0.93
## 2234     0.09     0.32        0.01         0.93
## 2235     0.06     0.42        0.00         0.93
## 2236     0.20     0.00        0.01         0.93
## 2237     0.25     0.00        0.02         0.93
## 2238     0.03     0.00        0.13         0.93
## 2239     0.31     0.00        0.08         0.93
## 2240     0.19     0.00        0.03         0.93
## 2241     0.34     0.00        0.15         0.93
## 2242     0.00     0.93        0.00         0.93
## 2243     0.22     0.16        0.07         0.93
## 2244     0.35     0.00        0.06         0.93
## 2245     0.35     0.00        0.12         0.92
## 2246     0.35     0.00        0.12         0.92
## 2247     0.33     0.21        0.08         0.92
## 2248     0.35     0.00        0.06         0.92
## 2249     0.00     0.00        0.06         0.92
## 2250     0.35     0.00        0.06         0.92
## 2251     0.65     0.00        0.10         0.92
## 2252     0.28     0.00        0.12         0.92
## 2253     0.21     0.00        0.16         0.92
## 2254     0.26     0.00        0.08         0.92
## 2255     0.20     0.02        0.07         0.92
## 2256     0.00     0.00        0.05         0.92
## 2257     0.35     0.00        0.06         0.92
## 2258     0.32     0.00        0.09         0.92
## 2259     0.27     0.00        0.02         0.92
## 2260     0.09     0.43        0.01         0.92
## 2261     0.83     0.00        0.08         0.92
## 2262     0.20     0.53        0.03         0.92
## 2263     0.33     0.01        0.08         0.92
## 2264     0.39     0.00        0.15         0.92
## 2265     0.14     0.46        0.06         0.92
## 2266     0.39     0.12        0.14         0.92
## 2267     0.00     0.00        0.06         0.92
## 2268     0.18     0.00        0.03         0.92
## 2269     0.35     0.00        0.12         0.92
## 2270     0.08     0.66        0.06         0.92
## 2271     0.27     0.11        0.09         0.92
## 2272     0.08     0.00        0.17         0.92
## 2273     0.46     0.05        0.17         0.92
## 2274     0.40     0.04        0.15         0.91
## 2275     0.00     0.00        0.07         0.91
## 2276     0.35     0.00        0.12         0.91
## 2277     0.43     0.00        0.16         0.91
## 2278     0.17     0.29        0.05         0.91
## 2279     0.24     0.01        0.09         0.91
## 2280     0.35     0.00        0.12         0.91
## 2281     0.27     0.21        0.09         0.91
## 2282     0.30     0.00        0.13         0.91
## 2283     0.80     0.02        0.07         0.91
## 2284     0.17     0.00        0.01         0.91
## 2285     0.26     0.00        0.12         0.91
## 2286     0.38     0.00        0.08         0.91
## 2287     0.00     0.00        0.00         0.01
## 2288     0.15     0.00        0.08         0.91
## 2289     0.26     0.00        0.08         0.91
## 2290     0.00     0.91        0.00         0.91
## 2291     0.26     0.00        0.04         0.91
## 2292     0.34     0.00        0.14         0.91
## 2293     0.28     0.00        0.07         0.91
## 2294     0.37     0.00        0.15         0.91
## 2295     0.35     0.00        0.12         0.90
## 2296     0.00     0.00        0.00         0.01
## 2297     0.00     0.90        0.00         0.90
## 2298     0.35     0.00        0.12         0.90
## 2299     0.12     0.04        0.08         0.90
## 2300     0.03     0.00        0.12         0.90
## 2301     0.48     0.00        0.14         0.90
## 2302     0.29     0.15        0.08         0.90
## 2303     0.34     0.00        0.06         0.90
## 2304     0.49     0.00        0.10         0.90
## 2305     0.43     0.03        0.18         0.90
## 2306     0.34     0.00        0.06         0.90
## 2307     0.13     0.55        0.05         0.90
## 2308     0.43     0.01        0.05         0.90
## 2309     0.36     0.05        0.22         0.90
## 2310     0.26     0.00        0.12         0.90
## 2311     0.29     0.00        0.09         0.90
## 2312     0.05     0.00        0.01         0.90
## 2313     0.03     0.01        0.12         0.90
## 2314     0.22     0.00        0.03         0.90
## 2315     0.37     0.01        0.10         0.90
## 2316     0.48     0.00        0.09         0.90
## 2317     0.33     0.00        0.14         0.90
## 2318     0.52     0.00        0.09         0.90
## 2319     0.00     0.00        0.06         0.90
## 2320     0.32     0.01        0.15         0.90
## 2321     0.24     0.00        0.04         0.90
## 2322     0.05     0.00        0.04         0.90
## 2323     0.34     0.00        0.11         0.90
## 2324     0.10     0.00        0.06         0.90
## 2325     0.24     0.00        0.03         0.89
## 2326     0.38     0.01        0.16         0.89
## 2327     0.28     0.00        0.18         0.89
## 2328     0.01     0.00        0.07         0.89
## 2329     0.03     0.00        0.12         0.89
## 2330     0.42     0.01        0.14         0.89
## 2331     0.22     0.05        0.02         0.89
## 2332     0.29     0.01        0.09         0.89
## 2333     0.03     0.00        0.12         0.89
## 2334     0.17     0.24        0.02         0.89
## 2335     0.19     0.00        0.10         0.89
## 2336     0.16     0.30        0.02         0.89
## 2337     0.00     0.89        0.00         0.89
## 2338     0.18     0.00        0.02         0.89
## 2339     0.43     0.00        0.10         0.89
## 2340     0.11     0.56        0.06         0.89
## 2341     0.63     0.00        0.11         0.89
## 2342     0.34     0.00        0.11         0.89
## 2343     0.47     0.00        0.14         0.89
## 2344     0.13     0.46        0.08         0.89
## 2345     0.36     0.04        0.07         0.89
## 2346     0.59     0.01        0.10         0.89
## 2347     0.00     0.01        0.07         0.89
## 2348     0.79     0.00        0.09         0.89
## 2349     0.24     0.21        0.06         0.89
## 2350     0.25     0.01        0.07         0.89
## 2351     0.21     0.00        0.08         0.89
## 2352     0.34     0.00        0.06         0.89
## 2353     0.68     0.00        0.20         0.89
## 2354     0.00     0.89        0.00         0.89
## 2355     0.30     0.09        0.06         0.88
## 2356     0.36     0.00        0.08         0.88
## 2357     0.41     0.01        0.08         0.88
## 2358     0.79     0.00        0.08         0.88
## 2359     0.82     0.00        0.06         0.88
## 2360     0.20     0.00        0.07         0.88
## 2361     0.21     0.00        0.08         0.88
## 2362     0.10     0.00        0.06         0.88
## 2363     0.22     0.30        0.05         0.88
## 2364     0.34     0.00        0.11         0.88
## 2365     0.06     0.00        0.50         0.88
## 2366     0.22     0.12        0.07         0.88
## 2367     0.33     0.00        0.06         0.88
## 2368     0.38     0.00        0.07         0.88
## 2369     0.26     0.12        0.17         0.88
## 2370     0.28     0.01        0.08         0.88
## 2371     0.33     0.13        0.14         0.88
## 2372     0.33     0.00        0.11         0.88
## 2373     0.44     0.01        0.09         0.88
## 2374     0.11     0.62        0.06         0.88
## 2375     0.19     0.00        0.03         0.87
## 2376     0.33     0.00        0.06         0.87
## 2377     0.33     0.00        0.06         0.87
## 2378     0.11     0.00        0.06         0.87
## 2379     0.40     0.00        0.09         0.87
## 2380     0.00     0.87        0.00         0.87
## 2381     0.11     0.00        0.06         0.87
## 2382     0.29     0.01        0.09         0.87
## 2383     0.24     0.00        0.03         0.87
## 2384     0.40     0.02        0.16         0.87
## 2385     0.29     0.09        0.06         0.87
## 2386     0.03     0.00        0.12         0.87
## 2387     0.19     0.00        0.07         0.87
## 2388     0.00     0.00        0.06         0.87
## 2389     0.30     0.09        0.11         0.87
## 2390     0.33     0.00        0.06         0.87
## 2391     0.54     0.01        0.18         0.87
## 2392     0.31     0.02        0.09         0.87
## 2393     0.03     0.00        0.12         0.87
## 2394     0.29     0.00        0.12         0.87
## 2395     0.33     0.00        0.06         0.87
## 2396     0.44     0.00        0.23         0.87
## 2397     0.31     0.00        0.09         0.87
## 2398     0.03     0.00        0.12         0.87
## 2399     0.20     0.00        0.08         0.87
## 2400     0.17     0.00        0.07         0.87
## 2401     0.37     0.00        0.02         0.87
## 2402     0.33     0.00        0.11         0.87
## 2403     0.20     0.30        0.06         0.87
## 2404     0.52     0.00        0.23         0.87
## 2405     0.09     0.64        0.03         0.87
## 2406     0.32     0.00        0.08         0.87
## 2407     0.05     0.00        0.01         0.87
## 2408     0.15     0.45        0.07         0.87
## 2409     0.59     0.00        0.18         0.87
## 2410     0.00     0.86        0.00         0.86
## 2411     0.63     0.00        0.11         0.86
## 2412     0.72     0.12        0.01         0.86
## 2413     0.37     0.01        0.14         0.86
## 2414     0.37     0.00        0.15         0.86
## 2415     0.06     0.21        0.05         0.86
## 2416     0.01     0.00        0.00         0.01
## 2417     0.33     0.00        0.11         0.86
## 2418     0.00     0.86        0.00         0.86
## 2419     0.33     0.00        0.06         0.86
## 2420     0.04     0.00        0.01         0.86
## 2421     0.32     0.00        0.06         0.86
## 2422     0.34     0.18        0.12         0.86
## 2423     0.00     0.00        0.00         0.02
## 2424     0.00     0.20        0.05         0.86
## 2425     0.43     0.02        0.09         0.86
## 2426     0.13     0.51        0.04         0.86
## 2427     0.16     0.08        0.10         0.86
## 2428     0.43     0.00        0.07         0.85
## 2429     0.26     0.01        0.12         0.85
## 2430     0.65     0.00        0.11         0.85
## 2431     0.32     0.00        0.06         0.85
## 2432     0.31     0.00        0.08         0.85
## 2433     0.01     0.00        0.07         0.85
## 2434     0.00     0.00        0.07         0.85
## 2435     0.32     0.00        0.07         0.85
## 2436     0.09     0.57        0.06         0.85
## 2437     0.18     0.00        0.03         0.85
## 2438     0.27     0.01        0.12         0.85
## 2439     0.04     0.00        0.06         0.85
## 2440     0.07     0.37        0.01         0.85
## 2441     0.47     0.00        0.10         0.85
## 2442     0.32     0.00        0.06         0.85
## 2443     0.06     0.00        0.09         0.85
## 2444     0.35     0.00        0.14         0.85
## 2445     0.25     0.00        0.08         0.85
## 2446     0.00     0.00        0.53         0.85
## 2447     0.32     0.00        0.06         0.85
## 2448     0.32     0.00        0.11         0.85
## 2449     0.10     0.44        0.04         0.85
## 2450     0.25     0.20        0.08         0.85
## 2451     0.25     0.00        0.07         0.85
## 2452     0.29     0.02        0.07         0.85
## 2453     0.37     0.03        0.16         0.84
## 2454     0.17     0.00        0.02         0.84
## 2455     0.11     0.13        0.05         0.84
## 2456     0.34     0.00        0.13         0.84
## 2457     0.21     0.11        0.10         0.84
## 2458     0.00     0.00        0.16         0.84
## 2459     0.01     0.01        0.07         0.84
## 2460     0.28     0.14        0.06         0.84
## 2461     0.30     0.00        0.09         0.84
## 2462     0.17     0.00        0.02         0.84
## 2463     0.00     0.00        0.06         0.84
## 2464     0.27     0.05        0.12         0.84
## 2465     0.32     0.00        0.11         0.84
## 2466     0.03     0.06        0.06         0.84
## 2467     0.00     0.52        0.00         0.84
## 2468     0.22     0.10        0.10         0.84
## 2469     0.32     0.00        0.05         0.84
## 2470     0.25     0.00        0.07         0.84
## 2471     0.32     0.00        0.11         0.84
## 2472     0.32     0.03        0.14         0.84
## 2473     0.16     0.39        0.05         0.84
## 2474     0.32     0.00        0.11         0.84
## 2475     0.22     0.00        0.01         0.84
## 2476     0.48     0.04        0.19         0.84
## 2477     0.33     0.05        0.14         0.84
## 2478     0.00     0.00        0.74         0.84
## 2479     0.38     0.01        0.08         0.84
## 2480     0.32     0.00        0.05         0.84
## 2481     0.31     0.00        0.08         0.83
## 2482     0.15     0.40        0.05         0.83
## 2483     0.19     0.34        0.06         0.83
## 2484     0.37     0.00        0.09         0.83
## 2485     0.00     0.02        0.00         0.02
## 2486     0.22     0.00        0.01         0.83
## 2487     0.21     0.01        0.19         0.83
## 2488     0.21     0.28        0.07         0.83
## 2489     0.18     0.01        0.03         0.83
## 2490     0.20     0.00        0.06         0.83
## 2491     0.00     0.83        0.00         0.83
## 2492     0.31     0.00        0.05         0.83
## 2493     0.26     0.12        0.05         0.83
## 2494     0.00     0.00        0.05         0.83
## 2495     0.03     0.00        0.11         0.83
## 2496     0.00     0.00        0.06         0.83
## 2497     0.17     0.00        0.07         0.83
## 2498     0.00     0.02        0.00         0.02
## 2499     0.00     0.00        0.06         0.83
## 2500     0.37     0.00        0.14         0.83
## 2501     0.20     0.11        0.09         0.83
## 2502     0.31     0.00        0.05         0.83
## 2503     0.31     0.00        0.05         0.83
## 2504     0.34     0.09        0.07         0.82
## 2505     0.22     0.00        0.03         0.82
## 2506     0.02     0.00        0.09         0.82
## 2507     0.21     0.00        0.15         0.82
## 2508     0.17     0.00        0.02         0.82
## 2509     0.03     0.00        0.11         0.82
## 2510     0.30     0.00        0.08         0.82
## 2511     0.12     0.00        0.06         0.82
## 2512     0.26     0.08        0.13         0.82
## 2513     0.11     0.00        0.03         0.82
## 2514     0.10     0.28        0.02         0.82
## 2515     0.19     0.00        0.01         0.82
## 2516     0.11     0.00        0.02         0.82
## 2517     0.05     0.00        0.01         0.82
## 2518     0.41     0.00        0.22         0.82
## 2519     0.28     0.19        0.12         0.82
## 2520     0.19     0.14        0.06         0.82
## 2521     0.31     0.00        0.10         0.82
## 2522     0.35     0.00        0.14         0.82
## 2523     0.28     0.00        0.07         0.82
## 2524     0.11     0.00        0.15         0.82
## 2525     0.33     0.01        0.09         0.82
## 2526     0.33     0.00        0.09         0.82
## 2527     0.04     0.36        0.08         0.82
## 2528     0.40     0.00        0.13         0.82
## 2529     0.00     0.00        0.00         0.02
## 2530     0.13     0.00        0.07         0.82
## 2531     0.07     0.00        0.07         0.82
## 2532     0.00     0.81        0.00         0.81
## 2533     0.03     0.00        0.06         0.81
## 2534     0.31     0.00        0.10         0.81
## 2535     0.00     0.81        0.00         0.81
## 2536     0.25     0.07        0.17         0.81
## 2537     0.04     0.66        0.05         0.81
## 2538     0.00     0.81        0.00         0.81
## 2539     0.31     0.00        0.05         0.81
## 2540     0.00     0.00        0.05         0.81
## 2541     0.16     0.00        0.02         0.81
## 2542     0.00     0.76        0.05         0.81
## 2543     0.35     0.00        0.13         0.81
## 2544     0.05     0.63        0.05         0.81
## 2545     0.00     0.81        0.00         0.81
## 2546     0.58     0.03        0.08         0.81
## 2547     0.12     0.00        0.01         0.81
## 2548     0.08     0.27        0.01         0.81
## 2549     0.31     0.00        0.10         0.81
## 2550     0.35     0.00        0.13         0.81
## 2551     0.00     0.81        0.00         0.81
## 2552     0.40     0.00        0.09         0.81
## 2553     0.26     0.30        0.04         0.81
## 2554     0.31     0.00        0.05         0.81
## 2555     0.30     0.01        0.07         0.81
## 2556     0.00     0.00        0.06         0.81
## 2557     0.21     0.00        0.07         0.81
## 2558     0.00     0.75        0.05         0.81
## 2559     0.27     0.09        0.09         0.81
## 2560     0.03     0.00        0.11         0.81
## 2561     0.21     0.00        0.07         0.81
## 2562     0.00     0.00        0.06         0.80
## 2563     0.25     0.02        0.07         0.80
## 2564     0.33     0.00        0.07         0.80
## 2565     0.30     0.00        0.05         0.80
## 2566     0.02     0.74        0.01         0.80
## 2567     0.16     0.00        0.02         0.80
## 2568     0.50     0.00        0.11         0.80
## 2569     0.30     0.00        0.05         0.80
## 2570     0.31     0.00        0.10         0.80
## 2571     0.39     0.00        0.22         0.80
## 2572     0.30     0.00        0.05         0.80
## 2573     0.37     0.00        0.07         0.80
## 2574     0.33     0.20        0.18         0.80
## 2575     0.25     0.00        0.07         0.80
## 2576     0.35     0.00        0.07         0.80
## 2577     0.35     0.00        0.13         0.80
## 2578     0.19     0.03        0.13         0.80
## 2579     0.29     0.00        0.08         0.80
## 2580     0.46     0.00        0.25         0.80
## 2581     0.28     0.00        0.04         0.80
## 2582     0.24     0.07        0.06         0.80
## 2583     0.28     0.00        0.07         0.80
## 2584     0.32     0.22        0.12         0.80
## 2585     0.01     0.00        0.06         0.80
## 2586     0.00     0.75        0.05         0.80
## 2587     0.00     0.02        0.00         0.02
## 2588     0.09     0.00        0.02         0.80
## 2589     0.19     0.00        0.06         0.80
## 2590     0.22     0.00        0.07         0.80
## 2591     0.22     0.13        0.06         0.80
## 2592     0.00     0.80        0.00         0.80
## 2593     0.00     0.80        0.00         0.80
## 2594     0.36     0.04        0.14         0.80
## 2595     0.24     0.01        0.08         0.79
## 2596     0.30     0.29        0.16         0.79
## 2597     0.04     0.00        0.01         0.79
## 2598     0.02     0.00        0.11         0.79
## 2599     0.25     0.03        0.11         0.79
## 2600     0.34     0.00        0.08         0.79
## 2601     0.00     0.00        0.18         0.79
## 2602     0.00     0.74        0.05         0.79
## 2603     0.03     0.30        0.04         0.79
## 2604     0.16     0.00        0.02         0.79
## 2605     0.00     0.74        0.05         0.79
## 2606     0.51     0.00        0.11         0.79
## 2607     0.30     0.00        0.05         0.79
## 2608     0.25     0.00        0.12         0.79
## 2609     0.11     0.00        0.07         0.79
## 2610     0.15     0.00        0.01         0.79
## 2611     0.07     0.32        0.01         0.79
## 2612     0.20     0.21        0.06         0.79
## 2613     0.03     0.02        0.10         0.79
## 2614     0.22     0.23        0.07         0.79
## 2615     0.00     0.79        0.00         0.79
## 2616     0.21     0.08        0.07         0.79
## 2617     0.27     0.01        0.07         0.79
## 2618     0.02     0.00        0.06         0.79
## 2619     0.03     0.00        0.01         0.79
## 2620     0.52     0.00        0.11         0.79
## 2621     0.30     0.03        0.08         0.79
## 2622     0.19     0.01        0.10         0.79
## 2623     0.03     0.00        0.11         0.79
## 2624     0.49     0.00        0.05         0.79
## 2625     0.32     0.17        0.07         0.79
## 2626     0.27     0.01        0.07         0.79
## 2627     0.20     0.27        0.05         0.79
## 2628     0.48     0.25        0.06         0.78
## 2629     0.05     0.01        0.06         0.78
## 2630     0.04     0.00        0.01         0.78
## 2631     0.56     0.00        0.10         0.78
## 2632     0.21     0.00        0.01         0.78
## 2633     0.04     0.11        0.06         0.78
## 2634     0.77     0.00        0.00         0.78
## 2635     0.30     0.00        0.05         0.78
## 2636     0.00     0.00        0.61         0.78
## 2637     0.30     0.00        0.07         0.78
## 2638     0.00     0.00        0.06         0.78
## 2639     0.69     0.00        0.09         0.78
## 2640     0.30     0.00        0.05         0.78
## 2641     0.00     0.00        0.06         0.78
## 2642     0.29     0.00        0.05         0.78
## 2643     0.30     0.12        0.07         0.78
## 2644     0.42     0.13        0.10         0.78
## 2645     0.43     0.00        0.24         0.78
## 2646     0.24     0.00        0.16         0.78
## 2647     0.19     0.00        0.06         0.78
## 2648     0.15     0.03        0.06         0.78
## 2649     0.02     0.00        0.11         0.78
## 2650     0.33     0.01        0.20         0.78
## 2651     0.29     0.00        0.07         0.78
## 2652     0.00     0.78        0.00         0.78
## 2653     0.05     0.00        0.01         0.78
## 2654     0.16     0.00        0.02         0.78
## 2655     0.36     0.00        0.09         0.78
## 2656     0.29     0.00        0.05         0.78
## 2657     0.35     0.00        0.08         0.78
## 2658     0.40     0.00        0.09         0.77
## 2659     0.23     0.00        0.07         0.77
## 2660     0.02     0.03        0.06         0.77
## 2661     0.05     0.00        0.01         0.77
## 2662     0.29     0.00        0.05         0.77
## 2663     0.29     0.00        0.05         0.77
## 2664     0.05     0.00        0.05         0.77
## 2665     0.04     0.00        0.01         0.77
## 2666     0.32     0.03        0.19         0.77
## 2667     0.31     0.00        0.12         0.77
## 2668     0.14     0.32        0.10         0.77
## 2669     0.02     0.00        0.10         0.77
## 2670     0.04     0.00        0.01         0.77
## 2671     0.29     0.00        0.05         0.77
## 2672     0.19     0.11        0.10         0.77
## 2673     0.04     0.00        0.01         0.77
## 2674     0.22     0.00        0.02         0.77
## 2675     0.00     0.77        0.00         0.77
## 2676     0.20     0.00        0.01         0.77
## 2677     0.10     0.00        0.06         0.77
## 2678     0.27     0.00        0.06         0.77
## 2679     0.00     0.00        0.06         0.77
## 2680     0.29     0.00        0.10         0.77
## 2681     0.29     0.00        0.10         0.77
## 2682     0.14     0.38        0.04         0.77
## 2683     0.17     0.14        0.01         0.77
## 2684     0.29     0.00        0.10         0.77
## 2685     0.08     0.56        0.03         0.77
## 2686     0.29     0.00        0.10         0.76
## 2687     0.04     0.00        0.36         0.76
## 2688     0.12     0.42        0.05         0.76
## 2689     0.40     0.01        0.14         0.76
## 2690     0.47     0.00        0.08         0.76
## 2691     0.37     0.03        0.07         0.76
## 2692     0.38     0.00        0.03         0.76
## 2693     0.02     0.00        0.10         0.76
## 2694     0.29     0.00        0.10         0.76
## 2695     0.11     0.43        0.05         0.76
## 2696     0.18     0.00        0.12         0.76
## 2697     0.00     0.71        0.05         0.76
## 2698     0.24     0.08        0.06         0.76
## 2699     0.24     0.07        0.10         0.76
## 2700     0.32     0.00        0.11         0.76
## 2701     0.01     0.00        0.06         0.76
## 2702     0.43     0.11        0.13         0.76
## 2703     0.39     0.00        0.08         0.76
## 2704     0.26     0.00        0.12         0.76
## 2705     0.00     0.76        0.00         0.76
## 2706     0.16     0.00        0.01         0.76
## 2707     0.00     0.76        0.00         0.76
## 2708     0.03     0.62        0.02         0.76
## 2709     0.29     0.00        0.10         0.76
## 2710     0.29     0.00        0.36         0.76
## 2711     0.04     0.00        0.05         0.76
## 2712     0.31     0.01        0.08         0.76
## 2713     0.48     0.00        0.14         0.76
## 2714     0.12     0.00        0.03         0.76
## 2715     0.15     0.30        0.04         0.76
## 2716     0.20     0.00        0.01         0.76
## 2717     0.46     0.00        0.06         0.76
## 2718     0.24     0.13        0.08         0.76
## 2719     0.38     0.01        0.21         0.76
## 2720     0.32     0.01        0.13         0.76
## 2721     0.20     0.01        0.06         0.76
## 2722     0.02     0.07        0.09         0.76
## 2723     0.29     0.00        0.10         0.76
## 2724     0.39     0.00        0.09         0.76
## 2725     0.44     0.00        0.08         0.76
## 2726     0.38     0.06        0.14         0.76
## 2727     0.09     0.02        0.05         0.76
## 2728     0.00     0.76        0.00         0.76
## 2729     0.53     0.00        0.11         0.76
## 2730     0.21     0.01        0.07         0.75
## 2731     0.03     0.00        0.06         0.75
## 2732     0.00     0.00        0.54         0.75
## 2733     0.21     0.00        0.14         0.75
## 2734     0.24     0.00        0.11         0.75
## 2735     0.21     0.20        0.05         0.75
## 2736     0.39     0.00        0.19         0.75
## 2737     0.19     0.00        0.09         0.75
## 2738     0.22     0.01        0.11         0.75
## 2739     0.17     0.00        0.07         0.75
## 2740     0.21     0.01        0.07         0.75
## 2741     0.28     0.00        0.11         0.75
## 2742     0.29     0.00        0.10         0.75
## 2743     0.11     0.00        0.01         0.75
## 2744     0.26     0.00        0.06         0.75
## 2745     0.24     0.13        0.08         0.75
## 2746     0.28     0.02        0.12         0.75
## 2747     0.19     0.23        0.05         0.75
## 2748     0.00     0.00        0.06         0.75
## 2749     0.29     0.00        0.18         0.75
## 2750     0.24     0.00        0.03         0.75
## 2751     0.18     0.19        0.05         0.75
## 2752     0.32     0.00        0.13         0.75
## 2753     0.26     0.00        0.07         0.75
## 2754     0.31     0.01        0.12         0.75
## 2755     0.17     0.30        0.06         0.75
## 2756     0.02     0.00        0.10         0.75
## 2757     0.28     0.00        0.07         0.75
## 2758     0.22     0.01        0.06         0.75
## 2759     0.43     0.01        0.11         0.75
## 2760     0.16     0.00        0.09         0.75
## 2761     0.37     0.00        0.08         0.75
## 2762     0.14     0.00        0.05         0.75
## 2763     0.16     0.22        0.07         0.74
## 2764     0.00     0.74        0.00         0.74
## 2765     0.28     0.00        0.10         0.74
## 2766     0.22     0.24        0.09         0.74
## 2767     0.28     0.00        0.10         0.74
## 2768     0.19     0.00        0.14         0.74
## 2769     0.30     0.02        0.06         0.74
## 2770     0.27     0.00        0.06         0.74
## 2771     0.01     0.00        0.06         0.74
## 2772     0.30     0.25        0.04         0.74
## 2773     0.16     0.15        0.01         0.74
## 2774     0.32     0.01        0.12         0.74
## 2775     0.35     0.02        0.06         0.74
## 2776     0.37     0.02        0.13         0.74
## 2777     0.00     0.00        0.00         0.02
## 2778     0.00     0.00        0.05         0.74
## 2779     0.10     0.00        0.03         0.74
## 2780     0.45     0.00        0.13         0.74
## 2781     0.20     0.00        0.01         0.74
## 2782     0.28     0.00        0.09         0.74
## 2783     0.30     0.00        0.08         0.74
## 2784     0.28     0.00        0.05         0.74
## 2785     0.25     0.14        0.08         0.74
## 2786     0.12     0.00        0.03         0.74
## 2787     0.00     0.00        0.00         0.02
## 2788     0.41     0.00        0.15         0.74
## 2789     0.38     0.00        0.14         0.74
## 2790     0.12     0.24        0.07         0.74
## 2791     0.11     0.30        0.02         0.74
## 2792     0.01     0.25        0.04         0.74
## 2793     0.16     0.22        0.08         0.73
## 2794     0.05     0.00        0.06         0.73
## 2795     0.09     0.46        0.05         0.73
## 2796     0.00     0.73        0.00         0.73
## 2797     0.15     0.17        0.01         0.73
## 2798     0.41     0.00        0.09         0.73
## 2799     0.00     0.73        0.00         0.73
## 2800     0.17     0.00        0.01         0.73
## 2801     0.51     0.01        0.09         0.73
## 2802     0.04     0.00        0.06         0.73
## 2803     0.00     0.32        0.04         0.73
## 2804     0.28     0.00        0.05         0.73
## 2805     0.00     0.73        0.00         0.73
## 2806     0.16     0.00        0.03         0.73
## 2807     0.04     0.00        0.01         0.73
## 2808     0.07     0.00        0.05         0.73
## 2809     0.34     0.00        0.07         0.73
## 2810     0.01     0.00        0.05         0.73
## 2811     0.41     0.01        0.08         0.73
## 2812     0.00     0.00        0.06         0.73
## 2813     0.00     0.73        0.00         0.73
## 2814     0.16     0.00        0.03         0.73
## 2815     0.02     0.17        0.08         0.73
## 2816     0.19     0.00        0.01         0.73
## 2817     0.14     0.02        0.09         0.73
## 2818     0.32     0.00        0.08         0.73
## 2819     0.28     0.00        0.09         0.73
## 2820     0.15     0.00        0.06         0.73
## 2821     0.31     0.00        0.08         0.73
## 2822     0.28     0.00        0.06         0.72
## 2823     0.02     0.53        0.01         0.72
## 2824     0.15     0.00        0.02         0.72
## 2825     0.36     0.00        0.10         0.72
## 2826     0.30     0.00        0.07         0.72
## 2827     0.19     0.00        0.01         0.72
## 2828     0.02     0.00        0.10         0.72
## 2829     0.46     0.00        0.08         0.72
## 2830     0.00     0.72        0.00         0.72
## 2831     0.22     0.08        0.10         0.72
## 2832     0.00     0.67        0.05         0.72
## 2833     0.27     0.00        0.05         0.72
## 2834     0.02     0.01        0.10         0.72
## 2835     0.17     0.00        0.03         0.72
## 2836     0.02     0.00        0.10         0.72
## 2837     0.27     0.00        0.05         0.72
## 2838     0.00     0.70        0.02         0.72
## 2839     0.30     0.00        0.07         0.72
## 2840     0.00     0.00        0.05         0.72
## 2841     0.27     0.00        0.05         0.72
## 2842     0.31     0.00        0.06         0.72
## 2843     0.28     0.00        0.09         0.72
## 2844     0.04     0.00        0.01         0.72
## 2845     0.38     0.02        0.13         0.72
## 2846     0.31     0.00        0.18         0.72
## 2847     0.04     0.00        0.06         0.72
## 2848     0.19     0.00        0.01         0.72
## 2849     0.39     0.00        0.08         0.72
## 2850     0.00     0.00        0.05         0.72
## 2851     0.19     0.22        0.04         0.72
## 2852     0.04     0.61        0.01         0.72
## 2853     0.15     0.20        0.07         0.72
## 2854     0.27     0.00        0.05         0.72
## 2855     0.50     0.00        0.09         0.72
## 2856     0.69     0.00        0.03         0.72
## 2857     0.53     0.00        0.00         0.71
## 2858     0.24     0.00        0.03         0.71
## 2859     0.02     0.00        0.03         0.71
## 2860     0.01     0.50        0.02         0.71
## 2861     0.00     0.00        0.05         0.71
## 2862     0.23     0.00        0.06         0.71
## 2863     0.13     0.37        0.06         0.71
## 2864     0.27     0.00        0.09         0.71
## 2865     0.40     0.00        0.14         0.71
## 2866     0.15     0.29        0.05         0.71
## 2867     0.08     0.41        0.04         0.71
## 2868     0.27     0.00        0.09         0.71
## 2869     0.07     0.27        0.04         0.71
## 2870     0.04     0.00        0.07         0.71
## 2871     0.14     0.00        0.02         0.71
## 2872     0.27     0.00        0.05         0.71
## 2873     0.20     0.00        0.02         0.71
## 2874     0.27     0.00        0.09         0.71
## 2875     0.00     0.00        0.06         0.71
## 2876     0.25     0.06        0.11         0.71
## 2877     0.13     0.07        0.02         0.71
## 2878     0.22     0.00        0.07         0.71
## 2879     0.00     0.00        0.05         0.71
## 2880     0.14     0.00        0.02         0.71
## 2881     0.19     0.00        0.01         0.71
## 2882     0.27     0.00        0.09         0.71
## 2883     0.00     0.71        0.00         0.71
## 2884     0.18     0.00        0.01         0.71
## 2885     0.13     0.00        0.01         0.71
## 2886     0.09     0.17        0.06         0.71
## 2887     0.37     0.00        0.19         0.71
## 2888     0.00     0.71        0.00         0.71
## 2889     0.05     0.44        0.02         0.71
## 2890     0.60     0.00        0.10         0.71
## 2891     0.10     0.41        0.05         0.71
## 2892     0.31     0.00        0.17         0.71
## 2893     0.27     0.00        0.05         0.71
## 2894     0.27     0.00        0.05         0.71
## 2895     0.26     0.01        0.06         0.71
## 2896     0.23     0.00        0.07         0.71
## 2897     0.15     0.00        0.03         0.71
## 2898     0.00     0.00        0.05         0.71
## 2899     0.14     0.00        0.07         0.71
## 2900     0.29     0.00        0.11         0.71
## 2901     0.21     0.00        0.14         0.71
## 2902     0.39     0.01        0.16         0.71
## 2903     0.50     0.00        0.15         0.70
## 2904     0.10     0.00        0.05         0.70
## 2905     0.14     0.00        0.02         0.70
## 2906     0.18     0.12        0.06         0.70
## 2907     0.00     0.70        0.00         0.70
## 2908     0.27     0.00        0.05         0.70
## 2909     0.31     0.00        0.07         0.70
## 2910     0.16     0.00        0.02         0.70
## 2911     0.00     0.00        0.05         0.70
## 2912     0.27     0.00        0.09         0.70
## 2913     0.10     0.00        0.06         0.70
## 2914     0.14     0.00        0.02         0.70
## 2915     0.19     0.00        0.01         0.70
## 2916     0.27     0.00        0.09         0.70
## 2917     0.27     0.00        0.05         0.70
## 2918     0.19     0.00        0.03         0.70
## 2919     0.30     0.00        0.12         0.70
## 2920     0.25     0.00        0.06         0.70
## 2921     0.25     0.00        0.06         0.70
## 2922     0.36     0.01        0.13         0.70
## 2923     0.03     0.58        0.05         0.70
## 2924     0.19     0.00        0.01         0.70
## 2925     0.25     0.00        0.07         0.70
## 2926     0.20     0.00        0.06         0.70
## 2927     0.01     0.12        0.05         0.70
## 2928     0.27     0.00        0.09         0.70
## 2929     0.26     0.00        0.10         0.70
## 2930     0.40     0.00        0.16         0.70
## 2931     0.26     0.00        0.05         0.70
## 2932     0.27     0.00        0.09         0.70
## 2933     0.13     0.36        0.04         0.70
## 2934     0.18     0.22        0.08         0.70
## 2935     0.27     0.00        0.09         0.70
## 2936     0.26     0.00        0.06         0.70
## 2937     0.00     0.00        0.05         0.70
## 2938     0.14     0.17        0.01         0.70
## 2939     0.00     0.70        0.00         0.70
## 2940     0.18     0.00        0.01         0.70
## 2941     0.04     0.00        0.01         0.69
## 2942     0.26     0.00        0.06         0.69
## 2943     0.31     0.05        0.05         0.69
## 2944     0.21     0.00        0.06         0.69
## 2945     0.01     0.26        0.17         0.69
## 2946     0.17     0.00        0.05         0.69
## 2947     0.10     0.00        0.06         0.69
## 2948     0.00     0.02        0.00         0.02
## 2949     0.26     0.00        0.05         0.69
## 2950     0.13     0.00        0.02         0.69
## 2951     0.33     0.00        0.11         0.69
## 2952     0.02     0.00        0.09         0.69
## 2953     0.00     0.00        0.05         0.69
## 2954     0.33     0.00        0.12         0.69
## 2955     0.18     0.00        0.01         0.69
## 2956     0.00     0.69        0.00         0.69
## 2957     0.00     0.69        0.00         0.69
## 2958     0.14     0.00        0.02         0.69
## 2959     0.26     0.00        0.05         0.69
## 2960     0.09     0.01        0.07         0.69
## 2961     0.20     0.42        0.07         0.69
## 2962     0.38     0.00        0.10         0.69
## 2963     0.14     0.00        0.02         0.69
## 2964     0.36     0.00        0.13         0.69
## 2965     0.14     0.00        0.02         0.69
## 2966     0.61     0.02        0.04         0.69
## 2967     0.08     0.00        0.06         0.69
## 2968     0.20     0.18        0.06         0.69
## 2969     0.35     0.00        0.06         0.69
## 2970     0.32     0.00        0.10         0.69
## 2971     0.26     0.00        0.09         0.68
## 2972     0.18     0.00        0.01         0.68
## 2973     0.23     0.00        0.06         0.68
## 2974     0.00     0.33        0.02         0.68
## 2975     0.03     0.00        0.05         0.68
## 2976     0.26     0.00        0.04         0.68
## 2977     0.13     0.18        0.04         0.68
## 2978     0.04     0.00        0.02         0.68
## 2979     0.25     0.00        0.11         0.68
## 2980     0.36     0.00        0.11         0.68
## 2981     0.29     0.02        0.12         0.68
## 2982     0.02     0.00        0.03         0.68
## 2983     0.26     0.00        0.04         0.68
## 2984     0.33     0.03        0.06         0.68
## 2985     0.14     0.00        0.02         0.68
## 2986     0.02     0.00        0.09         0.68
## 2987     0.11     0.28        0.08         0.68
## 2988     0.30     0.04        0.12         0.68
## 2989     0.00     0.34        0.02         0.68
## 2990     0.11     0.00        0.03         0.68
## 2991     0.33     0.00        0.13         0.68
## 2992     0.23     0.00        0.06         0.68
## 2993     0.17     0.22        0.04         0.68
## 2994     0.10     0.38        0.04         0.68
## 2995     0.33     0.00        0.06         0.68
## 2996     0.01     0.00        0.05         0.68
## 2997     0.38     0.00        0.01         0.68
## 2998     0.43     0.00        0.05         0.68
## 2999     0.04     0.04        0.05         0.68
## 3000     0.15     0.00        0.02         0.68
## 3001     0.22     0.11        0.07         0.68
## 3002     0.59     0.00        0.09         0.68
## 3003     0.18     0.20        0.06         0.68
## 3004     0.04     0.00        0.04         0.68
## 3005     0.22     0.01        0.10         0.68
## 3006     0.26     0.00        0.09         0.68
## 3007     0.52     0.00        0.02         0.67
## 3008     0.24     0.00        0.11         0.67
## 3009     0.01     0.42        0.02         0.67
## 3010     0.16     0.00        0.02         0.67
## 3011     0.17     0.00        0.05         0.67
## 3012     0.21     0.11        0.09         0.67
## 3013     0.34     0.00        0.13         0.67
## 3014     0.25     0.00        0.04         0.67
## 3015     0.22     0.00        0.06         0.67
## 3016     0.25     0.00        0.04         0.67
## 3017     0.22     0.00        0.10         0.67
## 3018     0.18     0.00        0.03         0.67
## 3019     0.28     0.00        0.06         0.67
## 3020     0.13     0.00        0.05         0.67
## 3021     0.00     0.67        0.00         0.67
## 3022     0.25     0.00        0.04         0.67
## 3023     0.17     0.00        0.02         0.67
## 3024     0.17     0.23        0.06         0.67
## 3025     0.32     0.00        0.07         0.67
## 3026     0.00     0.67        0.00         0.67
## 3027     0.42     0.00        0.05         0.67
## 3028     0.36     0.00        0.14         0.67
## 3029     0.31     0.01        0.11         0.67
## 3030     0.28     0.00        0.16         0.67
## 3031     0.16     0.00        0.07         0.67
## 3032     0.13     0.31        0.04         0.67
## 3033     0.66     0.00        0.01         0.67
## 3034     0.18     0.01        0.05         0.67
## 3035     0.30     0.00        0.08         0.67
## 3036     0.33     0.00        0.11         0.67
## 3037     0.41     0.00        0.08         0.67
## 3038     0.21     0.01        0.05         0.67
## 3039     0.29     0.01        0.07         0.67
## 3040     0.06     0.00        0.05         0.67
## 3041     0.64     0.00        0.02         0.67
## 3042     0.25     0.00        0.09         0.67
## 3043     0.20     0.00        0.14         0.67
## 3044     0.58     0.00        0.09         0.67
## 3045     0.03     0.00        0.01         0.67
## 3046     0.05     0.25        0.04         0.67
## 3047     0.11     0.00        0.05         0.67
## 3048     0.26     0.05        0.11         0.67
## 3049     0.53     0.00        0.12         0.67
## 3050     0.02     0.00        0.00         0.02
## 3051     0.00     0.66        0.00         0.66
## 3052     0.25     0.00        0.04         0.66
## 3053     0.15     0.00        0.02         0.66
## 3054     0.24     0.01        0.10         0.66
## 3055     0.23     0.03        0.06         0.66
## 3056     0.02     0.00        0.09         0.66
## 3057     0.25     0.00        0.08         0.66
## 3058     0.01     0.13        0.26         0.66
## 3059     0.25     0.00        0.04         0.66
## 3060     0.25     0.00        0.04         0.66
## 3061     0.25     0.00        0.08         0.66
## 3062     0.16     0.00        0.02         0.66
## 3063     0.02     0.00        0.09         0.66
## 3064     0.10     0.00        0.06         0.66
## 3065     0.00     0.66        0.00         0.66
## 3066     0.13     0.00        0.02         0.66
## 3067     0.00     0.66        0.00         0.66
## 3068     0.00     0.64        0.02         0.66
## 3069     0.18     0.00        0.01         0.66
## 3070     0.38     0.00        0.14         0.66
## 3071     0.24     0.00        0.07         0.66
## 3072     0.25     0.00        0.08         0.66
## 3073     0.25     0.00        0.04         0.66
## 3074     0.52     0.00        0.12         0.66
## 3075     0.03     0.55        0.02         0.66
## 3076     0.02     0.33        0.03         0.66
## 3077     0.25     0.00        0.14         0.66
## 3078     0.20     0.00        0.03         0.66
## 3079     0.22     0.00        0.10         0.66
## 3080     0.04     0.00        0.01         0.66
## 3081     0.35     0.00        0.16         0.66
## 3082     0.14     0.19        0.04         0.66
## 3083     0.17     0.00        0.01         0.66
## 3084     0.13     0.30        0.05         0.66
## 3085     0.00     0.62        0.00         0.66
## 3086     0.17     0.00        0.01         0.66
## 3087     0.08     0.41        0.04         0.66
## 3088     0.14     0.00        0.02         0.66
## 3089     0.08     0.00        0.08         0.66
## 3090     0.27     0.00        0.16         0.66
## 3091     0.00     0.66        0.00         0.66
## 3092     0.44     0.03        0.09         0.66
## 3093     0.25     0.00        0.07         0.66
## 3094     0.25     0.00        0.04         0.66
## 3095     0.22     0.00        0.06         0.65
## 3096     0.22     0.00        0.10         0.65
## 3097     0.00     0.00        0.41         0.65
## 3098     0.22     0.01        0.10         0.65
## 3099     0.25     0.00        0.05         0.65
## 3100     0.23     0.00        0.07         0.65
## 3101     0.14     0.29        0.05         0.65
## 3102     0.11     0.12        0.02         0.65
## 3103     0.25     0.00        0.08         0.65
## 3104     0.22     0.00        0.14         0.65
## 3105     0.09     0.30        0.01         0.65
## 3106     0.28     0.00        0.07         0.65
## 3107     0.25     0.00        0.08         0.65
## 3108     0.04     0.00        0.05         0.65
## 3109     0.17     0.00        0.01         0.65
## 3110     0.01     0.58        0.04         0.65
## 3111     0.14     0.00        0.06         0.65
## 3112     0.00     0.00        0.07         0.65
## 3113     0.20     0.00        0.06         0.65
## 3114     0.17     0.00        0.01         0.65
## 3115     0.03     0.27        0.03         0.65
## 3116     0.25     0.00        0.04         0.65
## 3117     0.15     0.26        0.05         0.65
## 3118     0.50     0.00        0.15         0.65
## 3119     0.04     0.00        0.01         0.65
## 3120     0.25     0.00        0.08         0.65
## 3121     0.02     0.00        0.09         0.65
## 3122     0.05     0.00        0.60         0.65
## 3123     0.24     0.00        0.04         0.65
## 3124     0.18     0.00        0.12         0.65
## 3125     0.11     0.00        0.05         0.65
## 3126     0.15     0.20        0.07         0.65
## 3127     0.14     0.22        0.09         0.65
## 3128     0.00     0.65        0.00         0.65
## 3129     0.23     0.05        0.10         0.65
## 3130     0.20     0.00        0.06         0.65
## 3131     0.00     0.65        0.00         0.65
## 3132     0.04     0.40        0.03         0.65
## 3133     0.39     0.00        0.09         0.64
## 3134     0.00     0.00        0.05         0.64
## 3135     0.07     0.00        0.44         0.64
## 3136     0.17     0.00        0.01         0.64
## 3137     0.24     0.00        0.05         0.64
## 3138     0.25     0.00        0.08         0.64
## 3139     0.25     0.00        0.15         0.64
## 3140     0.31     0.00        0.13         0.64
## 3141     0.25     0.00        0.08         0.64
## 3142     0.00     0.02        0.00         0.02
## 3143     0.15     0.00        0.02         0.64
## 3144     0.09     0.01        0.05         0.64
## 3145     0.02     0.00        0.09         0.64
## 3146     0.04     0.00        0.07         0.64
## 3147     0.17     0.07        0.09         0.64
## 3148     0.23     0.00        0.05         0.64
## 3149     0.35     0.00        0.06         0.64
## 3150     0.29     0.00        0.10         0.64
## 3151     0.19     0.00        0.02         0.64
## 3152     0.24     0.00        0.08         0.64
## 3153     0.32     0.00        0.07         0.64
## 3154     0.04     0.00        0.03         0.64
## 3155     0.33     0.00        0.09         0.64
## 3156     0.04     0.00        0.05         0.64
## 3157     0.15     0.00        0.01         0.64
## 3158     0.10     0.04        0.05         0.64
## 3159     0.22     0.00        0.02         0.64
## 3160     0.17     0.00        0.01         0.64
## 3161     0.21     0.00        0.06         0.64
## 3162     0.33     0.00        0.01         0.64
## 3163     0.12     0.34        0.04         0.64
## 3164     0.20     0.20        0.07         0.64
## 3165     0.17     0.00        0.06         0.64
## 3166     0.43     0.00        0.14         0.64
## 3167     0.17     0.00        0.01         0.64
## 3168     0.20     0.09        0.10         0.64
## 3169     0.17     0.00        0.01         0.64
## 3170     0.09     0.27        0.05         0.64
## 3171     0.28     0.00        0.11         0.64
## 3172     0.24     0.00        0.08         0.64
## 3173     0.32     0.00        0.10         0.64
## 3174     0.42     0.00        0.14         0.64
## 3175     0.04     0.00        0.01         0.64
## 3176     0.03     0.00        0.01         0.64
## 3177     0.02     0.01        0.05         0.64
## 3178     0.12     0.00        0.05         0.64
## 3179     0.26     0.11        0.06         0.64
## 3180     0.10     0.04        0.05         0.64
## 3181     0.24     0.00        0.08         0.64
## 3182     0.33     0.01        0.10         0.64
## 3183     0.00     0.00        0.04         0.64
## 3184     0.21     0.01        0.06         0.63
## 3185     0.02     0.00        0.09         0.63
## 3186     0.24     0.00        0.04         0.63
## 3187     0.12     0.00        0.44         0.63
## 3188     0.16     0.00        0.06         0.63
## 3189     0.45     0.03        0.15         0.63
## 3190     0.34     0.00        0.07         0.63
## 3191     0.19     0.00        0.03         0.63
## 3192     0.24     0.00        0.04         0.63
## 3193     0.40     0.00        0.04         0.63
## 3194     0.14     0.00        0.06         0.63
## 3195     0.01     0.00        0.00         0.02
## 3196     0.02     0.00        0.09         0.63
## 3197     0.23     0.01        0.10         0.63
## 3198     0.17     0.00        0.01         0.63
## 3199     0.23     0.00        0.09         0.63
## 3200     0.24     0.00        0.10         0.63
## 3201     0.09     0.00        0.09         0.63
## 3202     0.00     0.63        0.00         0.63
## 3203     0.35     0.00        0.07         0.63
## 3204     0.13     0.00        0.01         0.63
## 3205     0.05     0.25        0.01         0.63
## 3206     0.09     0.00        0.04         0.63
## 3207     0.20     0.00        0.05         0.63
## 3208     0.19     0.00        0.06         0.63
## 3209     0.00     0.00        0.05         0.63
## 3210     0.00     0.63        0.00         0.63
## 3211     0.21     0.00        0.09         0.63
## 3212     0.05     0.00        0.04         0.63
## 3213     0.29     0.01        0.10         0.63
## 3214     0.09     0.38        0.03         0.63
## 3215     0.05     0.00        0.14         0.63
## 3216     0.04     0.00        0.01         0.63
## 3217     0.23     0.00        0.06         0.63
## 3218     0.00     0.02        0.00         0.02
## 3219     0.23     0.00        0.00         0.63
## 3220     0.34     0.00        0.05         0.63
## 3221     0.25     0.00        0.06         0.63
## 3222     0.00     0.63        0.00         0.63
## 3223     0.37     0.00        0.06         0.63
## 3224     0.20     0.16        0.05         0.63
## 3225     0.24     0.00        0.08         0.63
## 3226     0.06     0.34        0.04         0.63
## 3227     0.00     0.59        0.04         0.63
## 3228     0.17     0.00        0.05         0.63
## 3229     0.03     0.15        0.34         0.63
## 3230     0.24     0.00        0.04         0.63
## 3231     0.16     0.00        0.05         0.63
## 3232     0.22     0.00        0.06         0.63
## 3233     0.27     0.01        0.11         0.63
## 3234     0.29     0.00        0.07         0.63
## 3235     0.24     0.00        0.04         0.63
## 3236     0.13     0.00        0.02         0.63
## 3237     0.00     0.32        0.00         0.62
## 3238     0.00     0.62        0.00         0.62
## 3239     0.01     0.00        0.00         0.02
## 3240     0.20     0.00        0.03         0.62
## 3241     0.24     0.00        0.04         0.62
## 3242     0.26     0.00        0.06         0.62
## 3243     0.22     0.11        0.09         0.62
## 3244     0.13     0.29        0.04         0.62
## 3245     0.24     0.00        0.04         0.62
## 3246     0.23     0.08        0.09         0.62
## 3247     0.13     0.00        0.02         0.62
## 3248     0.42     0.00        0.05         0.62
## 3249     0.03     0.00        0.01         0.62
## 3250     0.13     0.00        0.02         0.62
## 3251     0.28     0.00        0.06         0.62
## 3252     0.23     0.22        0.08         0.62
## 3253     0.20     0.00        0.06         0.62
## 3254     0.24     0.00        0.08         0.62
## 3255     0.20     0.07        0.09         0.62
## 3256     0.04     0.57        0.01         0.62
## 3257     0.21     0.00        0.06         0.62
## 3258     0.10     0.12        0.02         0.62
## 3259     0.22     0.00        0.03         0.62
## 3260     0.20     0.00        0.02         0.62
## 3261     0.34     0.02        0.09         0.62
## 3262     0.23     0.00        0.04         0.62
## 3263     0.00     0.00        0.04         0.62
## 3264     0.24     0.00        0.08         0.62
## 3265     0.01     0.00        0.04         0.62
## 3266     0.14     0.27        0.06         0.62
## 3267     0.03     0.00        0.01         0.62
## 3268     0.18     0.09        0.08         0.62
## 3269     0.23     0.00        0.14         0.62
## 3270     0.14     0.23        0.04         0.62
## 3271     0.24     0.00        0.08         0.62
## 3272     0.00     0.62        0.00         0.62
## 3273     0.12     0.00        0.02         0.62
## 3274     0.17     0.00        0.11         0.62
## 3275     0.00     0.62        0.00         0.62
## 3276     0.00     0.62        0.00         0.62
## 3277     0.26     0.00        0.07         0.62
## 3278     0.03     0.00        0.00         0.62
## 3279     0.00     0.62        0.00         0.62
## 3280     0.00     0.62        0.00         0.62
## 3281     0.02     0.00        0.00         0.62
## 3282     0.00     0.58        0.04         0.62
## 3283     0.57     0.04        0.00         0.61
## 3284     0.13     0.11        0.04         0.61
## 3285     0.00     0.00        0.05         0.61
## 3286     0.04     0.00        0.57         0.61
## 3287     0.15     0.00        0.11         0.61
## 3288     0.29     0.01        0.11         0.61
## 3289     0.13     0.00        0.02         0.61
## 3290     0.02     0.57        0.01         0.61
## 3291     0.11     0.34        0.05         0.61
## 3292     0.18     0.00        0.05         0.61
## 3293     0.16     0.00        0.01         0.61
## 3294     0.23     0.00        0.08         0.61
## 3295     0.16     0.00        0.01         0.61
## 3296     0.21     0.00        0.05         0.61
## 3297     0.10     0.00        0.05         0.61
## 3298     0.23     0.00        0.05         0.61
## 3299     0.07     0.00        0.04         0.61
## 3300     0.16     0.00        0.01         0.61
## 3301     0.23     0.00        0.08         0.61
## 3302     0.00     0.00        0.03         0.61
## 3303     0.00     0.61        0.00         0.61
## 3304     0.44     0.00        0.07         0.61
## 3305     0.17     0.14        0.05         0.61
## 3306     0.23     0.00        0.04         0.61
## 3307     0.07     0.42        0.03         0.61
## 3308     0.24     0.00        0.06         0.61
## 3309     0.21     0.00        0.03         0.61
## 3310     0.23     0.00        0.04         0.61
## 3311     0.09     0.01        0.04         0.61
## 3312     0.27     0.00        0.15         0.61
## 3313     0.00     0.00        0.05         0.61
## 3314     0.03     0.21        0.03         0.61
## 3315     0.00     0.00        0.05         0.61
## 3316     0.00     0.00        0.05         0.61
## 3317     0.23     0.00        0.06         0.61
## 3318     0.10     0.22        0.01         0.61
## 3319     0.16     0.00        0.01         0.61
## 3320     0.23     0.00        0.04         0.61
## 3321     0.16     0.00        0.01         0.61
## 3322     0.16     0.00        0.01         0.61
## 3323     0.12     0.00        0.02         0.61
## 3324     0.21     0.00        0.06         0.61
## 3325     0.16     0.01        0.06         0.61
## 3326     0.16     0.00        0.01         0.61
## 3327     0.02     0.00        0.00         0.61
## 3328     0.05     0.00        0.05         0.61
## 3329     0.16     0.00        0.01         0.61
## 3330     0.20     0.00        0.06         0.61
## 3331     0.02     0.00        0.08         0.61
## 3332     0.24     0.00        0.06         0.61
## 3333     0.24     0.00        0.06         0.61
## 3334     0.14     0.33        0.02         0.60
## 3335     0.16     0.00        0.01         0.60
## 3336     0.11     0.25        0.06         0.60
## 3337     0.16     0.00        0.01         0.60
## 3338     0.02     0.00        0.08         0.60
## 3339     0.10     0.09        0.02         0.60
## 3340     0.23     0.00        0.08         0.60
## 3341     0.16     0.00        0.02         0.60
## 3342     0.00     0.60        0.00         0.60
## 3343     0.25     0.00        0.06         0.60
## 3344     0.02     0.00        0.08         0.60
## 3345     0.19     0.00        0.05         0.60
## 3346     0.22     0.00        0.05         0.60
## 3347     0.00     0.02        0.00         0.02
## 3348     0.19     0.20        0.04         0.60
## 3349     0.15     0.00        0.08         0.60
## 3350     0.22     0.03        0.05         0.60
## 3351     0.25     0.04        0.09         0.60
## 3352     0.37     0.00        0.10         0.60
## 3353     0.14     0.21        0.04         0.60
## 3354     0.18     0.00        0.29         0.60
## 3355     0.23     0.00        0.08         0.60
## 3356     0.24     0.00        0.14         0.60
## 3357     0.02     0.00        0.08         0.60
## 3358     0.00     0.60        0.00         0.60
## 3359     0.23     0.00        0.08         0.60
## 3360     0.21     0.00        0.05         0.60
## 3361     0.08     0.14        0.01         0.60
## 3362     0.26     0.23        0.02         0.60
## 3363     0.15     0.00        0.06         0.60
## 3364     0.23     0.00        0.08         0.60
## 3365     0.23     0.00        0.04         0.60
## 3366     0.00     0.56        0.04         0.60
## 3367     0.00     0.56        0.04         0.60
## 3368     0.03     0.03        0.05         0.60
## 3369     0.25     0.00        0.11         0.60
## 3370     0.28     0.00        0.06         0.60
## 3371     0.23     0.00        0.04         0.60
## 3372     0.01     0.00        0.04         0.60
## 3373     0.00     0.60        0.00         0.60
## 3374     0.13     0.00        0.07         0.60
## 3375     0.16     0.00        0.05         0.60
## 3376     0.20     0.00        0.06         0.60
## 3377     0.24     0.00        0.10         0.60
## 3378     0.23     0.00        0.08         0.60
## 3379     0.22     0.00        0.06         0.60
## 3380     0.22     0.00        0.09         0.60
## 3381     0.00     0.60        0.00         0.60
## 3382     0.00     0.31        0.02         0.60
## 3383     0.53     0.00        0.06         0.59
## 3384     0.23     0.00        0.08         0.59
## 3385     0.35     0.00        0.11         0.59
## 3386     0.46     0.00        0.07         0.59
## 3387     0.38     0.00        0.07         0.59
## 3388     0.00     0.59        0.00         0.59
## 3389     0.00     0.00        0.03         0.59
## 3390     0.00     0.56        0.04         0.59
## 3391     0.34     0.00        0.10         0.59
## 3392     0.22     0.00        0.04         0.59
## 3393     0.22     0.00        0.04         0.59
## 3394     0.12     0.00        0.02         0.59
## 3395     0.11     0.23        0.03         0.59
## 3396     0.22     0.00        0.06         0.59
## 3397     0.28     0.05        0.10         0.59
## 3398     0.22     0.00        0.04         0.59
## 3399     0.31     0.00        0.09         0.59
## 3400     0.00     0.55        0.04         0.59
## 3401     0.23     0.00        0.08         0.59
## 3402     0.00     0.59        0.00         0.59
## 3403     0.24     0.00        0.14         0.59
## 3404     0.03     0.00        0.01         0.59
## 3405     0.28     0.00        0.07         0.59
## 3406     0.17     0.16        0.06         0.59
## 3407     0.13     0.00        0.02         0.59
## 3408     0.12     0.00        0.02         0.59
## 3409     0.03     0.00        0.01         0.59
## 3410     0.00     0.00        0.04         0.59
## 3411     0.02     0.00        0.04         0.59
## 3412     0.03     0.00        0.04         0.59
## 3413     0.11     0.00        0.01         0.59
## 3414     0.11     0.00        0.01         0.59
## 3415     0.21     0.00        0.05         0.59
## 3416     0.08     0.14        0.02         0.59
## 3417     0.00     0.59        0.00         0.59
## 3418     0.14     0.02        0.04         0.59
## 3419     0.16     0.00        0.07         0.59
## 3420     0.09     0.42        0.03         0.59
## 3421     0.22     0.01        0.23         0.59
## 3422     0.00     0.00        0.00         0.02
## 3423     0.04     0.00        0.05         0.59
## 3424     0.18     0.00        0.05         0.59
## 3425     0.22     0.00        0.04         0.59
## 3426     0.34     0.00        0.07         0.59
## 3427     0.22     0.00        0.08         0.59
## 3428     0.02     0.13        0.04         0.59
## 3429     0.22     0.08        0.08         0.59
## 3430     0.14     0.00        0.10         0.59
## 3431     0.25     0.00        0.09         0.59
## 3432     0.21     0.00        0.09         0.59
## 3433     0.13     0.11        0.01         0.59
## 3434     0.22     0.00        0.07         0.59
## 3435     0.37     0.00        0.07         0.59
## 3436     0.00     0.59        0.00         0.59
## 3437     0.22     0.00        0.10         0.59
## 3438     0.17     0.14        0.06         0.58
## 3439     0.37     0.00        0.07         0.58
## 3440     0.01     0.00        0.04         0.58
## 3441     0.22     0.00        0.07         0.58
## 3442     0.23     0.00        0.06         0.58
## 3443     0.25     0.00        0.05         0.58
## 3444     0.00     0.55        0.04         0.58
## 3445     0.19     0.07        0.04         0.58
## 3446     0.02     0.00        0.04         0.58
## 3447     0.18     0.00        0.10         0.58
## 3448     0.03     0.00        0.01         0.58
## 3449     0.04     0.47        0.01         0.58
## 3450     0.02     0.00        0.08         0.58
## 3451     0.03     0.17        0.03         0.58
## 3452     0.31     0.00        0.07         0.58
## 3453     0.18     0.00        0.05         0.58
## 3454     0.18     0.00        0.39         0.58
## 3455     0.22     0.02        0.04         0.58
## 3456     0.29     0.00        0.07         0.58
## 3457     0.22     0.00        0.05         0.58
## 3458     0.30     0.00        0.07         0.58
## 3459     0.00     0.00        0.04         0.58
## 3460     0.19     0.02        0.06         0.58
## 3461     0.22     0.00        0.04         0.58
## 3462     0.26     0.00        0.05         0.58
## 3463     0.22     0.00        0.07         0.58
## 3464     0.15     0.00        0.05         0.58
## 3465     0.06     0.22        0.03         0.58
## 3466     0.39     0.00        0.03         0.58
## 3467     0.40     0.00        0.04         0.58
## 3468     0.30     0.19        0.03         0.58
## 3469     0.01     0.00        0.00         0.02
## 3470     0.22     0.00        0.07         0.58
## 3471     0.16     0.16        0.04         0.58
## 3472     0.00     0.54        0.04         0.58
## 3473     0.22     0.00        0.03         0.58
## 3474     0.22     0.00        0.07         0.58
## 3475     0.22     0.00        0.04         0.58
## 3476     0.15     0.00        0.01         0.58
## 3477     0.00     0.31        0.02         0.58
## 3478     0.02     0.50        0.01         0.58
## 3479     0.00     0.00        0.04         0.58
## 3480     0.22     0.00        0.07         0.58
## 3481     0.22     0.00        0.04         0.58
## 3482     0.00     0.58        0.00         0.58
## 3483     0.00     0.00        0.04         0.58
## 3484     0.27     0.00        0.09         0.58
## 3485     0.05     0.26        0.03         0.58
## 3486     0.00     0.58        0.00         0.58
## 3487     0.09     0.00        0.06         0.58
## 3488     0.11     0.14        0.06         0.58
## 3489     0.10     0.06        0.06         0.58
## 3490     0.22     0.00        0.04         0.58
## 3491     0.12     0.00        0.02         0.58
## 3492     0.00     0.00        0.04         0.58
## 3493     0.22     0.00        0.07         0.58
## 3494     0.02     0.00        0.08         0.58
## 3495     0.12     0.00        0.07         0.58
## 3496     0.41     0.01        0.06         0.58
## 3497     0.02     0.00        0.04         0.58
## 3498     0.22     0.00        0.04         0.58
## 3499     0.17     0.02        0.05         0.58
## 3500     0.02     0.00        0.00         0.58
## 3501     0.53     0.00        0.04         0.58
## 3502     0.01     0.00        0.00         0.02
## 3503     0.22     0.00        0.07         0.58
## 3504     0.37     0.00        0.12         0.57
## 3505     0.00     0.27        0.02         0.57
## 3506     0.16     0.13        0.04         0.57
## 3507     0.23     0.00        0.06         0.57
## 3508     0.04     0.00        0.04         0.57
## 3509     0.00     0.00        0.04         0.57
## 3510     0.24     0.00        0.02         0.57
## 3511     0.22     0.00        0.07         0.57
## 3512     0.15     0.00        0.01         0.57
## 3513     0.28     0.00        0.06         0.57
## 3514     0.00     0.57        0.00         0.57
## 3515     0.15     0.00        0.05         0.57
## 3516     0.24     0.00        0.06         0.57
## 3517     0.00     0.54        0.04         0.57
## 3518     0.15     0.00        0.01         0.57
## 3519     0.24     0.01        0.09         0.57
## 3520     0.00     0.00        0.04         0.57
## 3521     0.08     0.35        0.04         0.57
## 3522     0.02     0.00        0.33         0.57
## 3523     0.23     0.00        0.13         0.57
## 3524     0.27     0.00        0.06         0.57
## 3525     0.11     0.00        0.02         0.57
## 3526     0.17     0.04        0.05         0.57
## 3527     0.45     0.00        0.11         0.57
## 3528     0.01     0.00        0.04         0.57
## 3529     0.02     0.00        0.08         0.57
## 3530     0.15     0.00        0.04         0.57
## 3531     0.02     0.00        0.04         0.57
## 3532     0.12     0.03        0.07         0.57
## 3533     0.00     0.57        0.00         0.57
## 3534     0.08     0.00        0.00         0.57
## 3535     0.01     0.00        0.04         0.57
## 3536     0.12     0.29        0.07         0.57
## 3537     0.25     0.00        0.05         0.57
## 3538     0.12     0.00        0.02         0.57
## 3539     0.08     0.35        0.03         0.57
## 3540     0.20     0.00        0.05         0.57
## 3541     0.03     0.00        0.04         0.57
## 3542     0.22     0.00        0.07         0.57
## 3543     0.02     0.00        0.08         0.57
## 3544     0.11     0.02        0.02         0.57
## 3545     0.00     0.57        0.00         0.57
## 3546     0.10     0.00        0.02         0.57
## 3547     0.25     0.04        0.09         0.57
## 3548     0.00     0.57        0.00         0.57
## 3549     0.22     0.00        0.06         0.57
## 3550     0.16     0.00        0.02         0.57
## 3551     0.15     0.17        0.05         0.57
## 3552     0.21     0.00        0.04         0.57
## 3553     0.22     0.00        0.07         0.57
## 3554     0.19     0.00        0.09         0.57
## 3555     0.12     0.00        0.05         0.57
## 3556     0.31     0.00        0.06         0.57
## 3557     0.40     0.00        0.07         0.57
## 3558     0.22     0.05        0.09         0.57
## 3559     0.28     0.00        0.05         0.56
## 3560     0.08     0.34        0.04         0.56
## 3561     0.11     0.00        0.02         0.56
## 3562     0.18     0.09        0.06         0.56
## 3563     0.04     0.24        0.03         0.56
## 3564     0.15     0.00        0.01         0.56
## 3565     0.15     0.00        0.01         0.56
## 3566     0.22     0.00        0.07         0.56
## 3567     0.15     0.00        0.01         0.56
## 3568     0.22     0.00        0.07         0.56
## 3569     0.11     0.13        0.01         0.56
## 3570     0.14     0.00        0.02         0.56
## 3571     0.22     0.00        0.07         0.56
## 3572     0.21     0.00        0.04         0.56
## 3573     0.21     0.00        0.07         0.56
## 3574     0.08     0.00        0.07         0.56
## 3575     0.15     0.00        0.01         0.56
## 3576     0.21     0.00        0.07         0.56
## 3577     0.05     0.22        0.03         0.56
## 3578     0.21     0.00        0.07         0.56
## 3579     0.21     0.00        0.04         0.56
## 3580     0.19     0.00        0.05         0.56
## 3581     0.21     0.00        0.07         0.56
## 3582     0.15     0.00        0.02         0.56
## 3583     0.22     0.00        0.06         0.56
## 3584     0.21     0.00        0.07         0.56
## 3585     0.15     0.00        0.01         0.56
## 3586     0.11     0.00        0.02         0.56
## 3587     0.21     0.00        0.04         0.56
## 3588     0.11     0.00        0.04         0.56
## 3589     0.02     0.00        0.04         0.56
## 3590     0.11     0.00        0.02         0.56
## 3591     0.09     0.07        0.01         0.56
## 3592     0.02     0.45        0.00         0.56
## 3593     0.21     0.00        0.07         0.56
## 3594     0.14     0.12        0.04         0.56
## 3595     0.12     0.26        0.04         0.56
## 3596     0.08     0.00        0.04         0.56
## 3597     0.09     0.27        0.06         0.56
## 3598     0.15     0.01        0.05         0.56
## 3599     0.35     0.00        0.07         0.56
## 3600     0.00     0.56        0.00         0.56
## 3601     0.21     0.00        0.07         0.56
## 3602     0.23     0.00        0.06         0.56
## 3603     0.21     0.00        0.07         0.56
## 3604     0.15     0.00        0.01         0.56
## 3605     0.15     0.00        0.01         0.56
## 3606     0.15     0.00        0.02         0.56
## 3607     0.18     0.00        0.05         0.56
## 3608     0.24     0.00        0.14         0.56
## 3609     0.21     0.00        0.07         0.56
## 3610     0.00     0.56        0.00         0.56
## 3611     0.02     0.00        0.04         0.56
## 3612     0.02     0.00        0.02         0.56
## 3613     0.00     0.56        0.00         0.56
## 3614     0.23     0.00        0.04         0.56
## 3615     0.04     0.00        0.04         0.56
## 3616     0.09     0.22        0.06         0.56
## 3617     0.23     0.00        0.06         0.56
## 3618     0.26     0.00        0.06         0.56
## 3619     0.21     0.00        0.07         0.56
## 3620     0.02     0.14        0.03         0.56
## 3621     0.02     0.00        0.03         0.56
## 3622     0.00     0.00        0.04         0.56
## 3623     0.21     0.00        0.07         0.56
## 3624     0.36     0.00        0.02         0.56
## 3625     0.12     0.00        0.01         0.56
## 3626     0.08     0.02        0.06         0.56
## 3627     0.14     0.00        0.05         0.56
## 3628     0.18     0.06        0.04         0.55
## 3629     0.20     0.14        0.07         0.55
## 3630     0.21     0.00        0.04         0.55
## 3631     0.11     0.00        0.04         0.55
## 3632     0.16     0.00        0.05         0.55
## 3633     0.21     0.00        0.07         0.55
## 3634     0.01     0.15        0.06         0.55
## 3635     0.13     0.00        0.08         0.55
## 3636     0.11     0.00        0.02         0.55
## 3637     0.00     0.55        0.00         0.55
## 3638     0.28     0.00        0.05         0.55
## 3639     0.22     0.00        0.09         0.55
## 3640     0.13     0.00        0.02         0.55
## 3641     0.00     0.52        0.04         0.55
## 3642     0.00     0.55        0.00         0.55
## 3643     0.17     0.00        0.07         0.55
## 3644     0.03     0.00        0.01         0.55
## 3645     0.21     0.00        0.04         0.55
## 3646     0.00     0.00        0.04         0.55
## 3647     0.21     0.00        0.04         0.55
## 3648     0.00     0.55        0.00         0.55
## 3649     0.00     0.55        0.00         0.55
## 3650     0.16     0.12        0.05         0.55
## 3651     0.21     0.00        0.07         0.55
## 3652     0.15     0.04        0.07         0.55
## 3653     0.16     0.03        0.05         0.55
## 3654     0.04     0.00        0.04         0.55
## 3655     0.27     0.00        0.10         0.55
## 3656     0.22     0.00        0.00         0.55
## 3657     0.33     0.00        0.05         0.55
## 3658     0.00     0.55        0.00         0.55
## 3659     0.01     0.00        0.05         0.55
## 3660     0.00     0.00        0.04         0.55
## 3661     0.00     0.00        0.04         0.55
## 3662     0.18     0.00        0.02         0.55
## 3663     0.08     0.24        0.01         0.55
## 3664     0.21     0.00        0.04         0.55
## 3665     0.25     0.02        0.09         0.55
## 3666     0.21     0.00        0.04         0.55
## 3667     0.00     0.51        0.04         0.55
## 3668     0.00     0.55        0.00         0.55
## 3669     0.13     0.00        0.02         0.55
## 3670     0.00     0.55        0.00         0.55
## 3671     0.21     0.07        0.08         0.55
## 3672     0.15     0.00        0.01         0.55
## 3673     0.00     0.55        0.00         0.55
## 3674     0.19     0.00        0.05         0.55
## 3675     0.00     0.21        0.03         0.55
## 3676     0.02     0.00        0.04         0.55
## 3677     0.15     0.00        0.01         0.55
## 3678     0.05     0.36        0.02         0.55
## 3679     0.20     0.02        0.04         0.55
## 3680     0.14     0.00        0.02         0.55
## 3681     0.02     0.00        0.07         0.55
## 3682     0.24     0.03        0.05         0.55
## 3683     0.00     0.00        0.04         0.55
## 3684     0.21     0.00        0.07         0.55
## 3685     0.21     0.00        0.04         0.55
## 3686     0.12     0.00        0.02         0.55
## 3687     0.08     0.13        0.07         0.55
## 3688     0.32     0.00        0.10         0.54
## 3689     0.00     0.00        0.19         0.54
## 3690     0.06     0.00        0.48         0.54
## 3691     0.02     0.00        0.04         0.54
## 3692     0.03     0.01        0.05         0.54
## 3693     0.12     0.00        0.02         0.54
## 3694     0.35     0.00        0.04         0.54
## 3695     0.00     0.54        0.00         0.54
## 3696     0.00     0.54        0.00         0.54
## 3697     0.03     0.08        0.04         0.54
## 3698     0.17     0.04        0.05         0.54
## 3699     0.40     0.00        0.07         0.54
## 3700     0.11     0.00        0.02         0.54
## 3701     0.27     0.02        0.14         0.54
## 3702     0.21     0.00        0.07         0.54
## 3703     0.08     0.03        0.04         0.54
## 3704     0.33     0.01        0.11         0.54
## 3705     0.20     0.00        0.08         0.54
## 3706     0.11     0.25        0.04         0.54
## 3707     0.14     0.00        0.01         0.54
## 3708     0.30     0.00        0.09         0.54
## 3709     0.14     0.38        0.02         0.54
## 3710     0.00     0.54        0.00         0.54
## 3711     0.21     0.00        0.05         0.54
## 3712     0.24     0.10        0.07         0.54
## 3713     0.23     0.00        0.06         0.54
## 3714     0.21     0.00        0.07         0.54
## 3715     0.09     0.00        0.04         0.54
## 3716     0.00     0.00        0.00         0.02
## 3717     0.03     0.00        0.01         0.54
## 3718     0.10     0.00        0.01         0.54
## 3719     0.39     0.00        0.03         0.54
## 3720     0.00     0.54        0.00         0.54
## 3721     0.10     0.01        0.04         0.54
## 3722     0.13     0.13        0.06         0.54
## 3723     0.06     0.35        0.04         0.54
## 3724     0.08     0.16        0.01         0.54
## 3725     0.00     0.54        0.00         0.54
## 3726     0.23     0.00        0.06         0.54
## 3727     0.00     0.50        0.04         0.54
## 3728     0.10     0.00        0.04         0.54
## 3729     0.16     0.18        0.09         0.54
## 3730     0.21     0.00        0.05         0.54
## 3731     0.00     0.00        0.03         0.54
## 3732     0.03     0.15        0.03         0.54
## 3733     0.29     0.01        0.11         0.54
## 3734     0.23     0.00        0.09         0.54
## 3735     0.14     0.00        0.01         0.54
## 3736     0.17     0.00        0.05         0.54
## 3737     0.11     0.00        0.01         0.54
## 3738     0.14     0.00        0.05         0.54
## 3739     0.06     0.00        0.02         0.54
## 3740     0.08     0.00        0.04         0.54
## 3741     0.01     0.10        0.04         0.54
## 3742     0.00     0.54        0.00         0.54
## 3743     0.21     0.00        0.07         0.54
## 3744     0.05     0.48        0.00         0.54
## 3745     0.02     0.00        0.07         0.54
## 3746     0.20     0.00        0.04         0.54
## 3747     0.32     0.00        0.08         0.54
## 3748     0.17     0.00        0.04         0.54
## 3749     0.03     0.00        0.01         0.54
## 3750     0.01     0.48        0.00         0.54
## 3751     0.20     0.00        0.07         0.54
## 3752     0.20     0.00        0.07         0.54
## 3753     0.05     0.24        0.03         0.54
## 3754     0.00     0.00        0.00         0.02
## 3755     0.20     0.00        0.07         0.54
## 3756     0.37     0.00        0.04         0.54
## 3757     0.00     0.53        0.00         0.53
## 3758     0.27     0.00        0.05         0.53
## 3759     0.20     0.00        0.07         0.53
## 3760     0.05     0.38        0.03         0.53
## 3761     0.02     0.00        0.07         0.53
## 3762     0.00     0.00        0.04         0.53
## 3763     0.20     0.00        0.07         0.53
## 3764     0.07     0.17        0.05         0.53
## 3765     0.07     0.27        0.05         0.53
## 3766     0.20     0.00        0.07         0.53
## 3767     0.14     0.00        0.01         0.53
## 3768     0.02     0.00        0.07         0.53
## 3769     0.20     0.00        0.03         0.53
## 3770     0.20     0.00        0.07         0.53
## 3771     0.11     0.00        0.02         0.53
## 3772     0.00     0.33        0.02         0.53
## 3773     0.21     0.00        0.06         0.53
## 3774     0.20     0.00        0.07         0.53
## 3775     0.20     0.00        0.03         0.53
## 3776     0.20     0.00        0.07         0.53
## 3777     0.11     0.00        0.02         0.53
## 3778     0.20     0.00        0.03         0.53
## 3779     0.19     0.02        0.04         0.53
## 3780     0.10     0.00        0.04         0.53
## 3781     0.00     0.53        0.00         0.53
## 3782     0.00     0.53        0.00         0.53
## 3783     0.00     0.53        0.00         0.53
## 3784     0.17     0.00        0.02         0.53
## 3785     0.32     0.00        0.12         0.53
## 3786     0.14     0.12        0.04         0.53
## 3787     0.19     0.00        0.01         0.53
## 3788     0.26     0.02        0.14         0.53
## 3789     0.19     0.00        0.02         0.53
## 3790     0.28     0.00        0.09         0.53
## 3791     0.20     0.00        0.07         0.53
## 3792     0.19     0.00        0.03         0.53
## 3793     0.20     0.00        0.07         0.53
## 3794     0.27     0.02        0.05         0.53
## 3795     0.09     0.00        0.01         0.53
## 3796     0.00     0.00        0.04         0.53
## 3797     0.10     0.00        0.08         0.53
## 3798     0.11     0.00        0.01         0.53
## 3799     0.21     0.00        0.05         0.53
## 3800     0.00     0.00        0.03         0.53
## 3801     0.00     0.49        0.03         0.53
## 3802     0.20     0.01        0.08         0.53
## 3803     0.15     0.00        0.05         0.53
## 3804     0.20     0.00        0.05         0.53
## 3805     0.26     0.00        0.10         0.53
## 3806     0.00     0.00        0.04         0.53
## 3807     0.29     0.00        0.16         0.53
## 3808     0.20     0.00        0.07         0.53
## 3809     0.11     0.00        0.01         0.53
## 3810     0.20     0.00        0.07         0.53
## 3811     0.02     0.00        0.07         0.53
## 3812     0.20     0.00        0.13         0.53
## 3813     0.00     0.53        0.00         0.53
## 3814     0.01     0.00        0.04         0.53
## 3815     0.17     0.00        0.08         0.53
## 3816     0.03     0.16        0.03         0.53
## 3817     0.13     0.00        0.05         0.53
## 3818     0.16     0.04        0.10         0.53
## 3819     0.03     0.00        0.00         0.53
## 3820     0.03     0.00        0.00         0.53
## 3821     0.00     0.49        0.03         0.53
## 3822     0.20     0.00        0.07         0.53
## 3823     0.09     0.19        0.01         0.52
## 3824     0.00     0.52        0.00         0.52
## 3825     0.01     0.00        0.04         0.52
## 3826     0.20     0.00        0.03         0.52
## 3827     0.01     0.02        0.04         0.52
## 3828     0.00     0.52        0.00         0.52
## 3829     0.11     0.00        0.04         0.52
## 3830     0.37     0.00        0.07         0.52
## 3831     0.04     0.00        0.04         0.52
## 3832     0.02     0.00        0.05         0.52
## 3833     0.00     0.00        0.39         0.52
## 3834     0.20     0.00        0.03         0.52
## 3835     0.00     0.00        0.04         0.52
## 3836     0.20     0.00        0.03         0.52
## 3837     0.04     0.00        0.04         0.52
## 3838     0.14     0.16        0.05         0.52
## 3839     0.20     0.00        0.07         0.52
## 3840     0.11     0.00        0.02         0.52
## 3841     0.08     0.22        0.04         0.52
## 3842     0.00     0.02        0.04         0.52
## 3843     0.12     0.00        0.06         0.52
## 3844     0.20     0.00        0.03         0.52
## 3845     0.07     0.16        0.01         0.52
## 3846     0.20     0.00        0.03         0.52
## 3847     0.07     0.28        0.02         0.52
## 3848     0.08     0.28        0.03         0.52
## 3849     0.29     0.00        0.06         0.52
## 3850     0.24     0.00        0.05         0.52
## 3851     0.15     0.01        0.10         0.52
## 3852     0.32     0.00        0.11         0.52
## 3853     0.02     0.00        0.03         0.52
## 3854     0.21     0.00        0.09         0.52
## 3855     0.13     0.18        0.04         0.52
## 3856     0.00     0.52        0.00         0.52
## 3857     0.19     0.02        0.06         0.52
## 3858     0.04     0.00        0.04         0.52
## 3859     0.20     0.00        0.07         0.52
## 3860     0.12     0.00        0.02         0.52
## 3861     0.14     0.00        0.01         0.52
## 3862     0.04     0.08        0.04         0.52
## 3863     0.00     0.01        0.04         0.52
## 3864     0.20     0.00        0.07         0.52
## 3865     0.07     0.31        0.03         0.52
## 3866     0.00     0.52        0.00         0.52
## 3867     0.20     0.00        0.07         0.52
## 3868     0.14     0.00        0.01         0.52
## 3869     0.14     0.00        0.01         0.52
## 3870     0.00     0.00        0.04         0.52
## 3871     0.11     0.20        0.03         0.52
## 3872     0.05     0.00        0.00         0.52
## 3873     0.12     0.00        0.05         0.52
## 3874     0.11     0.00        0.02         0.52
## 3875     0.19     0.00        0.03         0.52
## 3876     0.20     0.00        0.07         0.52
## 3877     0.02     0.00        0.04         0.51
## 3878     0.10     0.25        0.03         0.51
## 3879     0.46     0.00        0.06         0.51
## 3880     0.17     0.01        0.04         0.51
## 3881     0.01     0.00        0.00         0.02
## 3882     0.20     0.00        0.07         0.51
## 3883     0.13     0.00        0.04         0.51
## 3884     0.07     0.27        0.05         0.51
## 3885     0.25     0.00        0.09         0.51
## 3886     0.05     0.35        0.03         0.51
## 3887     0.12     0.00        0.04         0.51
## 3888     0.20     0.00        0.07         0.51
## 3889     0.29     0.00        0.04         0.51
## 3890     0.18     0.00        0.04         0.51
## 3891     0.20     0.07        0.12         0.51
## 3892     0.21     0.00        0.05         0.51
## 3893     0.23     0.02        0.09         0.51
## 3894     0.27     0.06        0.05         0.51
## 3895     0.21     0.00        0.05         0.51
## 3896     0.00     0.51        0.00         0.51
## 3897     0.10     0.00        0.01         0.51
## 3898     0.00     0.51        0.00         0.51
## 3899     0.20     0.00        0.07         0.51
## 3900     0.19     0.00        0.03         0.51
## 3901     0.00     0.00        0.04         0.51
## 3902     0.01     0.00        0.04         0.51
## 3903     0.03     0.17        0.03         0.51
## 3904     0.01     0.30        0.02         0.51
## 3905     0.14     0.00        0.01         0.51
## 3906     0.09     0.02        0.04         0.51
## 3907     0.09     0.00        0.01         0.51
## 3908     0.00     0.51        0.00         0.51
## 3909     0.26     0.22        0.02         0.51
## 3910     0.00     0.00        0.04         0.51
## 3911     0.13     0.00        0.05         0.51
## 3912     0.19     0.00        0.08         0.51
## 3913     0.02     0.00        0.04         0.51
## 3914     0.23     0.00        0.09         0.51
## 3915     0.04     0.00        0.02         0.51
## 3916     0.00     0.48        0.03         0.51
## 3917     0.14     0.00        0.01         0.51
## 3918     0.03     0.00        0.04         0.51
## 3919     0.12     0.20        0.04         0.51
## 3920     0.22     0.02        0.09         0.51
## 3921     0.04     0.11        0.04         0.51
## 3922     0.28     0.00        0.15         0.51
## 3923     0.16     0.00        0.05         0.51
## 3924     0.02     0.30        0.02         0.51
## 3925     0.03     0.07        0.04         0.51
## 3926     0.02     0.00        0.07         0.51
## 3927     0.21     0.00        0.12         0.51
## 3928     0.19     0.01        0.04         0.51
## 3929     0.01     0.00        0.03         0.51
## 3930     0.11     0.00        0.02         0.51
## 3931     0.19     0.00        0.06         0.51
## 3932     0.00     0.51        0.00         0.51
## 3933     0.05     0.00        0.04         0.51
## 3934     0.24     0.00        0.08         0.51
## 3935     0.42     0.00        0.09         0.51
## 3936     0.13     0.00        0.01         0.51
## 3937     0.19     0.00        0.06         0.51
## 3938     0.01     0.00        0.04         0.51
## 3939     0.11     0.00        0.02         0.51
## 3940     0.19     0.00        0.06         0.51
## 3941     0.03     0.00        0.01         0.51
## 3942     0.17     0.05        0.06         0.51
## 3943     0.17     0.00        0.05         0.51
## 3944     0.25     0.02        0.09         0.51
## 3945     0.19     0.00        0.06         0.51
## 3946     0.33     0.00        0.06         0.51
## 3947     0.19     0.00        0.03         0.51
## 3948     0.13     0.00        0.01         0.50
## 3949     0.35     0.00        0.06         0.50
## 3950     0.01     0.00        0.04         0.50
## 3951     0.02     0.00        0.07         0.50
## 3952     0.19     0.00        0.06         0.50
## 3953     0.00     0.02        0.00         0.02
## 3954     0.03     0.00        0.01         0.50
## 3955     0.15     0.04        0.04         0.50
## 3956     0.34     0.00        0.07         0.50
## 3957     0.12     0.00        0.07         0.50
## 3958     0.06     0.00        0.02         0.50
## 3959     0.12     0.11        0.05         0.50
## 3960     0.00     0.50        0.00         0.50
## 3961     0.02     0.32        0.02         0.50
## 3962     0.10     0.00        0.01         0.50
## 3963     0.19     0.00        0.03         0.50
## 3964     0.19     0.00        0.06         0.50
## 3965     0.19     0.00        0.06         0.50
## 3966     0.19     0.00        0.06         0.50
## 3967     0.03     0.00        0.01         0.50
## 3968     0.19     0.00        0.06         0.50
## 3969     0.19     0.00        0.06         0.50
## 3970     0.19     0.00        0.04         0.50
## 3971     0.26     0.00        0.04         0.50
## 3972     0.12     0.00        0.04         0.50
## 3973     0.03     0.00        0.04         0.50
## 3974     0.07     0.18        0.02         0.50
## 3975     0.11     0.07        0.05         0.50
## 3976     0.00     0.00        0.04         0.50
## 3977     0.09     0.00        0.01         0.50
## 3978     0.01     0.00        0.04         0.50
## 3979     0.19     0.00        0.06         0.50
## 3980     0.05     0.31        0.01         0.50
## 3981     0.04     0.17        0.02         0.50
## 3982     0.00     0.50        0.00         0.50
## 3983     0.18     0.00        0.05         0.50
## 3984     0.01     0.00        0.04         0.50
## 3985     0.02     0.03        0.04         0.50
## 3986     0.19     0.00        0.03         0.50
## 3987     0.10     0.08        0.02         0.50
## 3988     0.07     0.29        0.03         0.50
## 3989     0.25     0.01        0.13         0.50
## 3990     0.19     0.00        0.06         0.50
## 3991     0.22     0.00        0.08         0.50
## 3992     0.19     0.00        0.06         0.50
## 3993     0.16     0.00        0.04         0.50
## 3994     0.02     0.00        0.07         0.50
## 3995     0.00     0.00        0.03         0.50
## 3996     0.24     0.00        0.04         0.50
## 3997     0.00     0.00        0.04         0.50
## 3998     0.08     0.28        0.03         0.50
## 3999     0.17     0.00        0.05         0.50
## 4000     0.16     0.00        0.05         0.50
## 4001     0.10     0.00        0.01         0.50
## 4002     0.19     0.00        0.06         0.50
## 4003     0.00     0.50        0.00         0.50
## 4004     0.07     0.32        0.03         0.50
## 4005     0.19     0.00        0.06         0.50
## 4006     0.13     0.00        0.01         0.50
## 4007     0.00     0.50        0.00         0.50
## 4008     0.00     0.46        0.03         0.50
## 4009     0.02     0.00        0.07         0.50
## 4010     0.01     0.00        0.07         0.50
## 4011     0.20     0.00        0.08         0.50
## 4012     0.19     0.00        0.06         0.50
## 4013     0.20     0.01        0.04         0.50
## 4014     0.03     0.00        0.01         0.50
## 4015     0.19     0.00        0.06         0.50
## 4016     0.03     0.00        0.01         0.50
## 4017     0.03     0.00        0.01         0.50
## 4018     0.15     0.12        0.03         0.50
## 4019     0.00     0.00        0.04         0.49
## 4020     0.12     0.03        0.04         0.49
## 4021     0.17     0.13        0.03         0.49
## 4022     0.15     0.05        0.04         0.49
## 4023     0.02     0.00        0.04         0.49
## 4024     0.13     0.00        0.01         0.49
## 4025     0.20     0.00        0.08         0.49
## 4026     0.03     0.00        0.01         0.49
## 4027     0.00     0.49        0.00         0.49
## 4028     0.29     0.00        0.11         0.49
## 4029     0.01     0.00        0.07         0.49
## 4030     0.23     0.01        0.05         0.49
## 4031     0.13     0.02        0.04         0.49
## 4032     0.10     0.00        0.01         0.49
## 4033     0.15     0.07        0.03         0.49
## 4034     0.13     0.00        0.01         0.49
## 4035     0.13     0.00        0.02         0.49
## 4036     0.00     0.00        0.03         0.49
## 4037     0.00     0.00        0.04         0.49
## 4038     0.13     0.00        0.01         0.49
## 4039     0.10     0.24        0.03         0.49
## 4040     0.31     0.00        0.06         0.49
## 4041     0.00     0.49        0.00         0.49
## 4042     0.00     0.49        0.00         0.49
## 4043     0.11     0.00        0.02         0.49
## 4044     0.20     0.00        0.05         0.49
## 4045     0.12     0.16        0.03         0.49
## 4046     0.30     0.00        0.03         0.49
## 4047     0.18     0.03        0.05         0.49
## 4048     0.02     0.02        0.03         0.49
## 4049     0.23     0.00        0.07         0.49
## 4050     0.17     0.00        0.04         0.49
## 4051     0.00     0.49        0.00         0.49
## 4052     0.26     0.09        0.07         0.49
## 4053     0.19     0.00        0.06         0.49
## 4054     0.15     0.00        0.33         0.49
## 4055     0.19     0.00        0.06         0.49
## 4056     0.04     0.04        0.04         0.49
## 4057     0.17     0.00        0.04         0.49
## 4058     0.00     0.49        0.00         0.49
## 4059     0.30     0.00        0.05         0.49
## 4060     0.00     0.46        0.03         0.49
## 4061     0.01     0.00        0.22         0.49
## 4062     0.47     0.00        0.02         0.49
## 4063     0.45     0.00        0.03         0.49
## 4064     0.09     0.02        0.01         0.49
## 4065     0.19     0.00        0.06         0.49
## 4066     0.31     0.02        0.08         0.49
## 4067     0.11     0.00        0.02         0.49
## 4068     0.00     0.00        0.03         0.49
## 4069     0.18     0.00        0.03         0.49
## 4070     0.35     0.00        0.06         0.49
## 4071     0.16     0.02        0.04         0.49
## 4072     0.00     0.49        0.00         0.49
## 4073     0.10     0.05        0.03         0.49
## 4074     0.05     0.35        0.02         0.49
## 4075     0.00     0.49        0.00         0.49
## 4076     0.02     0.00        0.04         0.49
## 4077     0.45     0.00        0.03         0.49
## 4078     0.23     0.07        0.07         0.49
## 4079     0.06     0.00        0.04         0.49
## 4080     0.01     0.00        0.04         0.49
## 4081     0.21     0.01        0.08         0.49
## 4082     0.25     0.00        0.11         0.48
## 4083     0.02     0.00        0.04         0.48
## 4084     0.11     0.01        0.04         0.48
## 4085     0.48     0.00        0.00         0.48
## 4086     0.02     0.00        0.07         0.48
## 4087     0.18     0.05        0.09         0.48
## 4088     0.01     0.29        0.02         0.48
## 4089     0.13     0.00        0.01         0.48
## 4090     0.27     0.00        0.06         0.48
## 4091     0.03     0.00        0.04         0.48
## 4092     0.14     0.17        0.03         0.48
## 4093     0.13     0.00        0.01         0.48
## 4094     0.00     0.45        0.03         0.48
## 4095     0.11     0.00        0.02         0.48
## 4096     0.19     0.01        0.05         0.48
## 4097     0.03     0.00        0.01         0.48
## 4098     0.00     0.48        0.00         0.48
## 4099     0.17     0.00        0.05         0.48
## 4100     0.20     0.01        0.05         0.48
## 4101     0.24     0.00        0.05         0.48
## 4102     0.18     0.00        0.06         0.48
## 4103     0.02     0.00        0.07         0.48
## 4104     0.18     0.00        0.03         0.48
## 4105     0.03     0.00        0.04         0.48
## 4106     0.00     0.00        0.04         0.48
## 4107     0.18     0.00        0.03         0.48
## 4108     0.36     0.00        0.04         0.48
## 4109     0.15     0.00        0.10         0.48
## 4110     0.07     0.13        0.03         0.48
## 4111     0.21     0.00        0.05         0.48
## 4112     0.24     0.03        0.12         0.48
## 4113     0.18     0.00        0.06         0.48
## 4114     0.01     0.00        0.03         0.48
## 4115     0.04     0.00        0.00         0.48
## 4116     0.06     0.11        0.06         0.48
## 4117     0.02     0.00        0.07         0.48
## 4118     0.18     0.00        0.06         0.48
## 4119     0.26     0.00        0.04         0.48
## 4120     0.07     0.00        0.00         0.48
## 4121     0.18     0.00        0.03         0.48
## 4122     0.11     0.06        0.05         0.48
## 4123     0.43     0.00        0.05         0.48
## 4124     0.18     0.00        0.06         0.48
## 4125     0.24     0.00        0.05         0.48
## 4126     0.18     0.00        0.04         0.48
## 4127     0.25     0.01        0.05         0.48
## 4128     0.00     0.00        0.03         0.48
## 4129     0.01     0.07        0.02         0.48
## 4130     0.18     0.00        0.03         0.48
## 4131     0.02     0.00        0.04         0.48
## 4132     0.13     0.00        0.01         0.48
## 4133     0.01     0.31        0.02         0.48
## 4134     0.28     0.00        0.06         0.48
## 4135     0.06     0.27        0.02         0.48
## 4136     0.19     0.01        0.04         0.48
## 4137     0.11     0.00        0.02         0.48
## 4138     0.27     0.01        0.00         0.48
## 4139     0.05     0.00        0.24         0.48
## 4140     0.03     0.00        0.00         0.48
## 4141     0.40     0.00        0.01         0.48
## 4142     0.03     0.04        0.04         0.48
## 4143     0.18     0.00        0.06         0.48
## 4144     0.09     0.00        0.04         0.48
## 4145     0.27     0.00        0.06         0.48
## 4146     0.00     0.00        0.00         0.02
## 4147     0.11     0.19        0.04         0.47
## 4148     0.02     0.00        0.01         0.47
## 4149     0.16     0.04        0.03         0.47
## 4150     0.02     0.00        0.00         0.47
## 4151     0.11     0.18        0.03         0.47
## 4152     0.00     0.00        0.00         0.03
## 4153     0.16     0.01        0.07         0.47
## 4154     0.17     0.01        0.05         0.47
## 4155     0.18     0.00        0.06         0.47
## 4156     0.10     0.03        0.03         0.47
## 4157     0.02     0.00        0.06         0.47
## 4158     0.23     0.00        0.05         0.47
## 4159     0.01     0.00        0.04         0.47
## 4160     0.10     0.00        0.04         0.47
## 4161     0.00     0.47        0.00         0.47
## 4162     0.18     0.00        0.03         0.47
## 4163     0.04     0.03        0.04         0.47
## 4164     0.16     0.09        0.08         0.47
## 4165     0.17     0.00        0.08         0.47
## 4166     0.18     0.00        0.03         0.47
## 4167     0.18     0.00        0.06         0.47
## 4168     0.16     0.04        0.06         0.47
## 4169     0.28     0.00        0.04         0.47
## 4170     0.13     0.00        0.04         0.47
## 4171     0.00     0.47        0.00         0.47
## 4172     0.04     0.38        0.01         0.47
## 4173     0.01     0.00        0.04         0.47
## 4174     0.21     0.00        0.04         0.47
## 4175     0.00     0.46        0.01         0.47
## 4176     0.03     0.39        0.01         0.47
## 4177     0.18     0.00        0.06         0.47
## 4178     0.02     0.00        0.04         0.47
## 4179     0.30     0.05        0.12         0.47
## 4180     0.30     0.01        0.12         0.47
## 4181     0.45     0.00        0.02         0.47
## 4182     0.22     0.02        0.12         0.47
## 4183     0.00     0.47        0.00         0.47
## 4184     0.02     0.00        0.04         0.47
## 4185     0.25     0.00        0.08         0.47
## 4186     0.18     0.00        0.06         0.47
## 4187     0.06     0.08        0.05         0.47
## 4188     0.17     0.00        0.01         0.47
## 4189     0.08     0.00        0.01         0.47
## 4190     0.00     0.44        0.03         0.47
## 4191     0.08     0.00        0.01         0.47
## 4192     0.09     0.00        0.04         0.47
## 4193     0.29     0.00        0.18         0.47
## 4194     0.03     0.10        0.03         0.47
## 4195     0.02     0.00        0.00         0.47
## 4196     0.13     0.01        0.04         0.47
## 4197     0.13     0.00        0.04         0.47
## 4198     0.18     0.00        0.06         0.47
## 4199     0.10     0.00        0.02         0.47
## 4200     0.01     0.00        0.00         0.03
## 4201     0.05     0.00        0.05         0.47
## 4202     0.33     0.00        0.10         0.47
## 4203     0.18     0.00        0.03         0.47
## 4204     0.00     0.00        0.04         0.47
## 4205     0.00     0.00        0.03         0.47
## 4206     0.00     0.47        0.00         0.47
## 4207     0.00     0.47        0.00         0.47
## 4208     0.38     0.00        0.09         0.47
## 4209     0.03     0.00        0.17         0.47
## 4210     0.18     0.00        0.06         0.47
## 4211     0.07     0.00        0.04         0.47
## 4212     0.12     0.00        0.01         0.47
## 4213     0.01     0.00        0.06         0.47
## 4214     0.01     0.46        0.00         0.47
## 4215     0.18     0.00        0.03         0.47
## 4216     0.41     0.00        0.06         0.47
## 4217     0.12     0.00        0.01         0.47
## 4218     0.15     0.00        0.07         0.47
## 4219     0.00     0.22        0.02         0.47
## 4220     0.01     0.00        0.03         0.47
## 4221     0.18     0.00        0.06         0.47
## 4222     0.09     0.00        0.01         0.47
## 4223     0.08     0.07        0.01         0.47
## 4224     0.01     0.00        0.00         0.47
## 4225     0.18     0.00        0.06         0.46
## 4226     0.18     0.00        0.06         0.46
## 4227     0.15     0.00        0.05         0.46
## 4228     0.12     0.00        0.01         0.46
## 4229     0.06     0.00        0.05         0.46
## 4230     0.09     0.12        0.01         0.46
## 4231     0.11     0.00        0.02         0.46
## 4232     0.12     0.00        0.01         0.46
## 4233     0.00     0.03        0.00         0.03
## 4234     0.00     0.00        0.03         0.46
## 4235     0.17     0.00        0.03         0.46
## 4236     0.03     0.00        0.04         0.46
## 4237     0.17     0.01        0.07         0.46
## 4238     0.12     0.00        0.01         0.46
## 4239     0.15     0.06        0.05         0.46
## 4240     0.12     0.00        0.09         0.46
## 4241     0.00     0.46        0.00         0.46
## 4242     0.10     0.20        0.03         0.46
## 4243     0.00     0.46        0.00         0.46
## 4244     0.12     0.00        0.01         0.46
## 4245     0.29     0.00        0.05         0.46
## 4246     0.25     0.00        0.09         0.46
## 4247     0.12     0.00        0.01         0.46
## 4248     0.03     0.21        0.02         0.46
## 4249     0.03     0.02        0.04         0.46
## 4250     0.04     0.00        0.05         0.46
## 4251     0.16     0.00        0.04         0.46
## 4252     0.18     0.00        0.06         0.46
## 4253     0.01     0.00        0.06         0.46
## 4254     0.06     0.00        0.04         0.46
## 4255     0.09     0.00        0.04         0.46
## 4256     0.01     0.00        0.06         0.46
## 4257     0.12     0.00        0.01         0.46
## 4258     0.19     0.00        0.08         0.46
## 4259     0.17     0.00        0.03         0.46
## 4260     0.14     0.00        0.09         0.46
## 4261     0.00     0.00        0.03         0.46
## 4262     0.16     0.24        0.01         0.46
## 4263     0.17     0.00        0.03         0.46
## 4264     0.16     0.00        0.04         0.46
## 4265     0.01     0.00        0.06         0.46
## 4266     0.25     0.03        0.09         0.46
## 4267     0.12     0.00        0.04         0.46
## 4268     0.03     0.00        0.00         0.46
## 4269     0.18     0.00        0.06         0.46
## 4270     0.18     0.00        0.06         0.46
## 4271     0.12     0.00        0.01         0.46
## 4272     0.12     0.00        0.01         0.46
## 4273     0.19     0.00        0.07         0.46
## 4274     0.28     0.00        0.07         0.46
## 4275     0.01     0.12        0.03         0.46
## 4276     0.00     0.00        0.03         0.46
## 4277     0.09     0.00        0.04         0.46
## 4278     0.16     0.00        0.04         0.46
## 4279     0.05     0.00        0.03         0.46
## 4280     0.17     0.00        0.06         0.46
## 4281     0.00     0.46        0.00         0.46
## 4282     0.23     0.00        0.05         0.46
## 4283     0.24     0.00        0.12         0.46
## 4284     0.18     0.00        0.04         0.46
## 4285     0.12     0.00        0.04         0.46
## 4286     0.17     0.00        0.03         0.46
## 4287     0.13     0.00        0.04         0.46
## 4288     0.10     0.23        0.05         0.46
## 4289     0.17     0.00        0.03         0.46
## 4290     0.17     0.00        0.06         0.46
## 4291     0.38     0.01        0.06         0.46
## 4292     0.00     0.00        0.04         0.46
## 4293     0.17     0.00        0.05         0.46
## 4294     0.00     0.46        0.00         0.46
## 4295     0.11     0.17        0.04         0.46
## 4296     0.23     0.00        0.04         0.46
## 4297     0.00     0.45        0.01         0.46
## 4298     0.11     0.07        0.05         0.46
## 4299     0.00     0.00        0.03         0.46
## 4300     0.05     0.34        0.01         0.46
## 4301     0.20     0.00        0.04         0.46
## 4302     0.08     0.00        0.02         0.46
## 4303     0.00     0.00        0.03         0.46
## 4304     0.17     0.00        0.03         0.46
## 4305     0.02     0.01        0.04         0.46
## 4306     0.16     0.03        0.07         0.46
## 4307     0.35     0.00        0.10         0.46
## 4308     0.10     0.15        0.07         0.46
## 4309     0.00     0.45        0.00         0.45
## 4310     0.15     0.00        0.04         0.45
## 4311     0.03     0.38        0.02         0.45
## 4312     0.12     0.00        0.01         0.45
## 4313     0.13     0.09        0.08         0.45
## 4314     0.17     0.00        0.03         0.45
## 4315     0.21     0.00        0.04         0.45
## 4316     0.00     0.00        0.03         0.45
## 4317     0.00     0.45        0.00         0.45
## 4318     0.25     0.01        0.08         0.45
## 4319     0.00     0.45        0.00         0.45
## 4320     0.09     0.02        0.01         0.45
## 4321     0.06     0.00        0.03         0.45
## 4322     0.10     0.00        0.02         0.45
## 4323     0.00     0.45        0.00         0.45
## 4324     0.00     0.00        0.03         0.45
## 4325     0.06     0.16        0.01         0.45
## 4326     0.37     0.00        0.05         0.45
## 4327     0.17     0.00        0.06         0.45
## 4328     0.16     0.02        0.07         0.45
## 4329     0.03     0.00        0.03         0.45
## 4330     0.21     0.07        0.03         0.45
## 4331     0.00     0.03        0.00         0.03
## 4332     0.01     0.00        0.03         0.45
## 4333     0.01     0.00        0.06         0.45
## 4334     0.26     0.00        0.05         0.45
## 4335     0.00     0.00        0.03         0.45
## 4336     0.03     0.00        0.03         0.45
## 4337     0.11     0.00        0.04         0.45
## 4338     0.03     0.00        0.00         0.45
## 4339     0.17     0.00        0.03         0.45
## 4340     0.17     0.00        0.06         0.45
## 4341     0.00     0.42        0.03         0.45
## 4342     0.28     0.00        0.05         0.45
## 4343     0.17     0.00        0.06         0.45
## 4344     0.15     0.00        0.04         0.45
## 4345     0.10     0.00        0.02         0.45
## 4346     0.02     0.00        0.03         0.45
## 4347     0.02     0.00        0.00         0.45
## 4348     0.13     0.00        0.06         0.45
## 4349     0.11     0.01        0.04         0.45
## 4350     0.01     0.00        0.03         0.45
## 4351     0.21     0.00        0.07         0.45
## 4352     0.00     0.00        0.03         0.45
## 4353     0.18     0.15        0.05         0.45
## 4354     0.17     0.00        0.03         0.45
## 4355     0.14     0.00        0.04         0.45
## 4356     0.26     0.05        0.05         0.45
## 4357     0.12     0.00        0.01         0.45
## 4358     0.26     0.00        0.08         0.45
## 4359     0.00     0.45        0.00         0.45
## 4360     0.02     0.32        0.01         0.45
## 4361     0.00     0.45        0.00         0.45
## 4362     0.22     0.10        0.05         0.45
## 4363     0.17     0.00        0.06         0.45
## 4364     0.00     0.45        0.00         0.45
## 4365     0.08     0.00        0.01         0.45
## 4366     0.08     0.00        0.01         0.45
## 4367     0.13     0.07        0.06         0.45
## 4368     0.14     0.00        0.04         0.45
## 4369     0.33     0.00        0.03         0.45
## 4370     0.01     0.00        0.03         0.45
## 4371     0.00     0.00        0.03         0.45
## 4372     0.12     0.00        0.01         0.45
## 4373     0.03     0.00        0.20         0.45
## 4374     0.00     0.42        0.03         0.45
## 4375     0.19     0.00        0.05         0.45
## 4376     0.14     0.01        0.04         0.45
## 4377     0.12     0.00        0.01         0.45
## 4378     0.24     0.00        0.05         0.45
## 4379     0.00     0.00        0.00         0.03
## 4380     0.00     0.42        0.03         0.45
## 4381     0.00     0.03        0.00         0.03
## 4382     0.06     0.00        0.39         0.45
## 4383     0.13     0.06        0.08         0.45
## 4384     0.00     0.42        0.03         0.45
## 4385     0.02     0.00        0.34         0.45
## 4386     0.02     0.00        0.03         0.45
## 4387     0.03     0.36        0.01         0.45
## 4388     0.05     0.00        0.05         0.45
## 4389     0.17     0.00        0.03         0.45
## 4390     0.10     0.00        0.02         0.45
## 4391     0.04     0.00        0.03         0.45
## 4392     0.26     0.00        0.14         0.45
## 4393     0.09     0.00        0.01         0.45
## 4394     0.02     0.00        0.00         0.45
## 4395     0.09     0.00        0.01         0.45
## 4396     0.00     0.31        0.01         0.45
## 4397     0.07     0.00        0.01         0.45
## 4398     0.17     0.00        0.03         0.45
## 4399     0.17     0.00        0.06         0.45
## 4400     0.09     0.19        0.03         0.45
## 4401     0.16     0.13        0.03         0.45
## 4402     0.22     0.00        0.05         0.45
## 4403     0.03     0.00        0.00         0.45
## 4404     0.17     0.00        0.06         0.45
## 4405     0.12     0.00        0.01         0.45
## 4406     0.22     0.00        0.12         0.45
## 4407     0.16     0.00        0.04         0.45
## 4408     0.00     0.00        0.03         0.45
## 4409     0.11     0.00        0.04         0.45
## 4410     0.17     0.00        0.06         0.44
## 4411     0.15     0.00        0.08         0.44
## 4412     0.01     0.00        0.06         0.44
## 4413     0.01     0.00        0.06         0.44
## 4414     0.33     0.02        0.03         0.44
## 4415     0.02     0.00        0.00         0.44
## 4416     0.17     0.00        0.06         0.44
## 4417     0.01     0.00        0.06         0.44
## 4418     0.21     0.00        0.04         0.44
## 4419     0.11     0.00        0.04         0.44
## 4420     0.17     0.00        0.06         0.44
## 4421     0.21     0.00        0.04         0.44
## 4422     0.17     0.00        0.06         0.44
## 4423     0.12     0.00        0.02         0.44
## 4424     0.00     0.00        0.03         0.44
## 4425     0.13     0.00        0.04         0.44
## 4426     0.20     0.03        0.08         0.44
## 4427     0.01     0.02        0.00         0.44
## 4428     0.17     0.00        0.06         0.44
## 4429     0.10     0.00        0.02         0.44
## 4430     0.13     0.01        0.04         0.44
## 4431     0.15     0.00        0.04         0.44
## 4432     0.00     0.41        0.03         0.44
## 4433     0.08     0.00        0.01         0.44
## 4434     0.01     0.00        0.06         0.44
## 4435     0.20     0.00        0.05         0.44
## 4436     0.15     0.00        0.04         0.44
## 4437     0.10     0.00        0.02         0.44
## 4438     0.00     0.43        0.01         0.44
## 4439     0.17     0.00        0.03         0.44
## 4440     0.22     0.00        0.04         0.44
## 4441     0.05     0.30        0.03         0.44
## 4442     0.10     0.11        0.05         0.44
## 4443     0.12     0.00        0.04         0.44
## 4444     0.10     0.00        0.02         0.44
## 4445     0.29     0.00        0.05         0.44
## 4446     0.01     0.00        0.03         0.44
## 4447     0.04     0.01        0.04         0.44
## 4448     0.00     0.44        0.00         0.44
## 4449     0.17     0.00        0.03         0.44
## 4450     0.17     0.00        0.03         0.44
## 4451     0.00     0.44        0.00         0.44
## 4452     0.03     0.15        0.10         0.44
## 4453     0.08     0.00        0.01         0.44
## 4454     0.14     0.06        0.04         0.44
## 4455     0.00     0.00        0.03         0.44
## 4456     0.18     0.00        0.07         0.44
## 4457     0.09     0.00        0.01         0.44
## 4458     0.00     0.44        0.00         0.44
## 4459     0.17     0.00        0.03         0.44
## 4460     0.00     0.00        0.03         0.44
## 4461     0.00     0.00        0.03         0.44
## 4462     0.07     0.12        0.06         0.44
## 4463     0.08     0.00        0.02         0.44
## 4464     0.00     0.44        0.00         0.44
## 4465     0.17     0.00        0.03         0.44
## 4466     0.00     0.43        0.01         0.44
## 4467     0.14     0.00        0.04         0.44
## 4468     0.09     0.00        0.01         0.44
## 4469     0.12     0.00        0.01         0.44
## 4470     0.01     0.00        0.00         0.03
## 4471     0.00     0.44        0.00         0.44
## 4472     0.00     0.00        0.02         0.44
## 4473     0.00     0.03        0.00         0.03
## 4474     0.12     0.00        0.06         0.44
## 4475     0.09     0.00        0.01         0.44
## 4476     0.12     0.00        0.01         0.44
## 4477     0.11     0.01        0.03         0.44
## 4478     0.09     0.00        0.01         0.44
## 4479     0.12     0.00        0.01         0.44
## 4480     0.01     0.00        0.06         0.44
## 4481     0.06     0.00        0.38         0.44
## 4482     0.00     0.44        0.00         0.44
## 4483     0.00     0.00        0.03         0.44
## 4484     0.00     0.44        0.00         0.44
## 4485     0.00     0.44        0.00         0.44
## 4486     0.17     0.00        0.06         0.44
## 4487     0.00     0.00        0.03         0.44
## 4488     0.01     0.00        0.06         0.44
## 4489     0.09     0.08        0.07         0.44
## 4490     0.00     0.26        0.01         0.44
## 4491     0.07     0.00        0.02         0.44
## 4492     0.00     0.00        0.03         0.44
## 4493     0.10     0.07        0.01         0.43
## 4494     0.18     0.00        0.07         0.43
## 4495     0.13     0.06        0.03         0.43
## 4496     0.01     0.00        0.03         0.43
## 4497     0.17     0.00        0.06         0.43
## 4498     0.02     0.00        0.00         0.43
## 4499     0.12     0.00        0.01         0.43
## 4500     0.00     0.00        0.26         0.43
## 4501     0.16     0.00        0.03         0.43
## 4502     0.09     0.00        0.02         0.43
## 4503     0.12     0.00        0.01         0.43
## 4504     0.36     0.00        0.06         0.43
## 4505     0.01     0.00        0.06         0.43
## 4506     0.21     0.01        0.08         0.43
## 4507     0.00     0.00        0.03         0.43
## 4508     0.00     0.43        0.00         0.43
## 4509     0.02     0.00        0.02         0.43
## 4510     0.18     0.00        0.04         0.43
## 4511     0.04     0.00        0.04         0.43
## 4512     0.03     0.00        0.03         0.43
## 4513     0.17     0.00        0.06         0.43
## 4514     0.09     0.14        0.03         0.43
## 4515     0.16     0.00        0.03         0.43
## 4516     0.20     0.00        0.07         0.43
## 4517     0.17     0.00        0.06         0.43
## 4518     0.02     0.00        0.00         0.43
## 4519     0.17     0.00        0.06         0.43
## 4520     0.03     0.10        0.02         0.43
## 4521     0.11     0.00        0.01         0.43
## 4522     0.07     0.17        0.01         0.43
## 4523     0.00     0.43        0.00         0.43
## 4524     0.15     0.01        0.04         0.43
## 4525     0.07     0.21        0.03         0.43
## 4526     0.19     0.00        0.04         0.43
## 4527     0.11     0.00        0.01         0.43
## 4528     0.04     0.00        0.24         0.43
## 4529     0.16     0.00        0.06         0.43
## 4530     0.15     0.00        0.04         0.43
## 4531     0.05     0.00        0.03         0.43
## 4532     0.14     0.00        0.01         0.43
## 4533     0.06     0.07        0.06         0.43
## 4534     0.22     0.00        0.06         0.43
## 4535     0.01     0.00        0.03         0.43
## 4536     0.03     0.04        0.03         0.43
## 4537     0.02     0.00        0.01         0.03
## 4538     0.01     0.00        0.06         0.43
## 4539     0.38     0.00        0.05         0.43
## 4540     0.16     0.00        0.05         0.43
## 4541     0.07     0.24        0.03         0.43
## 4542     0.00     0.03        0.03         0.43
## 4543     0.07     0.25        0.02         0.43
## 4544     0.08     0.09        0.05         0.43
## 4545     0.19     0.00        0.08         0.43
## 4546     0.01     0.23        0.02         0.43
## 4547     0.16     0.00        0.05         0.43
## 4548     0.05     0.29        0.02         0.43
## 4549     0.34     0.00        0.07         0.43
## 4550     0.17     0.00        0.04         0.43
## 4551     0.09     0.00        0.01         0.43
## 4552     0.00     0.00        0.03         0.43
## 4553     0.01     0.00        0.03         0.43
## 4554     0.11     0.00        0.01         0.43
## 4555     0.18     0.00        0.03         0.43
## 4556     0.10     0.00        0.05         0.43
## 4557     0.08     0.00        0.01         0.43
## 4558     0.02     0.00        0.03         0.43
## 4559     0.00     0.00        0.03         0.43
## 4560     0.14     0.00        0.04         0.43
## 4561     0.16     0.00        0.05         0.43
## 4562     0.16     0.00        0.03         0.43
## 4563     0.17     0.00        0.07         0.43
## 4564     0.16     0.00        0.05         0.43
## 4565     0.17     0.00        0.10         0.43
## 4566     0.20     0.00        0.12         0.43
## 4567     0.00     0.00        0.03         0.42
## 4568     0.00     0.42        0.00         0.42
## 4569     0.00     0.42        0.00         0.42
## 4570     0.09     0.00        0.01         0.42
## 4571     0.16     0.00        0.04         0.42
## 4572     0.19     0.00        0.11         0.42
## 4573     0.02     0.16        0.02         0.42
## 4574     0.16     0.00        0.05         0.42
## 4575     0.05     0.22        0.01         0.42
## 4576     0.13     0.00        0.06         0.42
## 4577     0.01     0.00        0.06         0.42
## 4578     0.16     0.00        0.05         0.42
## 4579     0.09     0.00        0.01         0.42
## 4580     0.10     0.00        0.01         0.42
## 4581     0.15     0.00        0.04         0.42
## 4582     0.16     0.00        0.05         0.42
## 4583     0.16     0.00        0.03         0.42
## 4584     0.00     0.42        0.00         0.42
## 4585     0.16     0.00        0.03         0.42
## 4586     0.13     0.04        0.04         0.42
## 4587     0.08     0.00        0.01         0.42
## 4588     0.23     0.00        0.04         0.42
## 4589     0.00     0.41        0.01         0.42
## 4590     0.00     0.00        0.03         0.42
## 4591     0.04     0.01        0.04         0.42
## 4592     0.20     0.10        0.11         0.42
## 4593     0.16     0.00        0.03         0.42
## 4594     0.16     0.00        0.05         0.42
## 4595     0.16     0.00        0.03         0.42
## 4596     0.01     0.16        0.03         0.42
## 4597     0.19     0.00        0.04         0.42
## 4598     0.01     0.00        0.03         0.42
## 4599     0.00     0.00        0.00         0.42
## 4600     0.16     0.00        0.03         0.42
## 4601     0.00     0.42        0.00         0.42
## 4602     0.09     0.00        0.02         0.42
## 4603     0.11     0.00        0.01         0.42
## 4604     0.16     0.00        0.05         0.42
## 4605     0.16     0.00        0.05         0.42
## 4606     0.16     0.00        0.05         0.42
## 4607     0.03     0.04        0.03         0.42
## 4608     0.01     0.00        0.06         0.42
## 4609     0.17     0.03        0.04         0.42
## 4610     0.11     0.00        0.01         0.42
## 4611     0.02     0.00        0.03         0.42
## 4612     0.11     0.00        0.01         0.42
## 4613     0.16     0.00        0.03         0.42
## 4614     0.00     0.00        0.03         0.42
## 4615     0.00     0.39        0.03         0.42
## 4616     0.00     0.00        0.03         0.42
## 4617     0.00     0.42        0.00         0.42
## 4618     0.05     0.00        0.02         0.42
## 4619     0.00     0.42        0.00         0.42
## 4620     0.08     0.12        0.03         0.42
## 4621     0.16     0.00        0.05         0.42
## 4622     0.06     0.00        0.00         0.42
## 4623     0.07     0.00        0.00         0.42
## 4624     0.07     0.00        0.00         0.42
## 4625     0.00     0.39        0.03         0.42
## 4626     0.07     0.00        0.00         0.42
## 4627     0.08     0.00        0.01         0.42
## 4628     0.16     0.00        0.07         0.42
## 4629     0.25     0.02        0.06         0.42
## 4630     0.01     0.00        0.06         0.42
## 4631     0.15     0.00        0.03         0.42
## 4632     0.09     0.00        0.02         0.42
## 4633     0.08     0.00        0.01         0.42
## 4634     0.03     0.00        0.03         0.42
## 4635     0.00     0.42        0.00         0.42
## 4636     0.11     0.00        0.01         0.42
## 4637     0.16     0.00        0.05         0.42
## 4638     0.00     0.42        0.00         0.42
## 4639     0.08     0.00        0.01         0.42
## 4640     0.00     0.00        0.03         0.42
## 4641     0.16     0.00        0.05         0.42
## 4642     0.03     0.00        0.03         0.42
## 4643     0.03     0.00        0.03         0.42
## 4644     0.10     0.16        0.03         0.42
## 4645     0.00     0.00        0.03         0.42
## 4646     0.16     0.00        0.05         0.42
## 4647     0.08     0.00        0.01         0.42
## 4648     0.14     0.05        0.05         0.42
## 4649     0.12     0.03        0.05         0.42
## 4650     0.05     0.13        0.02         0.42
## 4651     0.02     0.35        0.03         0.42
## 4652     0.11     0.00        0.01         0.42
## 4653     0.09     0.00        0.01         0.42
## 4654     0.17     0.03        0.04         0.42
## 4655     0.09     0.00        0.01         0.42
## 4656     0.13     0.00        0.08         0.42
## 4657     0.00     0.00        0.03         0.42
## 4658     0.11     0.09        0.03         0.42
## 4659     0.12     0.11        0.03         0.42
## 4660     0.21     0.00        0.08         0.42
## 4661     0.00     0.25        0.01         0.42
## 4662     0.18     0.00        0.07         0.42
## 4663     0.09     0.00        0.01         0.42
## 4664     0.28     0.00        0.14         0.42
## 4665     0.16     0.00        0.05         0.42
## 4666     0.12     0.10        0.03         0.42
## 4667     0.11     0.12        0.03         0.42
## 4668     0.16     0.00        0.05         0.42
## 4669     0.09     0.04        0.07         0.42
## 4670     0.16     0.00        0.05         0.42
## 4671     0.00     0.42        0.00         0.42
## 4672     0.05     0.06        0.04         0.42
## 4673     0.10     0.00        0.02         0.42
## 4674     0.02     0.00        0.03         0.41
## 4675     0.16     0.00        0.05         0.41
## 4676     0.12     0.11        0.04         0.41
## 4677     0.12     0.00        0.04         0.41
## 4678     0.00     0.41        0.00         0.41
## 4679     0.16     0.00        0.05         0.41
## 4680     0.11     0.00        0.01         0.41
## 4681     0.16     0.00        0.05         0.41
## 4682     0.11     0.00        0.01         0.41
## 4683     0.07     0.15        0.06         0.41
## 4684     0.01     0.00        0.00         0.03
## 4685     0.00     0.00        0.00         0.41
## 4686     0.21     0.05        0.11         0.41
## 4687     0.00     0.41        0.00         0.41
## 4688     0.16     0.00        0.03         0.41
## 4689     0.01     0.00        0.06         0.41
## 4690     0.39     0.00        0.02         0.41
## 4691     0.01     0.00        0.03         0.41
## 4692     0.16     0.00        0.05         0.41
## 4693     0.16     0.00        0.03         0.41
## 4694     0.13     0.00        0.02         0.41
## 4695     0.00     0.41        0.00         0.41
## 4696     0.16     0.00        0.03         0.41
## 4697     0.16     0.00        0.03         0.41
## 4698     0.00     0.39        0.03         0.41
## 4699     0.17     0.02        0.06         0.41
## 4700     0.00     0.41        0.00         0.41
## 4701     0.10     0.00        0.03         0.41
## 4702     0.15     0.00        0.09         0.41
## 4703     0.19     0.00        0.04         0.41
## 4704     0.22     0.00        0.05         0.41
## 4705     0.16     0.00        0.04         0.41
## 4706     0.16     0.00        0.05         0.41
## 4707     0.00     0.41        0.00         0.41
## 4708     0.03     0.04        0.03         0.41
## 4709     0.08     0.09        0.04         0.41
## 4710     0.16     0.00        0.05         0.41
## 4711     0.08     0.00        0.06         0.41
## 4712     0.00     0.41        0.00         0.41
## 4713     0.01     0.00        0.06         0.41
## 4714     0.10     0.00        0.04         0.41
## 4715     0.03     0.00        0.03         0.41
## 4716     0.00     0.00        0.04         0.41
## 4717     0.16     0.00        0.03         0.41
## 4718     0.23     0.00        0.09         0.41
## 4719     0.00     0.41        0.00         0.41
## 4720     0.10     0.00        0.07         0.41
## 4721     0.02     0.00        0.03         0.41
## 4722     0.00     0.41        0.00         0.41
## 4723     0.03     0.00        0.03         0.41
## 4724     0.07     0.00        0.06         0.41
## 4725     0.08     0.00        0.03         0.41
## 4726     0.16     0.00        0.03         0.41
## 4727     0.14     0.00        0.04         0.41
## 4728     0.00     0.41        0.00         0.41
## 4729     0.02     0.25        0.04         0.41
## 4730     0.07     0.00        0.00         0.41
## 4731     0.27     0.00        0.06         0.41
## 4732     0.16     0.00        0.05         0.41
## 4733     0.26     0.00        0.09         0.41
## 4734     0.16     0.00        0.05         0.41
## 4735     0.09     0.16        0.03         0.41
## 4736     0.00     0.00        0.02         0.41
## 4737     0.19     0.00        0.04         0.41
## 4738     0.13     0.00        0.04         0.41
## 4739     0.00     0.38        0.03         0.41
## 4740     0.15     0.00        0.07         0.41
## 4741     0.23     0.00        0.04         0.41
## 4742     0.11     0.00        0.04         0.41
## 4743     0.18     0.00        0.07         0.41
## 4744     0.06     0.00        0.20         0.41
## 4745     0.10     0.08        0.03         0.41
## 4746     0.12     0.04        0.03         0.41
## 4747     0.02     0.01        0.03         0.41
## 4748     0.08     0.19        0.03         0.41
## 4749     0.16     0.00        0.05         0.41
## 4750     0.08     0.00        0.01         0.41
## 4751     0.01     0.00        0.03         0.41
## 4752     0.01     0.00        0.06         0.41
## 4753     0.00     0.41        0.00         0.41
## 4754     0.15     0.00        0.03         0.41
## 4755     0.10     0.12        0.03         0.41
## 4756     0.01     0.00        0.06         0.41
## 4757     0.00     0.40        0.01         0.41
## 4758     0.02     0.00        0.03         0.41
## 4759     0.16     0.00        0.04         0.41
## 4760     0.04     0.00        0.03         0.41
## 4761     0.12     0.00        0.06         0.41
## 4762     0.09     0.00        0.03         0.41
## 4763     0.17     0.00        0.06         0.41
## 4764     0.00     0.41        0.00         0.41
## 4765     0.02     0.00        0.16         0.41
## 4766     0.00     0.41        0.00         0.41
## 4767     0.01     0.00        0.06         0.41
## 4768     0.00     0.41        0.00         0.41
## 4769     0.16     0.00        0.05         0.41
## 4770     0.13     0.00        0.04         0.41
## 4771     0.11     0.00        0.04         0.41
## 4772     0.15     0.00        0.03         0.41
## 4773     0.01     0.00        0.06         0.41
## 4774     0.31     0.00        0.07         0.41
## 4775     0.12     0.06        0.05         0.41
## 4776     0.18     0.00        0.04         0.41
## 4777     0.00     0.00        0.03         0.41
## 4778     0.15     0.00        0.05         0.41
## 4779     0.15     0.00        0.03         0.40
## 4780     0.15     0.00        0.03         0.40
## 4781     0.02     0.00        0.00         0.40
## 4782     0.26     0.00        0.07         0.40
## 4783     0.13     0.26        0.01         0.40
## 4784     0.01     0.00        0.03         0.40
## 4785     0.02     0.00        0.00         0.40
## 4786     0.20     0.00        0.04         0.40
## 4787     0.06     0.16        0.06         0.40
## 4788     0.03     0.01        0.03         0.40
## 4789     0.08     0.00        0.01         0.40
## 4790     0.04     0.01        0.04         0.40
## 4791     0.20     0.00        0.08         0.40
## 4792     0.19     0.00        0.04         0.40
## 4793     0.00     0.40        0.00         0.40
## 4794     0.21     0.00        0.08         0.40
## 4795     0.00     0.40        0.00         0.40
## 4796     0.01     0.00        0.05         0.40
## 4797     0.15     0.00        0.05         0.40
## 4798     0.01     0.00        0.00         0.03
## 4799     0.00     0.00        0.03         0.40
## 4800     0.00     0.40        0.00         0.40
## 4801     0.20     0.02        0.08         0.40
## 4802     0.02     0.00        0.00         0.40
## 4803     0.15     0.00        0.05         0.40
## 4804     0.08     0.00        0.01         0.40
## 4805     0.03     0.04        0.03         0.40
## 4806     0.01     0.09        0.03         0.40
## 4807     0.00     0.40        0.00         0.40
## 4808     0.01     0.00        0.03         0.40
## 4809     0.15     0.00        0.05         0.40
## 4810     0.11     0.00        0.01         0.40
## 4811     0.00     0.38        0.03         0.40
## 4812     0.07     0.07        0.01         0.40
## 4813     0.15     0.00        0.03         0.40
## 4814     0.08     0.00        0.01         0.40
## 4815     0.08     0.00        0.04         0.40
## 4816     0.00     0.40        0.00         0.40
## 4817     0.06     0.00        0.03         0.40
## 4818     0.03     0.00        0.03         0.40
## 4819     0.08     0.08        0.03         0.40
## 4820     0.00     0.00        0.03         0.40
## 4821     0.14     0.00        0.04         0.40
## 4822     0.00     0.40        0.00         0.40
## 4823     0.15     0.00        0.03         0.40
## 4824     0.19     0.00        0.07         0.40
## 4825     0.01     0.00        0.27         0.40
## 4826     0.00     0.40        0.00         0.40
## 4827     0.07     0.00        0.00         0.40
## 4828     0.07     0.00        0.00         0.40
## 4829     0.03     0.00        0.00         0.40
## 4830     0.07     0.00        0.00         0.40
## 4831     0.15     0.00        0.05         0.40
## 4832     0.01     0.00        0.05         0.40
## 4833     0.15     0.00        0.03         0.40
## 4834     0.10     0.00        0.03         0.40
## 4835     0.30     0.00        0.04         0.40
## 4836     0.15     0.00        0.05         0.40
## 4837     0.01     0.00        0.05         0.40
## 4838     0.17     0.00        0.04         0.40
## 4839     0.15     0.00        0.05         0.40
## 4840     0.17     0.00        0.06         0.40
## 4841     0.11     0.00        0.01         0.40
## 4842     0.01     0.00        0.00         0.40
## 4843     0.07     0.00        0.01         0.40
## 4844     0.08     0.00        0.01         0.40
## 4845     0.14     0.00        0.04         0.40
## 4846     0.14     0.00        0.02         0.40
## 4847     0.15     0.00        0.03         0.40
## 4848     0.00     0.39        0.01         0.40
## 4849     0.11     0.00        0.01         0.40
## 4850     0.03     0.00        0.03         0.40
## 4851     0.05     0.00        0.03         0.40
## 4852     0.16     0.00        0.04         0.40
## 4853     0.14     0.04        0.03         0.40
## 4854     0.23     0.00        0.05         0.40
## 4855     0.15     0.00        0.03         0.40
## 4856     0.00     0.40        0.00         0.40
## 4857     0.12     0.01        0.03         0.40
## 4858     0.16     0.00        0.07         0.40
## 4859     0.00     0.00        0.00         0.03
## 4860     0.08     0.00        0.01         0.40
## 4861     0.03     0.00        0.02         0.40
## 4862     0.00     0.37        0.03         0.40
## 4863     0.04     0.24        0.02         0.40
## 4864     0.15     0.00        0.05         0.40
## 4865     0.15     0.00        0.03         0.40
## 4866     0.01     0.00        0.00         0.03
## 4867     0.12     0.00        0.06         0.40
## 4868     0.32     0.00        0.07         0.40
## 4869     0.00     0.40        0.00         0.40
## 4870     0.08     0.00        0.01         0.40
## 4871     0.10     0.00        0.03         0.40
## 4872     0.00     0.00        0.03         0.40
## 4873     0.19     0.00        0.03         0.40
## 4874     0.06     0.01        0.03         0.40
## 4875     0.00     0.40        0.00         0.40
## 4876     0.13     0.00        0.04         0.40
## 4877     0.01     0.00        0.05         0.40
## 4878     0.15     0.00        0.05         0.39
## 4879     0.15     0.00        0.07         0.39
## 4880     0.15     0.00        0.05         0.39
## 4881     0.11     0.00        0.02         0.39
## 4882     0.23     0.01        0.09         0.39
## 4883     0.17     0.00        0.03         0.39
## 4884     0.15     0.01        0.05         0.39
## 4885     0.18     0.00        0.06         0.39
## 4886     0.01     0.00        0.00         0.39
## 4887     0.00     0.00        0.03         0.39
## 4888     0.14     0.03        0.06         0.39
## 4889     0.18     0.00        0.07         0.39
## 4890     0.01     0.00        0.03         0.39
## 4891     0.00     0.00        0.03         0.39
## 4892     0.00     0.39        0.00         0.39
## 4893     0.15     0.00        0.03         0.39
## 4894     0.15     0.00        0.03         0.39
## 4895     0.02     0.00        0.00         0.39
## 4896     0.00     0.39        0.00         0.39
## 4897     0.10     0.00        0.01         0.39
## 4898     0.02     0.00        0.03         0.39
## 4899     0.01     0.01        0.05         0.39
## 4900     0.17     0.00        0.09         0.39
## 4901     0.08     0.00        0.01         0.39
## 4902     0.14     0.04        0.04         0.39
## 4903     0.00     0.39        0.00         0.39
## 4904     0.00     0.00        0.00         0.39
## 4905     0.26     0.00        0.05         0.39
## 4906     0.00     0.00        0.03         0.39
## 4907     0.12     0.00        0.03         0.39
## 4908     0.07     0.03        0.06         0.39
## 4909     0.02     0.00        0.00         0.39
## 4910     0.00     0.00        0.03         0.39
## 4911     0.05     0.16        0.04         0.39
## 4912     0.15     0.00        0.03         0.39
## 4913     0.00     0.00        0.03         0.39
## 4914     0.08     0.00        0.01         0.39
## 4915     0.16     0.00        0.05         0.39
## 4916     0.01     0.03        0.05         0.39
## 4917     0.00     0.37        0.03         0.39
## 4918     0.04     0.15        0.02         0.39
## 4919     0.17     0.01        0.04         0.39
## 4920     0.19     0.00        0.06         0.39
## 4921     0.13     0.00        0.04         0.39
## 4922     0.17     0.00        0.03         0.39
## 4923     0.02     0.00        0.03         0.39
## 4924     0.17     0.00        0.04         0.39
## 4925     0.06     0.05        0.03         0.39
## 4926     0.00     0.39        0.00         0.39
## 4927     0.32     0.00        0.07         0.39
## 4928     0.08     0.00        0.01         0.39
## 4929     0.01     0.00        0.07         0.39
## 4930     0.10     0.00        0.01         0.39
## 4931     0.03     0.00        0.00         0.39
## 4932     0.00     0.34        0.05         0.39
## 4933     0.07     0.00        0.00         0.39
## 4934     0.07     0.00        0.00         0.39
## 4935     0.00     0.00        0.00         0.03
## 4936     0.06     0.09        0.01         0.39
## 4937     0.32     0.00        0.07         0.39
## 4938     0.15     0.00        0.05         0.39
## 4939     0.00     0.00        0.03         0.39
## 4940     0.13     0.06        0.04         0.39
## 4941     0.15     0.00        0.05         0.39
## 4942     0.00     0.00        0.02         0.39
## 4943     0.12     0.00        0.04         0.39
## 4944     0.14     0.00        0.03         0.39
## 4945     0.00     0.39        0.00         0.39
## 4946     0.15     0.00        0.05         0.39
## 4947     0.02     0.00        0.04         0.39
## 4948     0.11     0.00        0.04         0.39
## 4949     0.24     0.00        0.08         0.39
## 4950     0.02     0.00        0.03         0.39
## 4951     0.15     0.00        0.05         0.39
## 4952     0.15     0.00        0.07         0.39
## 4953     0.00     0.39        0.00         0.39
## 4954     0.13     0.00        0.03         0.39
## 4955     0.00     0.39        0.00         0.39
## 4956     0.01     0.00        0.03         0.39
## 4957     0.01     0.00        0.03         0.39
## 4958     0.10     0.00        0.01         0.39
## 4959     0.15     0.00        0.05         0.39
## 4960     0.00     0.00        0.04         0.39
## 4961     0.00     0.39        0.00         0.39
## 4962     0.15     0.00        0.05         0.39
## 4963     0.08     0.00        0.01         0.39
## 4964     0.09     0.00        0.03         0.39
## 4965     0.00     0.00        0.03         0.39
## 4966     0.15     0.00        0.05         0.39
## 4967     0.15     0.00        0.05         0.39
## 4968     0.02     0.00        0.00         0.39
## 4969     0.00     0.36        0.03         0.39
## 4970     0.05     0.20        0.01         0.39
## 4971     0.08     0.01        0.03         0.39
## 4972     0.15     0.00        0.04         0.39
## 4973     0.36     0.00        0.02         0.39
## 4974     0.10     0.00        0.01         0.39
## 4975     0.00     0.00        0.00         0.38
## 4976     0.17     0.03        0.06         0.38
## 4977     0.15     0.00        0.05         0.38
## 4978     0.04     0.28        0.01         0.38
## 4979     0.00     0.20        0.01         0.38
## 4980     0.15     0.00        0.03         0.38
## 4981     0.23     0.00        0.07         0.38
## 4982     0.00     0.38        0.00         0.38
## 4983     0.05     0.25        0.02         0.38
## 4984     0.00     0.38        0.00         0.38
## 4985     0.15     0.00        0.03         0.38
## 4986     0.05     0.12        0.05         0.38
## 4987     0.00     0.36        0.03         0.38
## 4988     0.11     0.00        0.04         0.38
## 4989     0.08     0.00        0.01         0.38
## 4990     0.15     0.00        0.05         0.38
## 4991     0.00     0.00        0.03         0.38
## 4992     0.12     0.06        0.03         0.38
## 4993     0.00     0.38        0.00         0.38
## 4994     0.18     0.00        0.03         0.38
## 4995     0.07     0.00        0.04         0.38
## 4996     0.35     0.00        0.03         0.38
## 4997     0.01     0.37        0.00         0.38
## 4998     0.17     0.00        0.07         0.38
## 4999     0.10     0.00        0.01         0.38
## 5000     0.04     0.19        0.03         0.38
## 5001     0.15     0.00        0.05         0.38
## 5002     0.08     0.00        0.01         0.38
## 5003     0.12     0.00        0.03         0.38
## 5004     0.00     0.31        0.01         0.38
## 5005     0.00     0.38        0.00         0.38
## 5006     0.10     0.00        0.01         0.38
## 5007     0.00     0.00        0.28         0.38
## 5008     0.15     0.00        0.05         0.38
## 5009     0.05     0.00        0.04         0.38
## 5010     0.00     0.38        0.00         0.38
## 5011     0.23     0.00        0.04         0.38
## 5012     0.00     0.00        0.03         0.38
## 5013     0.08     0.00        0.01         0.38
## 5014     0.11     0.00        0.06         0.38
## 5015     0.08     0.17        0.03         0.38
## 5016     0.20     0.00        0.03         0.38
## 5017     0.22     0.00        0.04         0.38
## 5018     0.14     0.00        0.02         0.38
## 5019     0.00     0.36        0.02         0.38
## 5020     0.15     0.00        0.05         0.38
## 5021     0.15     0.00        0.05         0.38
## 5022     0.00     0.38        0.00         0.38
## 5023     0.08     0.00        0.01         0.38
## 5024     0.15     0.00        0.05         0.38
## 5025     0.15     0.02        0.06         0.38
## 5026     0.10     0.00        0.01         0.38
## 5027     0.11     0.10        0.02         0.38
## 5028     0.15     0.00        0.05         0.38
## 5029     0.03     0.00        0.03         0.38
## 5030     0.04     0.00        0.04         0.38
## 5031     0.00     0.36        0.02         0.38
## 5032     0.05     0.25        0.02         0.38
## 5033     0.15     0.00        0.05         0.38
## 5034     0.00     0.38        0.00         0.38
## 5035     0.21     0.00        0.04         0.38
## 5036     0.15     0.00        0.05         0.38
## 5037     0.01     0.00        0.05         0.38
## 5038     0.00     0.00        0.17         0.38
## 5039     0.02     0.00        0.02         0.38
## 5040     0.15     0.01        0.06         0.38
## 5041     0.12     0.00        0.07         0.38
## 5042     0.23     0.00        0.04         0.38
## 5043     0.00     0.38        0.00         0.38
## 5044     0.14     0.00        0.02         0.38
## 5045     0.20     0.00        0.04         0.38
## 5046     0.08     0.00        0.01         0.38
## 5047     0.01     0.00        0.05         0.38
## 5048     0.14     0.00        0.02         0.38
## 5049     0.00     0.38        0.00         0.38
## 5050     0.15     0.00        0.09         0.38
## 5051     0.06     0.07        0.01         0.38
## 5052     0.00     0.38        0.00         0.38
## 5053     0.05     0.20        0.01         0.38
## 5054     0.14     0.00        0.02         0.38
## 5055     0.14     0.00        0.02         0.38
## 5056     0.09     0.00        0.03         0.38
## 5057     0.29     0.01        0.05         0.38
## 5058     0.16     0.00        0.06         0.38
## 5059     0.13     0.00        0.06         0.38
## 5060     0.00     0.00        0.26         0.38
## 5061     0.03     0.00        0.03         0.38
## 5062     0.02     0.00        0.01         0.04
## 5063     0.00     0.00        0.03         0.38
## 5064     0.12     0.00        0.03         0.38
## 5065     0.02     0.00        0.00         0.38
## 5066     0.00     0.00        0.02         0.38
## 5067     0.05     0.25        0.03         0.38
## 5068     0.14     0.00        0.05         0.38
## 5069     0.08     0.00        0.01         0.38
## 5070     0.00     0.38        0.00         0.38
## 5071     0.07     0.00        0.07         0.38
## 5072     0.20     0.00        0.06         0.38
## 5073     0.01     0.00        0.03         0.38
## 5074     0.13     0.11        0.02         0.38
## 5075     0.01     0.06        0.02         0.38
## 5076     0.02     0.21        0.01         0.38
## 5077     0.03     0.00        0.03         0.38
## 5078     0.17     0.00        0.06         0.38
## 5079     0.03     0.00        0.01         0.04
## 5080     0.08     0.00        0.01         0.38
## 5081     0.03     0.00        0.03         0.38
## 5082     0.00     0.00        0.03         0.37
## 5083     0.02     0.00        0.00         0.37
## 5084     0.00     0.00        0.03         0.37
## 5085     0.07     0.19        0.02         0.37
## 5086     0.00     0.00        0.03         0.37
## 5087     0.12     0.00        0.04         0.37
## 5088     0.19     0.00        0.07         0.37
## 5089     0.03     0.13        0.02         0.37
## 5090     0.17     0.00        0.07         0.37
## 5091     0.03     0.00        0.03         0.37
## 5092     0.00     0.35        0.02         0.37
## 5093     0.00     0.00        0.02         0.37
## 5094     0.21     0.00        0.04         0.37
## 5095     0.00     0.00        0.21         0.37
## 5096     0.07     0.00        0.01         0.37
## 5097     0.15     0.03        0.06         0.37
## 5098     0.12     0.04        0.04         0.37
## 5099     0.08     0.00        0.01         0.37
## 5100     0.00     0.00        0.03         0.37
## 5101     0.00     0.00        0.03         0.37
## 5102     0.06     0.21        0.02         0.37
## 5103     0.14     0.00        0.05         0.37
## 5104     0.17     0.00        0.04         0.37
## 5105     0.14     0.00        0.03         0.37
## 5106     0.00     0.37        0.00         0.37
## 5107     0.01     0.00        0.03         0.37
## 5108     0.13     0.00        0.03         0.37
## 5109     0.07     0.00        0.01         0.37
## 5110     0.14     0.00        0.05         0.37
## 5111     0.14     0.00        0.05         0.37
## 5112     0.18     0.01        0.10         0.37
## 5113     0.14     0.00        0.05         0.37
## 5114     0.14     0.00        0.05         0.37
## 5115     0.00     0.00        0.03         0.37
## 5116     0.00     0.37        0.00         0.37
## 5117     0.00     0.37        0.00         0.37
## 5118     0.13     0.00        0.03         0.37
## 5119     0.18     0.00        0.06         0.37
## 5120     0.01     0.00        0.05         0.37
## 5121     0.00     0.35        0.02         0.37
## 5122     0.12     0.01        0.03         0.37
## 5123     0.20     0.00        0.11         0.37
## 5124     0.00     0.00        0.02         0.37
## 5125     0.00     0.32        0.05         0.37
## 5126     0.06     0.00        0.00         0.37
## 5127     0.06     0.00        0.00         0.37
## 5128     0.02     0.00        0.00         0.37
## 5129     0.07     0.00        0.01         0.37
## 5130     0.19     0.02        0.10         0.37
## 5131     0.17     0.00        0.06         0.37
## 5132     0.17     0.00        0.10         0.37
## 5133     0.33     0.00        0.03         0.37
## 5134     0.07     0.00        0.01         0.37
## 5135     0.00     0.37        0.00         0.37
## 5136     0.10     0.00        0.01         0.37
## 5137     0.17     0.01        0.07         0.37
## 5138     0.15     0.00        0.04         0.37
## 5139     0.00     0.36        0.01         0.37
## 5140     0.18     0.02        0.06         0.37
## 5141     0.00     0.00        0.03         0.37
## 5142     0.00     0.00        0.03         0.37
## 5143     0.00     0.37        0.00         0.37
## 5144     0.13     0.02        0.04         0.37
## 5145     0.00     0.00        0.00         0.37
## 5146     0.08     0.15        0.02         0.37
## 5147     0.01     0.02        0.03         0.37
## 5148     0.00     0.37        0.00         0.37
## 5149     0.07     0.18        0.02         0.37
## 5150     0.00     0.00        0.03         0.37
## 5151     0.22     0.00        0.03         0.37
## 5152     0.21     0.00        0.07         0.37
## 5153     0.00     0.37        0.00         0.37
## 5154     0.19     0.00        0.07         0.37
## 5155     0.00     0.37        0.00         0.37
## 5156     0.12     0.00        0.05         0.37
## 5157     0.13     0.00        0.06         0.37
## 5158     0.05     0.00        0.07         0.37
## 5159     0.32     0.00        0.04         0.37
## 5160     0.01     0.00        0.05         0.37
## 5161     0.00     0.00        0.03         0.37
## 5162     0.02     0.00        0.03         0.36
## 5163     0.00     0.04        0.00         0.04
## 5164     0.08     0.00        0.03         0.36
## 5165     0.00     0.00        0.03         0.36
## 5166     0.07     0.00        0.01         0.36
## 5167     0.00     0.36        0.00         0.36
## 5168     0.06     0.21        0.02         0.36
## 5169     0.00     0.36        0.00         0.36
## 5170     0.09     0.01        0.03         0.36
## 5171     0.14     0.00        0.05         0.36
## 5172     0.03     0.00        0.00         0.04
## 5173     0.17     0.05        0.05         0.36
## 5174     0.00     0.36        0.00         0.36
## 5175     0.00     0.36        0.00         0.36
## 5176     0.00     0.36        0.00         0.36
## 5177     0.14     0.00        0.05         0.36
## 5178     0.14     0.00        0.05         0.36
## 5179     0.14     0.00        0.05         0.36
## 5180     0.00     0.36        0.00         0.36
## 5181     0.01     0.16        0.02         0.36
## 5182     0.19     0.00        0.10         0.36
## 5183     0.16     0.00        0.03         0.36
## 5184     0.13     0.00        0.03         0.36
## 5185     0.09     0.01        0.05         0.36
## 5186     0.09     0.14        0.03         0.36
## 5187     0.14     0.00        0.05         0.36
## 5188     0.09     0.00        0.03         0.36
## 5189     0.08     0.04        0.03         0.36
## 5190     0.14     0.00        0.02         0.36
## 5191     0.03     0.27        0.02         0.36
## 5192     0.10     0.00        0.01         0.36
## 5193     0.11     0.08        0.04         0.36
## 5194     0.00     0.00        0.03         0.36
## 5195     0.00     0.34        0.02         0.36
## 5196     0.01     0.00        0.00         0.04
## 5197     0.00     0.04        0.00         0.04
## 5198     0.05     0.00        0.03         0.36
## 5199     0.01     0.00        0.03         0.36
## 5200     0.13     0.00        0.03         0.36
## 5201     0.00     0.36        0.00         0.36
## 5202     0.14     0.00        0.02         0.36
## 5203     0.14     0.00        0.05         0.36
## 5204     0.08     0.00        0.01         0.36
## 5205     0.10     0.00        0.01         0.36
## 5206     0.02     0.23        0.04         0.36
## 5207     0.06     0.00        0.00         0.36
## 5208     0.06     0.00        0.00         0.36
## 5209     0.02     0.16        0.05         0.36
## 5210     0.00     0.00        0.03         0.36
## 5211     0.14     0.00        0.02         0.36
## 5212     0.11     0.00        0.05         0.36
## 5213     0.10     0.00        0.01         0.36
## 5214     0.00     0.00        0.03         0.36
## 5215     0.08     0.00        0.01         0.36
## 5216     0.20     0.00        0.04         0.36
## 5217     0.00     0.35        0.01         0.36
## 5218     0.00     0.36        0.00         0.36
## 5219     0.09     0.01        0.03         0.36
## 5220     0.14     0.00        0.02         0.36
## 5221     0.03     0.00        0.02         0.36
## 5222     0.00     0.00        0.03         0.36
## 5223     0.06     0.00        0.03         0.36
## 5224     0.08     0.00        0.01         0.36
## 5225     0.00     0.00        0.02         0.36
## 5226     0.00     0.36        0.00         0.36
## 5227     0.10     0.00        0.03         0.36
## 5228     0.25     0.00        0.04         0.36
## 5229     0.14     0.00        0.05         0.36
## 5230     0.00     0.36        0.00         0.36
## 5231     0.12     0.00        0.06         0.36
## 5232     0.17     0.00        0.07         0.36
## 5233     0.00     0.36        0.00         0.36
## 5234     0.09     0.00        0.03         0.36
## 5235     0.14     0.00        0.05         0.36
## 5236     0.14     0.00        0.05         0.36
## 5237     0.00     0.33        0.02         0.36
## 5238     0.00     0.36        0.00         0.36
## 5239     0.32     0.00        0.03         0.36
## 5240     0.00     0.35        0.01         0.36
## 5241     0.03     0.00        0.00         0.04
## 5242     0.01     0.00        0.02         0.36
## 5243     0.25     0.00        0.05         0.36
## 5244     0.11     0.00        0.05         0.36
## 5245     0.31     0.00        0.05         0.36
## 5246     0.00     0.33        0.02         0.36
## 5247     0.02     0.00        0.00         0.36
## 5248     0.04     0.00        0.02         0.36
## 5249     0.08     0.00        0.01         0.36
## 5250     0.10     0.00        0.03         0.36
## 5251     0.00     0.36        0.00         0.36
## 5252     0.13     0.00        0.02         0.36
## 5253     0.00     0.36        0.00         0.36
## 5254     0.06     0.00        0.04         0.36
## 5255     0.02     0.11        0.02         0.36
## 5256     0.14     0.00        0.05         0.36
## 5257     0.07     0.00        0.05         0.36
## 5258     0.14     0.00        0.05         0.36
## 5259     0.26     0.00        0.09         0.36
## 5260     0.00     0.36        0.00         0.36
## 5261     0.00     0.00        0.02         0.36
## 5262     0.04     0.23        0.02         0.36
## 5263     0.10     0.00        0.01         0.36
## 5264     0.16     0.00        0.04         0.35
## 5265     0.01     0.00        0.03         0.35
## 5266     0.13     0.00        0.02         0.35
## 5267     0.02     0.03        0.03         0.35
## 5268     0.09     0.00        0.01         0.35
## 5269     0.09     0.00        0.03         0.35
## 5270     0.14     0.00        0.05         0.35
## 5271     0.07     0.00        0.01         0.35
## 5272     0.06     0.19        0.02         0.35
## 5273     0.00     0.35        0.00         0.35
## 5274     0.18     0.00        0.07         0.35
## 5275     0.03     0.08        0.02         0.35
## 5276     0.14     0.00        0.05         0.35
## 5277     0.07     0.00        0.03         0.35
## 5278     0.00     0.35        0.00         0.35
## 5279     0.20     0.00        0.07         0.35
## 5280     0.00     0.35        0.00         0.35
## 5281     0.16     0.00        0.06         0.35
## 5282     0.12     0.01        0.03         0.35
## 5283     0.13     0.00        0.05         0.35
## 5284     0.09     0.00        0.01         0.35
## 5285     0.08     0.00        0.01         0.35
## 5286     0.18     0.00        0.04         0.35
## 5287     0.00     0.35        0.00         0.35
## 5288     0.04     0.23        0.01         0.35
## 5289     0.10     0.07        0.03         0.35
## 5290     0.01     0.30        0.00         0.35
## 5291     0.15     0.00        0.04         0.35
## 5292     0.00     0.35        0.00         0.35
## 5293     0.11     0.05        0.04         0.35
## 5294     0.13     0.00        0.04         0.35
## 5295     0.02     0.28        0.02         0.35
## 5296     0.09     0.00        0.01         0.35
## 5297     0.00     0.35        0.00         0.35
## 5298     0.08     0.04        0.04         0.35
## 5299     0.02     0.00        0.02         0.35
## 5300     0.03     0.00        0.03         0.35
## 5301     0.18     0.00        0.04         0.35
## 5302     0.10     0.00        0.03         0.35
## 5303     0.00     0.00        0.00         0.04
## 5304     0.00     0.09        0.02         0.35
## 5305     0.00     0.29        0.06         0.35
## 5306     0.19     0.03        0.07         0.35
## 5307     0.17     0.00        0.06         0.35
## 5308     0.14     0.00        0.03         0.35
## 5309     0.10     0.00        0.03         0.35
## 5310     0.13     0.00        0.04         0.35
## 5311     0.07     0.00        0.01         0.35
## 5312     0.09     0.00        0.01         0.35
## 5313     0.00     0.00        0.02         0.35
## 5314     0.13     0.00        0.04         0.35
## 5315     0.13     0.00        0.02         0.35
## 5316     0.08     0.00        0.01         0.35
## 5317     0.14     0.00        0.03         0.35
## 5318     0.16     0.01        0.06         0.35
## 5319     0.13     0.00        0.04         0.35
## 5320     0.13     0.00        0.04         0.35
## 5321     0.07     0.16        0.02         0.35
## 5322     0.20     0.00        0.04         0.35
## 5323     0.05     0.14        0.03         0.35
## 5324     0.07     0.00        0.04         0.35
## 5325     0.13     0.00        0.04         0.35
## 5326     0.00     0.32        0.02         0.35
## 5327     0.13     0.00        0.04         0.35
## 5328     0.13     0.00        0.04         0.35
## 5329     0.13     0.00        0.04         0.35
## 5330     0.07     0.00        0.01         0.35
## 5331     0.00     0.00        0.03         0.35
## 5332     0.13     0.00        0.04         0.35
## 5333     0.20     0.00        0.05         0.35
## 5334     0.00     0.35        0.00         0.35
## 5335     0.13     0.00        0.02         0.35
## 5336     0.08     0.15        0.03         0.35
## 5337     0.01     0.00        0.03         0.35
## 5338     0.13     0.00        0.02         0.35
## 5339     0.00     0.35        0.00         0.35
## 5340     0.13     0.00        0.04         0.35
## 5341     0.14     0.00        0.03         0.35
## 5342     0.00     0.00        0.03         0.35
## 5343     0.21     0.00        0.08         0.35
## 5344     0.07     0.00        0.01         0.35
## 5345     0.07     0.15        0.04         0.35
## 5346     0.13     0.00        0.06         0.35
## 5347     0.13     0.00        0.04         0.35
## 5348     0.01     0.01        0.03         0.35
## 5349     0.23     0.00        0.03         0.35
## 5350     0.00     0.32        0.02         0.34
## 5351     0.00     0.00        0.02         0.34
## 5352     0.09     0.00        0.01         0.34
## 5353     0.00     0.34        0.00         0.34
## 5354     0.15     0.00        0.08         0.34
## 5355     0.09     0.00        0.01         0.34
## 5356     0.13     0.00        0.04         0.34
## 5357     0.09     0.12        0.03         0.34
## 5358     0.00     0.34        0.00         0.34
## 5359     0.13     0.00        0.02         0.34
## 5360     0.03     0.09        0.02         0.34
## 5361     0.15     0.00        0.06         0.34
## 5362     0.04     0.20        0.01         0.34
## 5363     0.07     0.00        0.03         0.34
## 5364     0.00     0.00        0.03         0.34
## 5365     0.03     0.00        0.03         0.34
## 5366     0.02     0.02        0.03         0.34
## 5367     0.02     0.00        0.00         0.34
## 5368     0.09     0.00        0.01         0.34
## 5369     0.06     0.19        0.02         0.34
## 5370     0.16     0.00        0.03         0.34
## 5371     0.16     0.00        0.03         0.34
## 5372     0.13     0.00        0.04         0.34
## 5373     0.00     0.34        0.00         0.34
## 5374     0.12     0.00        0.03         0.34
## 5375     0.03     0.00        0.25         0.34
## 5376     0.09     0.00        0.01         0.34
## 5377     0.00     0.09        0.02         0.34
## 5378     0.13     0.00        0.02         0.34
## 5379     0.13     0.00        0.04         0.34
## 5380     0.07     0.00        0.01         0.34
## 5381     0.13     0.00        0.04         0.34
## 5382     0.02     0.00        0.00         0.34
## 5383     0.02     0.00        0.00         0.34
## 5384     0.15     0.00        0.03         0.34
## 5385     0.03     0.00        0.03         0.34
## 5386     0.03     0.00        0.02         0.34
## 5387     0.07     0.00        0.01         0.34
## 5388     0.03     0.15        0.02         0.34
## 5389     0.11     0.00        0.01         0.34
## 5390     0.02     0.00        0.00         0.34
## 5391     0.17     0.00        0.04         0.34
## 5392     0.01     0.00        0.03         0.34
## 5393     0.11     0.03        0.05         0.34
## 5394     0.00     0.34        0.00         0.34
## 5395     0.06     0.00        0.00         0.34
## 5396     0.02     0.00        0.00         0.34
## 5397     0.13     0.00        0.06         0.34
## 5398     0.09     0.00        0.03         0.34
## 5399     0.13     0.00        0.02         0.34
## 5400     0.03     0.00        0.03         0.34
## 5401     0.02     0.00        0.00         0.34
## 5402     0.34     0.00        0.00         0.34
## 5403     0.13     0.00        0.04         0.34
## 5404     0.15     0.00        0.05         0.34
## 5405     0.07     0.00        0.01         0.34
## 5406     0.00     0.34        0.00         0.34
## 5407     0.03     0.23        0.02         0.34
## 5408     0.01     0.00        0.02         0.34
## 5409     0.00     0.00        0.02         0.34
## 5410     0.18     0.00        0.03         0.34
## 5411     0.01     0.03        0.02         0.34
## 5412     0.02     0.16        0.02         0.34
## 5413     0.02     0.00        0.03         0.34
## 5414     0.13     0.00        0.02         0.34
## 5415     0.21     0.00        0.04         0.34
## 5416     0.07     0.00        0.01         0.34
## 5417     0.15     0.00        0.03         0.34
## 5418     0.00     0.00        0.02         0.34
## 5419     0.02     0.00        0.03         0.34
## 5420     0.13     0.00        0.03         0.34
## 5421     0.09     0.00        0.01         0.34
## 5422     0.17     0.00        0.05         0.34
## 5423     0.07     0.00        0.01         0.34
## 5424     0.10     0.00        0.03         0.34
## 5425     0.02     0.00        0.22         0.34
## 5426     0.25     0.00        0.08         0.34
## 5427     0.00     0.34        0.00         0.34
## 5428     0.00     0.02        0.03         0.34
## 5429     0.02     0.00        0.03         0.34
## 5430     0.12     0.00        0.05         0.34
## 5431     0.03     0.25        0.01         0.34
## 5432     0.04     0.00        0.02         0.34
## 5433     0.13     0.00        0.02         0.34
## 5434     0.13     0.00        0.04         0.34
## 5435     0.01     0.00        0.03         0.34
## 5436     0.14     0.00        0.03         0.34
## 5437     0.07     0.00        0.01         0.34
## 5438     0.18     0.00        0.04         0.34
## 5439     0.13     0.00        0.04         0.34
## 5440     0.00     0.33        0.00         0.33
## 5441     0.15     0.07        0.05         0.33
## 5442     0.14     0.02        0.03         0.33
## 5443     0.11     0.00        0.01         0.33
## 5444     0.13     0.00        0.03         0.33
## 5445     0.14     0.00        0.04         0.33
## 5446     0.04     0.21        0.02         0.33
## 5447     0.10     0.08        0.03         0.33
## 5448     0.08     0.14        0.03         0.33
## 5449     0.07     0.01        0.03         0.33
## 5450     0.13     0.00        0.04         0.33
## 5451     0.09     0.00        0.01         0.33
## 5452     0.04     0.22        0.02         0.33
## 5453     0.29     0.00        0.04         0.33
## 5454     0.00     0.18        0.01         0.33
## 5455     0.01     0.02        0.03         0.33
## 5456     0.12     0.00        0.08         0.33
## 5457     0.18     0.00        0.03         0.33
## 5458     0.13     0.00        0.02         0.33
## 5459     0.00     0.33        0.00         0.33
## 5460     0.00     0.00        0.02         0.33
## 5461     0.15     0.00        0.03         0.33
## 5462     0.15     0.00        0.05         0.33
## 5463     0.14     0.00        0.05         0.33
## 5464     0.30     0.00        0.03         0.33
## 5465     0.05     0.00        0.03         0.33
## 5466     0.09     0.00        0.05         0.33
## 5467     0.07     0.00        0.01         0.33
## 5468     0.01     0.16        0.01         0.33
## 5469     0.07     0.00        0.01         0.33
## 5470     0.07     0.00        0.01         0.33
## 5471     0.02     0.00        0.03         0.33
## 5472     0.00     0.00        0.02         0.33
## 5473     0.00     0.00        0.02         0.33
## 5474     0.10     0.08        0.03         0.33
## 5475     0.07     0.00        0.01         0.33
## 5476     0.13     0.06        0.03         0.33
## 5477     0.00     0.00        0.03         0.33
## 5478     0.13     0.00        0.04         0.33
## 5479     0.07     0.00        0.01         0.33
## 5480     0.00     0.10        0.02         0.33
## 5481     0.00     0.00        0.03         0.33
## 5482     0.00     0.31        0.02         0.33
## 5483     0.13     0.08        0.04         0.33
## 5484     0.07     0.00        0.01         0.33
## 5485     0.25     0.00        0.08         0.33
## 5486     0.15     0.00        0.04         0.33
## 5487     0.13     0.00        0.04         0.33
## 5488     0.09     0.00        0.01         0.33
## 5489     0.09     0.00        0.03         0.33
## 5490     0.13     0.00        0.04         0.33
## 5491     0.00     0.31        0.02         0.33
## 5492     0.13     0.00        0.05         0.33
## 5493     0.08     0.00        0.03         0.33
## 5494     0.00     0.33        0.00         0.33
## 5495     0.00     0.33        0.00         0.33
## 5496     0.13     0.00        0.03         0.33
## 5497     0.00     0.03        0.03         0.33
## 5498     0.00     0.00        0.03         0.33
## 5499     0.13     0.00        0.04         0.33
## 5500     0.18     0.00        0.05         0.33
## 5501     0.13     0.00        0.04         0.33
## 5502     0.06     0.09        0.01         0.33
## 5503     0.11     0.06        0.05         0.33
## 5504     0.03     0.00        0.16         0.33
## 5505     0.06     0.00        0.01         0.33
## 5506     0.09     0.00        0.01         0.33
## 5507     0.04     0.23        0.01         0.33
## 5508     0.18     0.00        0.06         0.33
## 5509     0.00     0.04        0.00         0.04
## 5510     0.06     0.00        0.00         0.33
## 5511     0.00     0.33        0.00         0.33
## 5512     0.12     0.01        0.03         0.33
## 5513     0.12     0.00        0.02         0.33
## 5514     0.07     0.15        0.02         0.33
## 5515     0.04     0.00        0.03         0.33
## 5516     0.04     0.00        0.02         0.33
## 5517     0.08     0.12        0.03         0.33
## 5518     0.00     0.33        0.00         0.33
## 5519     0.00     0.00        0.02         0.33
## 5520     0.12     0.00        0.05         0.33
## 5521     0.07     0.00        0.01         0.33
## 5522     0.01     0.08        0.02         0.33
## 5523     0.14     0.00        0.08         0.33
## 5524     0.28     0.00        0.03         0.33
## 5525     0.13     0.00        0.04         0.33
## 5526     0.13     0.00        0.04         0.33
## 5527     0.01     0.00        0.03         0.33
## 5528     0.16     0.00        0.09         0.33
## 5529     0.15     0.00        0.06         0.33
## 5530     0.07     0.00        0.01         0.33
## 5531     0.03     0.00        0.02         0.33
## 5532     0.00     0.00        0.02         0.33
## 5533     0.10     0.00        0.03         0.33
## 5534     0.00     0.31        0.02         0.33
## 5535     0.09     0.00        0.01         0.33
## 5536     0.00     0.33        0.00         0.33
## 5537     0.17     0.00        0.04         0.33
## 5538     0.12     0.00        0.02         0.33
## 5539     0.09     0.00        0.01         0.33
## 5540     0.17     0.00        0.06         0.33
## 5541     0.00     0.32        0.01         0.33
## 5542     0.00     0.33        0.00         0.33
## 5543     0.12     0.00        0.03         0.33
## 5544     0.11     0.00        0.03         0.33
## 5545     0.08     0.00        0.03         0.33
## 5546     0.07     0.00        0.01         0.33
## 5547     0.00     0.33        0.00         0.33
## 5548     0.16     0.00        0.03         0.33
## 5549     0.04     0.08        0.02         0.33
## 5550     0.00     0.31        0.02         0.33
## 5551     0.01     0.00        0.03         0.33
## 5552     0.11     0.04        0.02         0.33
## 5553     0.16     0.01        0.06         0.33
## 5554     0.05     0.05        0.03         0.33
## 5555     0.03     0.16        0.02         0.33
## 5556     0.00     0.33        0.00         0.33
## 5557     0.11     0.00        0.03         0.33
## 5558     0.07     0.00        0.01         0.33
## 5559     0.08     0.10        0.03         0.33
## 5560     0.02     0.00        0.00         0.33
## 5561     0.00     0.19        0.01         0.33
## 5562     0.15     0.00        0.07         0.33
## 5563     0.07     0.00        0.01         0.33
## 5564     0.00     0.00        0.02         0.33
## 5565     0.02     0.00        0.00         0.33
## 5566     0.09     0.00        0.03         0.33
## 5567     0.00     0.00        0.02         0.33
## 5568     0.04     0.16        0.01         0.33
## 5569     0.01     0.08        0.02         0.33
## 5570     0.00     0.30        0.02         0.33
## 5571     0.07     0.00        0.01         0.33
## 5572     0.12     0.00        0.04         0.33
## 5573     0.10     0.01        0.07         0.33
## 5574     0.15     0.00        0.05         0.33
## 5575     0.05     0.00        0.03         0.33
## 5576     0.14     0.00        0.03         0.32
## 5577     0.00     0.00        0.03         0.32
## 5578     0.06     0.20        0.02         0.32
## 5579     0.01     0.00        0.00         0.32
## 5580     0.09     0.00        0.01         0.32
## 5581     0.12     0.00        0.04         0.32
## 5582     0.00     0.32        0.00         0.32
## 5583     0.16     0.00        0.04         0.32
## 5584     0.12     0.00        0.04         0.32
## 5585     0.12     0.00        0.02         0.32
## 5586     0.08     0.16        0.03         0.32
## 5587     0.04     0.02        0.03         0.32
## 5588     0.14     0.00        0.06         0.32
## 5589     0.00     0.00        0.03         0.32
## 5590     0.11     0.00        0.03         0.32
## 5591     0.00     0.00        0.02         0.32
## 5592     0.08     0.03        0.02         0.32
## 5593     0.01     0.12        0.01         0.32
## 5594     0.02     0.00        0.00         0.32
## 5595     0.00     0.32        0.00         0.32
## 5596     0.11     0.00        0.03         0.32
## 5597     0.04     0.10        0.03         0.32
## 5598     0.12     0.00        0.04         0.32
## 5599     0.02     0.15        0.02         0.32
## 5600     0.12     0.00        0.02         0.32
## 5601     0.03     0.00        0.01         0.32
## 5602     0.15     0.00        0.06         0.32
## 5603     0.00     0.30        0.02         0.32
## 5604     0.13     0.00        0.08         0.32
## 5605     0.08     0.00        0.03         0.32
## 5606     0.00     0.00        0.02         0.32
## 5607     0.27     0.00        0.05         0.32
## 5608     0.02     0.00        0.03         0.32
## 5609     0.13     0.00        0.03         0.32
## 5610     0.03     0.00        0.03         0.32
## 5611     0.00     0.00        0.02         0.32
## 5612     0.04     0.21        0.02         0.32
## 5613     0.12     0.00        0.02         0.32
## 5614     0.16     0.02        0.05         0.32
## 5615     0.02     0.00        0.03         0.32
## 5616     0.07     0.12        0.02         0.32
## 5617     0.14     0.00        0.03         0.32
## 5618     0.00     0.32        0.00         0.32
## 5619     0.03     0.00        0.00         0.04
## 5620     0.26     0.00        0.06         0.32
## 5621     0.12     0.00        0.04         0.32
## 5622     0.24     0.00        0.05         0.32
## 5623     0.11     0.00        0.03         0.32
## 5624     0.00     0.00        0.02         0.32
## 5625     0.12     0.00        0.04         0.32
## 5626     0.00     0.04        0.00         0.04
## 5627     0.00     0.00        0.02         0.32
## 5628     0.14     0.00        0.03         0.32
## 5629     0.06     0.00        0.01         0.32
## 5630     0.12     0.00        0.04         0.32
## 5631     0.04     0.13        0.00         0.32
## 5632     0.12     0.00        0.02         0.32
## 5633     0.00     0.32        0.00         0.32
## 5634     0.24     0.00        0.05         0.32
## 5635     0.08     0.00        0.01         0.32
## 5636     0.12     0.00        0.02         0.32
## 5637     0.28     0.00        0.04         0.32
## 5638     0.12     0.00        0.02         0.32
## 5639     0.02     0.00        0.03         0.32
## 5640     0.12     0.00        0.04         0.32
## 5641     0.12     0.00        0.02         0.32
## 5642     0.03     0.00        0.03         0.32
## 5643     0.12     0.00        0.04         0.32
## 5644     0.30     0.00        0.02         0.32
## 5645     0.00     0.32        0.00         0.32
## 5646     0.00     0.32        0.00         0.32
## 5647     0.00     0.30        0.02         0.32
## 5648     0.08     0.00        0.01         0.32
## 5649     0.12     0.00        0.04         0.32
## 5650     0.00     0.00        0.03         0.32
## 5651     0.08     0.00        0.01         0.32
## 5652     0.00     0.32        0.00         0.32
## 5653     0.12     0.00        0.03         0.32
## 5654     0.12     0.00        0.04         0.32
## 5655     0.12     0.00        0.04         0.32
## 5656     0.15     0.00        0.03         0.32
## 5657     0.08     0.00        0.01         0.32
## 5658     0.00     0.00        0.00         0.05
## 5659     0.02     0.00        0.00         0.32
## 5660     0.12     0.00        0.02         0.32
## 5661     0.00     0.32        0.00         0.32
## 5662     0.14     0.02        0.06         0.32
## 5663     0.18     0.00        0.10         0.32
## 5664     0.07     0.00        0.01         0.32
## 5665     0.02     0.00        0.02         0.32
## 5666     0.00     0.32        0.00         0.32
## 5667     0.00     0.32        0.00         0.32
## 5668     0.00     0.32        0.00         0.32
## 5669     0.08     0.00        0.01         0.32
## 5670     0.00     0.00        0.00         0.05
## 5671     0.00     0.30        0.02         0.32
## 5672     0.00     0.30        0.02         0.32
## 5673     0.00     0.32        0.00         0.32
## 5674     0.07     0.00        0.01         0.32
## 5675     0.08     0.00        0.01         0.32
## 5676     0.00     0.00        0.28         0.32
## 5677     0.01     0.00        0.02         0.32
## 5678     0.00     0.00        0.02         0.32
## 5679     0.07     0.00        0.01         0.32
## 5680     0.12     0.00        0.04         0.32
## 5681     0.01     0.00        0.02         0.32
## 5682     0.00     0.32        0.00         0.32
## 5683     0.12     0.00        0.02         0.32
## 5684     0.06     0.16        0.02         0.32
## 5685     0.15     0.00        0.09         0.32
## 5686     0.06     0.03        0.02         0.32
## 5687     0.04     0.02        0.02         0.32
## 5688     0.12     0.00        0.04         0.32
## 5689     0.02     0.00        0.20         0.32
## 5690     0.12     0.00        0.06         0.32
## 5691     0.00     0.32        0.00         0.32
## 5692     0.04     0.00        0.03         0.32
## 5693     0.04     0.08        0.02         0.32
## 5694     0.00     0.32        0.00         0.32
## 5695     0.08     0.00        0.01         0.32
## 5696     0.12     0.00        0.02         0.32
## 5697     0.17     0.00        0.05         0.32
## 5698     0.00     0.32        0.00         0.32
## 5699     0.17     0.00        0.05         0.32
## 5700     0.11     0.00        0.03         0.31
## 5701     0.14     0.00        0.05         0.31
## 5702     0.19     0.00        0.04         0.31
## 5703     0.18     0.00        0.03         0.31
## 5704     0.12     0.00        0.02         0.31
## 5705     0.00     0.31        0.00         0.31
## 5706     0.07     0.00        0.01         0.31
## 5707     0.00     0.00        0.02         0.31
## 5708     0.12     0.00        0.02         0.31
## 5709     0.00     0.00        0.02         0.31
## 5710     0.04     0.00        0.02         0.31
## 5711     0.00     0.31        0.00         0.31
## 5712     0.00     0.01        0.02         0.31
## 5713     0.08     0.00        0.01         0.31
## 5714     0.15     0.00        0.06         0.31
## 5715     0.00     0.31        0.00         0.31
## 5716     0.15     0.06        0.03         0.31
## 5717     0.00     0.31        0.00         0.31
## 5718     0.00     0.31        0.00         0.31
## 5719     0.12     0.00        0.02         0.31
## 5720     0.01     0.00        0.02         0.31
## 5721     0.01     0.01        0.02         0.31
## 5722     0.07     0.00        0.01         0.31
## 5723     0.12     0.00        0.04         0.31
## 5724     0.01     0.00        0.02         0.31
## 5725     0.03     0.00        0.03         0.31
## 5726     0.04     0.10        0.02         0.31
## 5727     0.00     0.31        0.00         0.31
## 5728     0.10     0.00        0.03         0.31
## 5729     0.00     0.00        0.02         0.31
## 5730     0.19     0.03        0.04         0.31
## 5731     0.12     0.00        0.04         0.31
## 5732     0.12     0.00        0.02         0.31
## 5733     0.07     0.00        0.01         0.31
## 5734     0.07     0.00        0.01         0.31
## 5735     0.07     0.00        0.01         0.31
## 5736     0.01     0.00        0.02         0.31
## 5737     0.07     0.13        0.02         0.31
## 5738     0.12     0.00        0.02         0.31
## 5739     0.00     0.00        0.02         0.31
## 5740     0.13     0.00        0.03         0.31
## 5741     0.09     0.00        0.03         0.31
## 5742     0.20     0.00        0.03         0.31
## 5743     0.06     0.16        0.02         0.31
## 5744     0.00     0.31        0.00         0.31
## 5745     0.00     0.00        0.02         0.31
## 5746     0.00     0.31        0.00         0.31
## 5747     0.12     0.00        0.02         0.31
## 5748     0.07     0.00        0.01         0.31
## 5749     0.08     0.00        0.01         0.31
## 5750     0.00     0.29        0.02         0.31
## 5751     0.01     0.00        0.03         0.31
## 5752     0.00     0.00        0.02         0.31
## 5753     0.04     0.17        0.03         0.31
## 5754     0.00     0.26        0.05         0.31
## 5755     0.02     0.13        0.10         0.31
## 5756     0.06     0.00        0.00         0.31
## 5757     0.06     0.00        0.00         0.31
## 5758     0.06     0.00        0.00         0.31
## 5759     0.00     0.26        0.05         0.31
## 5760     0.29     0.00        0.02         0.31
## 5761     0.00     0.00        0.00         0.31
## 5762     0.05     0.00        0.02         0.31
## 5763     0.10     0.00        0.03         0.31
## 5764     0.00     0.31        0.00         0.31
## 5765     0.00     0.00        0.02         0.31
## 5766     0.10     0.00        0.03         0.31
## 5767     0.00     0.31        0.00         0.31
## 5768     0.00     0.00        0.02         0.31
## 5769     0.04     0.00        0.03         0.31
## 5770     0.02     0.00        0.01         0.05
## 5771     0.02     0.09        0.02         0.31
## 5772     0.08     0.00        0.01         0.31
## 5773     0.11     0.02        0.02         0.31
## 5774     0.02     0.00        0.00         0.31
## 5775     0.12     0.00        0.04         0.31
## 5776     0.04     0.00        0.03         0.31
## 5777     0.00     0.00        0.02         0.31
## 5778     0.12     0.00        0.04         0.31
## 5779     0.00     0.31        0.00         0.31
## 5780     0.00     0.00        0.02         0.31
## 5781     0.05     0.00        0.02         0.31
## 5782     0.00     0.00        0.02         0.31
## 5783     0.12     0.00        0.02         0.31
## 5784     0.05     0.00        0.01         0.31
## 5785     0.00     0.29        0.02         0.31
## 5786     0.00     0.00        0.02         0.31
## 5787     0.13     0.00        0.04         0.31
## 5788     0.06     0.00        0.01         0.31
## 5789     0.00     0.31        0.00         0.31
## 5790     0.12     0.00        0.05         0.31
## 5791     0.17     0.00        0.03         0.31
## 5792     0.12     0.00        0.02         0.31
## 5793     0.12     0.00        0.04         0.31
## 5794     0.00     0.00        0.02         0.31
## 5795     0.07     0.04        0.03         0.31
## 5796     0.12     0.00        0.04         0.31
## 5797     0.12     0.00        0.02         0.31
## 5798     0.12     0.00        0.04         0.31
## 5799     0.05     0.00        0.01         0.05
## 5800     0.00     0.31        0.00         0.31
## 5801     0.02     0.00        0.00         0.31
## 5802     0.12     0.00        0.04         0.31
## 5803     0.12     0.00        0.02         0.31
## 5804     0.05     0.14        0.04         0.31
## 5805     0.01     0.10        0.02         0.31
## 5806     0.04     0.00        0.02         0.31
## 5807     0.00     0.00        0.02         0.31
## 5808     0.06     0.00        0.02         0.31
## 5809     0.12     0.00        0.02         0.31
## 5810     0.06     0.00        0.03         0.31
## 5811     0.13     0.01        0.08         0.31
## 5812     0.07     0.00        0.01         0.31
## 5813     0.12     0.00        0.02         0.31
## 5814     0.00     0.30        0.01         0.31
## 5815     0.12     0.00        0.02         0.31
## 5816     0.12     0.00        0.04         0.31
## 5817     0.00     0.31        0.00         0.31
## 5818     0.00     0.31        0.00         0.31
## 5819     0.12     0.00        0.04         0.31
## 5820     0.10     0.00        0.03         0.31
## 5821     0.01     0.00        0.02         0.30
## 5822     0.08     0.07        0.02         0.30
## 5823     0.08     0.00        0.01         0.30
## 5824     0.00     0.00        0.02         0.30
## 5825     0.07     0.00        0.01         0.30
## 5826     0.08     0.00        0.01         0.30
## 5827     0.12     0.06        0.05         0.30
## 5828     0.13     0.00        0.03         0.30
## 5829     0.00     0.30        0.00         0.30
## 5830     0.00     0.30        0.00         0.30
## 5831     0.12     0.00        0.02         0.30
## 5832     0.00     0.30        0.00         0.30
## 5833     0.04     0.00        0.02         0.30
## 5834     0.08     0.00        0.01         0.30
## 5835     0.12     0.00        0.02         0.30
## 5836     0.00     0.30        0.00         0.30
## 5837     0.03     0.00        0.03         0.30
## 5838     0.04     0.01        0.03         0.30
## 5839     0.01     0.00        0.00         0.05
## 5840     0.12     0.00        0.07         0.30
## 5841     0.00     0.08        0.02         0.30
## 5842     0.25     0.00        0.05         0.30
## 5843     0.03     0.21        0.02         0.30
## 5844     0.12     0.00        0.04         0.30
## 5845     0.04     0.00        0.02         0.30
## 5846     0.06     0.00        0.01         0.30
## 5847     0.08     0.00        0.01         0.30
## 5848     0.12     0.00        0.04         0.30
## 5849     0.10     0.00        0.03         0.30
## 5850     0.00     0.00        0.02         0.30
## 5851     0.00     0.30        0.00         0.30
## 5852     0.09     0.00        0.03         0.30
## 5853     0.08     0.00        0.01         0.30
## 5854     0.12     0.00        0.04         0.30
## 5855     0.00     0.30        0.00         0.30
## 5856     0.00     0.30        0.01         0.30
## 5857     0.00     0.30        0.00         0.30
## 5858     0.11     0.00        0.02         0.30
## 5859     0.16     0.00        0.08         0.30
## 5860     0.12     0.00        0.04         0.30
## 5861     0.23     0.00        0.06         0.30
## 5862     0.04     0.00        0.01         0.05
## 5863     0.00     0.30        0.00         0.30
## 5864     0.02     0.00        0.02         0.30
## 5865     0.03     0.00        0.02         0.30
## 5866     0.00     0.00        0.02         0.30
## 5867     0.00     0.30        0.00         0.30
## 5868     0.00     0.19        0.02         0.30
## 5869     0.00     0.30        0.00         0.30
## 5870     0.24     0.00        0.05         0.30
## 5871     0.04     0.00        0.01         0.05
## 5872     0.07     0.07        0.02         0.30
## 5873     0.13     0.00        0.05         0.30
## 5874     0.00     0.00        0.02         0.30
## 5875     0.06     0.06        0.02         0.30
## 5876     0.01     0.00        0.02         0.30
## 5877     0.11     0.06        0.04         0.30
## 5878     0.05     0.17        0.03         0.30
## 5879     0.02     0.20        0.01         0.30
## 5880     0.04     0.19        0.01         0.30
## 5881     0.00     0.30        0.00         0.30
## 5882     0.00     0.30        0.00         0.30
## 5883     0.16     0.05        0.04         0.30
## 5884     0.11     0.00        0.04         0.30
## 5885     0.00     0.08        0.01         0.30
## 5886     0.06     0.00        0.00         0.30
## 5887     0.06     0.00        0.00         0.30
## 5888     0.00     0.30        0.00         0.30
## 5889     0.08     0.00        0.01         0.30
## 5890     0.12     0.00        0.03         0.30
## 5891     0.04     0.00        0.02         0.30
## 5892     0.08     0.00        0.05         0.30
## 5893     0.00     0.28        0.02         0.30
## 5894     0.00     0.30        0.00         0.30
## 5895     0.11     0.00        0.04         0.30
## 5896     0.08     0.00        0.01         0.30
## 5897     0.00     0.30        0.00         0.30
## 5898     0.03     0.05        0.02         0.30
## 5899     0.03     0.11        0.03         0.30
## 5900     0.11     0.00        0.02         0.30
## 5901     0.23     0.00        0.05         0.30
## 5902     0.00     0.05        0.00         0.05
## 5903     0.11     0.00        0.04         0.30
## 5904     0.07     0.10        0.03         0.30
## 5905     0.00     0.30        0.00         0.30
## 5906     0.04     0.00        0.02         0.30
## 5907     0.12     0.00        0.03         0.30
## 5908     0.02     0.14        0.01         0.30
## 5909     0.00     0.30        0.00         0.30
## 5910     0.05     0.15        0.02         0.30
## 5911     0.02     0.00        0.02         0.30
## 5912     0.27     0.00        0.03         0.30
## 5913     0.00     0.00        0.02         0.30
## 5914     0.06     0.00        0.01         0.06
## 5915     0.19     0.00        0.03         0.30
## 5916     0.11     0.00        0.04         0.30
## 5917     0.00     0.00        0.03         0.30
## 5918     0.01     0.00        0.02         0.30
## 5919     0.07     0.00        0.02         0.30
## 5920     0.24     0.00        0.05         0.30
## 5921     0.00     0.30        0.00         0.30
## 5922     0.00     0.30        0.00         0.30
## 5923     0.07     0.14        0.02         0.30
## 5924     0.13     0.00        0.05         0.30
## 5925     0.11     0.00        0.04         0.30
## 5926     0.00     0.00        0.02         0.30
## 5927     0.00     0.30        0.00         0.30
## 5928     0.14     0.00        0.03         0.30
## 5929     0.01     0.00        0.27         0.30
## 5930     0.00     0.30        0.00         0.30
## 5931     0.09     0.00        0.03         0.30
## 5932     0.00     0.29        0.01         0.30
## 5933     0.00     0.10        0.02         0.30
## 5934     0.00     0.00        0.00         0.30
## 5935     0.00     0.30        0.00         0.30
## 5936     0.10     0.01        0.05         0.30
## 5937     0.08     0.00        0.01         0.30
## 5938     0.08     0.00        0.01         0.30
## 5939     0.07     0.00        0.04         0.30
## 5940     0.11     0.00        0.02         0.30
## 5941     0.10     0.00        0.03         0.30
## 5942     0.00     0.02        0.02         0.30
## 5943     0.00     0.30        0.00         0.30
## 5944     0.06     0.00        0.01         0.30
## 5945     0.00     0.30        0.00         0.30
## 5946     0.11     0.00        0.04         0.30
## 5947     0.06     0.00        0.01         0.30
## 5948     0.01     0.12        0.01         0.30
## 5949     0.14     0.00        0.03         0.30
## 5950     0.26     0.00        0.01         0.30
## 5951     0.06     0.00        0.02         0.30
## 5952     0.03     0.00        0.02         0.30
## 5953     0.06     0.00        0.01         0.30
## 5954     0.13     0.00        0.03         0.30
## 5955     0.06     0.00        0.01         0.30
## 5956     0.00     0.00        0.02         0.29
## 5957     0.02     0.00        0.00         0.29
## 5958     0.00     0.00        0.02         0.29
## 5959     0.11     0.00        0.04         0.29
## 5960     0.01     0.00        0.03         0.29
## 5961     0.07     0.11        0.03         0.29
## 5962     0.06     0.00        0.02         0.29
## 5963     0.14     0.00        0.03         0.29
## 5964     0.10     0.04        0.02         0.29
## 5965     0.01     0.00        0.02         0.29
## 5966     0.01     0.00        0.03         0.29
## 5967     0.21     0.00        0.04         0.29
## 5968     0.10     0.00        0.03         0.29
## 5969     0.08     0.00        0.01         0.29
## 5970     0.00     0.29        0.01         0.29
## 5971     0.02     0.00        0.03         0.29
## 5972     0.12     0.12        0.04         0.29
## 5973     0.00     0.29        0.00         0.29
## 5974     0.09     0.00        0.03         0.29
## 5975     0.00     0.04        0.02         0.29
## 5976     0.06     0.00        0.01         0.29
## 5977     0.16     0.02        0.05         0.29
## 5978     0.08     0.07        0.03         0.29
## 5979     0.11     0.00        0.02         0.29
## 5980     0.02     0.25        0.01         0.29
## 5981     0.07     0.00        0.03         0.29
## 5982     0.00     0.29        0.00         0.29
## 5983     0.03     0.00        0.02         0.29
## 5984     0.10     0.17        0.02         0.29
## 5985     0.03     0.00        0.15         0.29
## 5986     0.14     0.01        0.05         0.29
## 5987     0.06     0.00        0.01         0.29
## 5988     0.11     0.00        0.04         0.29
## 5989     0.22     0.05        0.00         0.29
## 5990     0.11     0.00        0.06         0.29
## 5991     0.02     0.22        0.02         0.29
## 5992     0.00     0.27        0.02         0.29
## 5993     0.16     0.00        0.05         0.29
## 5994     0.00     0.00        0.02         0.29
## 5995     0.12     0.00        0.03         0.29
## 5996     0.00     0.29        0.00         0.29
## 5997     0.00     0.14        0.01         0.29
## 5998     0.11     0.00        0.02         0.29
## 5999     0.00     0.27        0.02         0.29
## 6000     0.10     0.03        0.03         0.29
## 6001     0.10     0.00        0.02         0.29
## 6002     0.11     0.00        0.04         0.29
## 6003     0.00     0.29        0.00         0.29
## 6004     0.03     0.00        0.02         0.29
## 6005     0.13     0.01        0.03         0.29
## 6006     0.00     0.28        0.01         0.29
## 6007     0.05     0.03        0.03         0.29
## 6008     0.02     0.00        0.00         0.29
## 6009     0.00     0.00        0.02         0.29
## 6010     0.06     0.00        0.01         0.29
## 6011     0.04     0.00        0.02         0.29
## 6012     0.08     0.00        0.02         0.29
## 6013     0.05     0.15        0.03         0.29
## 6014     0.00     0.28        0.01         0.29
## 6015     0.12     0.00        0.05         0.29
## 6016     0.11     0.00        0.03         0.29
## 6017     0.11     0.00        0.04         0.29
## 6018     0.13     0.00        0.03         0.29
## 6019     0.11     0.00        0.04         0.29
## 6020     0.01     0.10        0.04         0.29
## 6021     0.20     0.00        0.03         0.29
## 6022     0.02     0.00        0.00         0.29
## 6023     0.00     0.29        0.00         0.29
## 6024     0.06     0.00        0.00         0.29
## 6025     0.06     0.00        0.00         0.29
## 6026     0.06     0.00        0.00         0.29
## 6027     0.06     0.00        0.00         0.29
## 6028     0.05     0.02        0.00         0.29
## 6029     0.06     0.00        0.00         0.29
## 6030     0.06     0.00        0.00         0.29
## 6031     0.06     0.00        0.00         0.29
## 6032     0.03     0.14        0.02         0.29
## 6033     0.23     0.00        0.06         0.29
## 6034     0.25     0.00        0.04         0.29
## 6035     0.08     0.00        0.01         0.29
## 6036     0.11     0.00        0.04         0.29
## 6037     0.04     0.00        0.02         0.29
## 6038     0.11     0.00        0.04         0.29
## 6039     0.07     0.05        0.02         0.29
## 6040     0.06     0.00        0.01         0.29
## 6041     0.10     0.00        0.02         0.29
## 6042     0.09     0.00        0.02         0.29
## 6043     0.00     0.06        0.00         0.06
## 6044     0.09     0.00        0.03         0.29
## 6045     0.00     0.29        0.00         0.29
## 6046     0.06     0.00        0.01         0.29
## 6047     0.00     0.27        0.02         0.29
## 6048     0.06     0.00        0.01         0.29
## 6049     0.15     0.01        0.03         0.29
## 6050     0.09     0.19        0.01         0.29
## 6051     0.06     0.00        0.01         0.29
## 6052     0.11     0.00        0.02         0.29
## 6053     0.13     0.00        0.03         0.29
## 6054     0.00     0.29        0.00         0.29
## 6055     0.17     0.00        0.03         0.29
## 6056     0.00     0.00        0.02         0.29
## 6057     0.00     0.00        0.02         0.29
## 6058     0.11     0.00        0.04         0.29
## 6059     0.00     0.29        0.00         0.29
## 6060     0.05     0.15        0.02         0.29
## 6061     0.05     0.16        0.02         0.29
## 6062     0.00     0.00        0.02         0.29
## 6063     0.10     0.01        0.02         0.29
## 6064     0.00     0.10        0.02         0.29
## 6065     0.12     0.00        0.05         0.29
## 6066     0.00     0.00        0.02         0.29
## 6067     0.15     0.00        0.02         0.29
## 6068     0.01     0.00        0.02         0.29
## 6069     0.11     0.00        0.02         0.29
## 6070     0.00     0.00        0.02         0.29
## 6071     0.00     0.29        0.00         0.29
## 6072     0.15     0.00        0.03         0.29
## 6073     0.11     0.00        0.04         0.29
## 6074     0.00     0.14        0.02         0.29
## 6075     0.11     0.00        0.02         0.29
## 6076     0.00     0.29        0.00         0.29
## 6077     0.02     0.21        0.02         0.29
## 6078     0.11     0.00        0.04         0.29
## 6079     0.00     0.29        0.00         0.29
## 6080     0.11     0.00        0.04         0.29
## 6081     0.00     0.00        0.02         0.29
## 6082     0.11     0.00        0.02         0.29
## 6083     0.12     0.00        0.03         0.29
## 6084     0.00     0.00        0.02         0.29
## 6085     0.00     0.29        0.00         0.29
## 6086     0.00     0.27        0.02         0.29
## 6087     0.00     0.00        0.02         0.29
## 6088     0.12     0.00        0.02         0.29
## 6089     0.00     0.29        0.00         0.29
## 6090     0.00     0.29        0.00         0.29
## 6091     0.07     0.08        0.03         0.29
## 6092     0.12     0.00        0.05         0.29
## 6093     0.06     0.00        0.01         0.29
## 6094     0.00     0.22        0.01         0.29
## 6095     0.00     0.00        0.02         0.29
## 6096     0.06     0.00        0.01         0.29
## 6097     0.11     0.00        0.02         0.29
## 6098     0.00     0.00        0.02         0.29
## 6099     0.00     0.29        0.00         0.29
## 6100     0.00     0.00        0.02         0.29
## 6101     0.08     0.00        0.01         0.29
## 6102     0.03     0.17        0.01         0.29
## 6103     0.10     0.00        0.05         0.29
## 6104     0.18     0.00        0.03         0.29
## 6105     0.00     0.00        0.02         0.28
## 6106     0.21     0.00        0.04         0.28
## 6107     0.14     0.00        0.03         0.28
## 6108     0.11     0.00        0.04         0.28
## 6109     0.11     0.00        0.04         0.28
## 6110     0.06     0.05        0.02         0.28
## 6111     0.11     0.00        0.02         0.28
## 6112     0.00     0.28        0.00         0.28
## 6113     0.08     0.00        0.01         0.28
## 6114     0.08     0.00        0.01         0.28
## 6115     0.00     0.00        0.02         0.28
## 6116     0.00     0.28        0.00         0.28
## 6117     0.01     0.00        0.02         0.28
## 6118     0.00     0.28        0.00         0.28
## 6119     0.11     0.00        0.02         0.28
## 6120     0.11     0.00        0.02         0.28
## 6121     0.06     0.00        0.01         0.28
## 6122     0.10     0.00        0.03         0.28
## 6123     0.07     0.10        0.02         0.28
## 6124     0.02     0.00        0.02         0.28
## 6125     0.08     0.07        0.04         0.28
## 6126     0.00     0.00        0.00         0.06
## 6127     0.06     0.00        0.01         0.28
## 6128     0.08     0.00        0.01         0.28
## 6129     0.08     0.00        0.01         0.28
## 6130     0.11     0.00        0.04         0.28
## 6131     0.07     0.00        0.04         0.28
## 6132     0.00     0.28        0.00         0.28
## 6133     0.06     0.00        0.01         0.28
## 6134     0.00     0.28        0.00         0.28
## 6135     0.08     0.00        0.01         0.28
## 6136     0.17     0.09        0.02         0.28
## 6137     0.16     0.09        0.03         0.28
## 6138     0.00     0.01        0.02         0.28
## 6139     0.06     0.00        0.01         0.28
## 6140     0.00     0.28        0.00         0.28
## 6141     0.01     0.00        0.02         0.28
## 6142     0.11     0.00        0.03         0.28
## 6143     0.08     0.00        0.01         0.28
## 6144     0.02     0.00        0.02         0.28
## 6145     0.00     0.28        0.01         0.28
## 6146     0.02     0.00        0.00         0.28
## 6147     0.11     0.00        0.04         0.28
## 6148     0.01     0.00        0.00         0.28
## 6149     0.10     0.00        0.03         0.28
## 6150     0.12     0.00        0.02         0.28
## 6151     0.11     0.00        0.02         0.28
## 6152     0.12     0.02        0.05         0.28
## 6153     0.11     0.00        0.04         0.28
## 6154     0.02     0.00        0.01         0.06
## 6155     0.06     0.00        0.01         0.28
## 6156     0.00     0.28        0.00         0.28
## 6157     0.02     0.12        0.01         0.28
## 6158     0.06     0.00        0.03         0.28
## 6159     0.07     0.00        0.01         0.28
## 6160     0.06     0.00        0.05         0.28
## 6161     0.00     0.28        0.00         0.28
## 6162     0.00     0.28        0.00         0.28
## 6163     0.00     0.28        0.00         0.28
## 6164     0.11     0.00        0.04         0.28
## 6165     0.00     0.28        0.00         0.28
## 6166     0.00     0.28        0.00         0.28
## 6167     0.02     0.00        0.14         0.28
## 6168     0.07     0.00        0.01         0.28
## 6169     0.00     0.00        0.02         0.28
## 6170     0.23     0.00        0.05         0.28
## 6171     0.11     0.00        0.04         0.28
## 6172     0.00     0.00        0.02         0.28
## 6173     0.11     0.01        0.05         0.28
## 6174     0.11     0.00        0.04         0.28
## 6175     0.06     0.00        0.01         0.28
## 6176     0.14     0.00        0.05         0.28
## 6177     0.11     0.00        0.04         0.28
## 6178     0.00     0.00        0.02         0.28
## 6179     0.00     0.00        0.02         0.28
## 6180     0.07     0.00        0.01         0.28
## 6181     0.10     0.03        0.03         0.28
## 6182     0.12     0.00        0.02         0.28
## 6183     0.00     0.00        0.02         0.28
## 6184     0.10     0.00        0.03         0.28
## 6185     0.08     0.00        0.02         0.28
## 6186     0.11     0.00        0.04         0.28
## 6187     0.03     0.03        0.02         0.28
## 6188     0.07     0.00        0.01         0.28
## 6189     0.06     0.10        0.02         0.28
## 6190     0.11     0.00        0.04         0.28
## 6191     0.12     0.01        0.03         0.28
## 6192     0.11     0.00        0.04         0.28
## 6193     0.01     0.23        0.01         0.28
## 6194     0.06     0.00        0.01         0.28
## 6195     0.09     0.04        0.04         0.28
## 6196     0.00     0.00        0.00         0.06
## 6197     0.11     0.00        0.02         0.28
## 6198     0.07     0.00        0.01         0.28
## 6199     0.00     0.28        0.00         0.28
## 6200     0.11     0.00        0.05         0.28
## 6201     0.06     0.00        0.01         0.28
## 6202     0.06     0.00        0.01         0.28
## 6203     0.02     0.00        0.02         0.28
## 6204     0.00     0.28        0.00         0.28
## 6205     0.13     0.00        0.03         0.28
## 6206     0.21     0.03        0.03         0.28
## 6207     0.11     0.00        0.04         0.28
## 6208     0.22     0.00        0.05         0.28
## 6209     0.11     0.00        0.04         0.28
## 6210     0.11     0.00        0.04         0.28
## 6211     0.03     0.12        0.04         0.28
## 6212     0.00     0.00        0.00         0.06
## 6213     0.01     0.00        0.02         0.28
## 6214     0.11     0.00        0.04         0.28
## 6215     0.01     0.00        0.02         0.28
## 6216     0.02     0.00        0.03         0.28
## 6217     0.04     0.17        0.01         0.28
## 6218     0.00     0.28        0.00         0.28
## 6219     0.04     0.17        0.02         0.28
## 6220     0.00     0.00        0.02         0.28
## 6221     0.11     0.00        0.02         0.28
## 6222     0.09     0.00        0.04         0.28
## 6223     0.00     0.28        0.00         0.28
## 6224     0.06     0.00        0.01         0.28
## 6225     0.10     0.00        0.03         0.28
## 6226     0.01     0.00        0.16         0.28
## 6227     0.00     0.28        0.00         0.28
## 6228     0.11     0.00        0.02         0.28
## 6229     0.00     0.00        0.02         0.28
## 6230     0.00     0.28        0.00         0.28
## 6231     0.11     0.00        0.04         0.28
## 6232     0.00     0.27        0.01         0.28
## 6233     0.00     0.28        0.00         0.28
## 6234     0.00     0.26        0.02         0.28
## 6235     0.01     0.00        0.02         0.28
## 6236     0.16     0.00        0.03         0.28
## 6237     0.06     0.00        0.01         0.28
## 6238     0.00     0.00        0.02         0.28
## 6239     0.00     0.00        0.02         0.28
## 6240     0.10     0.02        0.04         0.28
## 6241     0.10     0.00        0.02         0.28
## 6242     0.11     0.00        0.04         0.28
## 6243     0.06     0.00        0.01         0.28
## 6244     0.11     0.00        0.04         0.28
## 6245     0.11     0.00        0.04         0.28
## 6246     0.07     0.19        0.01         0.28
## 6247     0.04     0.00        0.02         0.28
## 6248     0.09     0.00        0.02         0.28
## 6249     0.00     0.27        0.01         0.28
## 6250     0.11     0.00        0.04         0.28
## 6251     0.07     0.00        0.00         0.28
## 6252     0.03     0.00        0.03         0.28
## 6253     0.19     0.00        0.05         0.28
## 6254     0.00     0.28        0.00         0.28
## 6255     0.04     0.15        0.02         0.28
## 6256     0.00     0.28        0.00         0.28
## 6257     0.00     0.28        0.00         0.28
## 6258     0.00     0.00        0.02         0.28
## 6259     0.07     0.18        0.03         0.28
## 6260     0.10     0.00        0.05         0.28
## 6261     0.00     0.28        0.00         0.28
## 6262     0.00     0.20        0.01         0.27
## 6263     0.11     0.00        0.04         0.27
## 6264     0.00     0.27        0.00         0.27
## 6265     0.10     0.00        0.04         0.27
## 6266     0.02     0.00        0.00         0.27
## 6267     0.20     0.00        0.02         0.27
## 6268     0.00     0.00        0.02         0.27
## 6269     0.06     0.00        0.01         0.27
## 6270     0.06     0.00        0.03         0.27
## 6271     0.00     0.26        0.02         0.27
## 6272     0.06     0.00        0.01         0.27
## 6273     0.00     0.06        0.00         0.06
## 6274     0.07     0.00        0.00         0.27
## 6275     0.00     0.26        0.02         0.27
## 6276     0.06     0.11        0.02         0.27
## 6277     0.07     0.00        0.00         0.27
## 6278     0.11     0.00        0.03         0.27
## 6279     0.01     0.00        0.02         0.27
## 6280     0.00     0.27        0.00         0.27
## 6281     0.10     0.00        0.02         0.27
## 6282     0.06     0.00        0.01         0.27
## 6283     0.10     0.00        0.03         0.27
## 6284     0.01     0.00        0.00         0.06
## 6285     0.00     0.00        0.02         0.27
## 6286     0.01     0.00        0.17         0.27
## 6287     0.01     0.15        0.01         0.27
## 6288     0.10     0.00        0.02         0.27
## 6289     0.02     0.22        0.02         0.27
## 6290     0.10     0.00        0.02         0.27
## 6291     0.10     0.00        0.02         0.27
## 6292     0.12     0.02        0.04         0.27
## 6293     0.12     0.00        0.03         0.27
## 6294     0.00     0.19        0.01         0.27
## 6295     0.03     0.11        0.01         0.27
## 6296     0.00     0.10        0.01         0.27
## 6297     0.01     0.00        0.00         0.27
## 6298     0.17     0.00        0.09         0.27
## 6299     0.16     0.00        0.02         0.27
## 6300     0.10     0.00        0.03         0.27
## 6301     0.10     0.00        0.02         0.27
## 6302     0.00     0.27        0.00         0.27
## 6303     0.00     0.27        0.00         0.27
## 6304     0.10     0.00        0.02         0.27
## 6305     0.10     0.00        0.03         0.27
## 6306     0.05     0.00        0.01         0.27
## 6307     0.00     0.27        0.00         0.27
## 6308     0.10     0.00        0.02         0.27
## 6309     0.00     0.27        0.00         0.27
## 6310     0.07     0.12        0.01         0.27
## 6311     0.10     0.00        0.03         0.27
## 6312     0.07     0.00        0.00         0.27
## 6313     0.10     0.00        0.03         0.27
## 6314     0.04     0.00        0.04         0.27
## 6315     0.01     0.00        0.00         0.06
## 6316     0.01     0.00        0.02         0.27
## 6317     0.00     0.07        0.00         0.07
## 6318     0.02     0.00        0.00         0.27
## 6319     0.01     0.00        0.14         0.27
## 6320     0.11     0.00        0.06         0.27
## 6321     0.16     0.00        0.05         0.27
## 6322     0.08     0.00        0.01         0.27
## 6323     0.00     0.27        0.00         0.27
## 6324     0.10     0.00        0.03         0.27
## 6325     0.07     0.00        0.00         0.27
## 6326     0.08     0.06        0.04         0.27
## 6327     0.05     0.00        0.01         0.27
## 6328     0.15     0.00        0.03         0.27
## 6329     0.05     0.00        0.01         0.27
## 6330     0.00     0.27        0.00         0.27
## 6331     0.00     0.26        0.01         0.27
## 6332     0.07     0.00        0.00         0.27
## 6333     0.00     0.27        0.00         0.27
## 6334     0.10     0.00        0.03         0.27
## 6335     0.14     0.00        0.05         0.27
## 6336     0.06     0.00        0.01         0.27
## 6337     0.01     0.00        0.02         0.27
## 6338     0.10     0.00        0.03         0.27
## 6339     0.04     0.00        0.03         0.27
## 6340     0.06     0.00        0.01         0.27
## 6341     0.00     0.00        0.02         0.27
## 6342     0.13     0.00        0.04         0.27
## 6343     0.02     0.00        0.00         0.27
## 6344     0.00     0.27        0.00         0.27
## 6345     0.02     0.00        0.00         0.27
## 6346     0.08     0.00        0.01         0.27
## 6347     0.05     0.00        0.00         0.27
## 6348     0.11     0.00        0.03         0.27
## 6349     0.10     0.00        0.03         0.27
## 6350     0.00     0.27        0.00         0.27
## 6351     0.01     0.25        0.01         0.27
## 6352     0.10     0.00        0.03         0.27
## 6353     0.12     0.00        0.03         0.27
## 6354     0.19     0.00        0.04         0.27
## 6355     0.10     0.00        0.03         0.27
## 6356     0.06     0.00        0.01         0.27
## 6357     0.07     0.00        0.00         0.27
## 6358     0.05     0.14        0.02         0.27
## 6359     0.12     0.00        0.02         0.27
## 6360     0.04     0.00        0.00         0.27
## 6361     0.00     0.00        0.02         0.27
## 6362     0.00     0.16        0.01         0.27
## 6363     0.12     0.00        0.02         0.27
## 6364     0.00     0.27        0.00         0.27
## 6365     0.03     0.00        0.03         0.27
## 6366     0.11     0.02        0.02         0.27
## 6367     0.00     0.00        0.02         0.27
## 6368     0.00     0.00        0.02         0.27
## 6369     0.00     0.27        0.00         0.27
## 6370     0.00     0.12        0.01         0.27
## 6371     0.00     0.26        0.01         0.27
## 6372     0.10     0.00        0.03         0.27
## 6373     0.05     0.00        0.01         0.27
## 6374     0.08     0.00        0.02         0.27
## 6375     0.06     0.00        0.01         0.27
## 6376     0.09     0.00        0.03         0.27
## 6377     0.10     0.00        0.02         0.27
## 6378     0.00     0.00        0.02         0.27
## 6379     0.00     0.00        0.02         0.27
## 6380     0.00     0.27        0.00         0.27
## 6381     0.21     0.01        0.04         0.27
## 6382     0.07     0.00        0.00         0.27
## 6383     0.00     0.00        0.02         0.27
## 6384     0.02     0.00        0.02         0.27
## 6385     0.03     0.00        0.02         0.27
## 6386     0.01     0.00        0.02         0.27
## 6387     0.10     0.00        0.02         0.27
## 6388     0.10     0.00        0.03         0.27
## 6389     0.11     0.00        0.08         0.27
## 6390     0.00     0.25        0.02         0.27
## 6391     0.00     0.27        0.00         0.27
## 6392     0.05     0.00        0.01         0.27
## 6393     0.00     0.00        0.02         0.27
## 6394     0.09     0.00        0.02         0.27
## 6395     0.08     0.00        0.00         0.27
## 6396     0.00     0.27        0.00         0.27
## 6397     0.00     0.00        0.02         0.27
## 6398     0.10     0.00        0.03         0.27
## 6399     0.00     0.00        0.02         0.27
## 6400     0.10     0.00        0.02         0.27
## 6401     0.06     0.00        0.02         0.27
## 6402     0.00     0.00        0.02         0.27
## 6403     0.00     0.00        0.02         0.27
## 6404     0.10     0.00        0.02         0.27
## 6405     0.06     0.00        0.01         0.27
## 6406     0.00     0.00        0.02         0.27
## 6407     0.14     0.00        0.04         0.27
## 6408     0.09     0.00        0.02         0.27
## 6409     0.05     0.00        0.02         0.27
## 6410     0.00     0.00        0.02         0.27
## 6411     0.04     0.14        0.02         0.27
## 6412     0.11     0.00        0.05         0.27
## 6413     0.10     0.00        0.02         0.27
## 6414     0.00     0.27        0.00         0.27
## 6415     0.00     0.00        0.02         0.27
## 6416     0.10     0.00        0.03         0.27
## 6417     0.10     0.00        0.03         0.27
## 6418     0.06     0.04        0.04         0.27
## 6419     0.00     0.00        0.02         0.27
## 6420     0.02     0.00        0.02         0.27
## 6421     0.10     0.00        0.03         0.27
## 6422     0.00     0.00        0.02         0.27
## 6423     0.07     0.11        0.03         0.27
## 6424     0.00     0.00        0.02         0.27
## 6425     0.00     0.27        0.00         0.27
## 6426     0.07     0.00        0.00         0.27
## 6427     0.09     0.00        0.02         0.27
## 6428     0.05     0.16        0.02         0.27
## 6429     0.00     0.00        0.02         0.27
## 6430     0.00     0.00        0.02         0.27
## 6431     0.00     0.00        0.02         0.27
## 6432     0.08     0.00        0.02         0.27
## 6433     0.10     0.00        0.03         0.27
## 6434     0.10     0.00        0.03         0.27
## 6435     0.04     0.14        0.02         0.27
## 6436     0.06     0.00        0.02         0.27
## 6437     0.04     0.09        0.03         0.27
## 6438     0.07     0.00        0.00         0.27
## 6439     0.06     0.00        0.01         0.27
## 6440     0.00     0.25        0.02         0.27
## 6441     0.00     0.01        0.02         0.26
## 6442     0.09     0.03        0.03         0.26
## 6443     0.00     0.00        0.02         0.26
## 6444     0.00     0.00        0.02         0.26
## 6445     0.07     0.00        0.00         0.26
## 6446     0.18     0.00        0.02         0.26
## 6447     0.01     0.00        0.02         0.26
## 6448     0.02     0.00        0.02         0.26
## 6449     0.04     0.00        0.02         0.26
## 6450     0.00     0.26        0.00         0.26
## 6451     0.00     0.26        0.00         0.26
## 6452     0.03     0.00        0.02         0.26
## 6453     0.00     0.26        0.00         0.26
## 6454     0.02     0.00        0.02         0.26
## 6455     0.10     0.00        0.03         0.26
## 6456     0.05     0.04        0.01         0.26
## 6457     0.00     0.25        0.02         0.26
## 6458     0.00     0.00        0.02         0.26
## 6459     0.06     0.11        0.02         0.26
## 6460     0.07     0.00        0.06         0.26
## 6461     0.00     0.26        0.00         0.26
## 6462     0.03     0.14        0.01         0.26
## 6463     0.10     0.00        0.02         0.26
## 6464     0.10     0.00        0.03         0.26
## 6465     0.10     0.00        0.03         0.26
## 6466     0.19     0.00        0.02         0.26
## 6467     0.18     0.00        0.04         0.26
## 6468     0.10     0.00        0.02         0.26
## 6469     0.00     0.26        0.00         0.26
## 6470     0.00     0.26        0.00         0.26
## 6471     0.10     0.00        0.03         0.26
## 6472     0.07     0.17        0.02         0.26
## 6473     0.07     0.00        0.00         0.26
## 6474     0.00     0.26        0.00         0.26
## 6475     0.06     0.00        0.04         0.26
## 6476     0.16     0.00        0.05         0.26
## 6477     0.02     0.00        0.16         0.26
## 6478     0.00     0.26        0.00         0.26
## 6479     0.00     0.00        0.02         0.26
## 6480     0.00     0.00        0.02         0.26
## 6481     0.00     0.26        0.00         0.26
## 6482     0.10     0.00        0.03         0.26
## 6483     0.03     0.00        0.02         0.26
## 6484     0.08     0.05        0.03         0.26
## 6485     0.00     0.00        0.02         0.26
## 6486     0.00     0.26        0.00         0.26
## 6487     0.07     0.00        0.00         0.26
## 6488     0.00     0.26        0.00         0.26
## 6489     0.00     0.00        0.00         0.26
## 6490     0.01     0.25        0.00         0.26
## 6491     0.07     0.00        0.00         0.26
## 6492     0.00     0.26        0.01         0.26
## 6493     0.07     0.00        0.00         0.26
## 6494     0.10     0.01        0.05         0.26
## 6495     0.10     0.00        0.02         0.26
## 6496     0.06     0.05        0.02         0.26
## 6497     0.01     0.00        0.00         0.07
## 6498     0.00     0.00        0.02         0.26
## 6499     0.05     0.00        0.01         0.26
## 6500     0.10     0.00        0.03         0.26
## 6501     0.00     0.26        0.00         0.26
## 6502     0.00     0.00        0.02         0.26
## 6503     0.00     0.00        0.02         0.26
## 6504     0.09     0.00        0.02         0.26
## 6505     0.24     0.00        0.02         0.26
## 6506     0.20     0.00        0.05         0.26
## 6507     0.00     0.26        0.00         0.26
## 6508     0.00     0.00        0.02         0.26
## 6509     0.10     0.00        0.02         0.26
## 6510     0.05     0.07        0.01         0.26
## 6511     0.00     0.25        0.01         0.26
## 6512     0.00     0.25        0.01         0.26
## 6513     0.00     0.00        0.02         0.26
## 6514     0.10     0.00        0.03         0.26
## 6515     0.05     0.00        0.03         0.26
## 6516     0.07     0.00        0.02         0.26
## 6517     0.01     0.14        0.01         0.26
## 6518     0.03     0.18        0.02         0.26
## 6519     0.00     0.26        0.00         0.26
## 6520     0.04     0.01        0.03         0.26
## 6521     0.00     0.26        0.00         0.26
## 6522     0.00     0.26        0.00         0.26
## 6523     0.05     0.00        0.00         0.26
## 6524     0.05     0.00        0.00         0.26
## 6525     0.05     0.00        0.00         0.26
## 6526     0.05     0.00        0.00         0.26
## 6527     0.10     0.00        0.03         0.26
## 6528     0.05     0.14        0.02         0.26
## 6529     0.10     0.00        0.03         0.26
## 6530     0.07     0.00        0.00         0.26
## 6531     0.00     0.10        0.03         0.26
## 6532     0.00     0.26        0.00         0.26
## 6533     0.10     0.00        0.06         0.26
## 6534     0.07     0.00        0.02         0.26
## 6535     0.06     0.00        0.01         0.26
## 6536     0.05     0.00        0.01         0.26
## 6537     0.14     0.00        0.02         0.26
## 6538     0.01     0.00        0.00         0.26
## 6539     0.01     0.00        0.13         0.26
## 6540     0.00     0.26        0.00         0.26
## 6541     0.03     0.00        0.03         0.26
## 6542     0.09     0.00        0.03         0.26
## 6543     0.06     0.00        0.01         0.26
## 6544     0.15     0.00        0.06         0.26
## 6545     0.08     0.00        0.02         0.26
## 6546     0.08     0.00        0.02         0.26
## 6547     0.10     0.00        0.02         0.26
## 6548     0.10     0.00        0.03         0.26
## 6549     0.05     0.00        0.01         0.26
## 6550     0.00     0.25        0.00         0.26
## 6551     0.00     0.00        0.02         0.26
## 6552     0.01     0.11        0.01         0.26
## 6553     0.00     0.26        0.00         0.26
## 6554     0.15     0.00        0.02         0.26
## 6555     0.04     0.11        0.01         0.26
## 6556     0.00     0.00        0.02         0.26
## 6557     0.03     0.00        0.02         0.26
## 6558     0.00     0.00        0.02         0.26
## 6559     0.00     0.26        0.00         0.26
## 6560     0.07     0.00        0.00         0.26
## 6561     0.00     0.26        0.00         0.26
## 6562     0.07     0.00        0.02         0.26
## 6563     0.07     0.00        0.00         0.26
## 6564     0.06     0.00        0.01         0.26
## 6565     0.15     0.00        0.08         0.26
## 6566     0.10     0.00        0.03         0.26
## 6567     0.10     0.00        0.02         0.26
## 6568     0.15     0.00        0.03         0.26
## 6569     0.00     0.26        0.00         0.26
## 6570     0.06     0.00        0.02         0.26
## 6571     0.11     0.00        0.05         0.26
## 6572     0.10     0.00        0.03         0.26
## 6573     0.03     0.06        0.02         0.26
## 6574     0.00     0.00        0.02         0.26
## 6575     0.06     0.00        0.01         0.26
## 6576     0.00     0.24        0.02         0.26
## 6577     0.00     0.26        0.00         0.26
## 6578     0.08     0.02        0.04         0.26
## 6579     0.05     0.00        0.01         0.26
## 6580     0.01     0.00        0.02         0.26
## 6581     0.07     0.00        0.00         0.26
## 6582     0.05     0.13        0.02         0.26
## 6583     0.00     0.26        0.00         0.26
## 6584     0.01     0.00        0.00         0.26
## 6585     0.01     0.00        0.02         0.26
## 6586     0.00     0.26        0.00         0.26
## 6587     0.00     0.26        0.00         0.26
## 6588     0.07     0.00        0.00         0.26
## 6589     0.11     0.10        0.01         0.26
## 6590     0.00     0.00        0.02         0.26
## 6591     0.05     0.00        0.01         0.26
## 6592     0.06     0.00        0.01         0.26
## 6593     0.21     0.00        0.05         0.26
## 6594     0.10     0.00        0.03         0.26
## 6595     0.21     0.00        0.04         0.26
## 6596     0.10     0.00        0.02         0.26
## 6597     0.13     0.00        0.03         0.26
## 6598     0.10     0.00        0.03         0.26
## 6599     0.25     0.00        0.00         0.26
## 6600     0.00     0.25        0.01         0.26
## 6601     0.06     0.04        0.00         0.26
## 6602     0.00     0.02        0.02         0.26
## 6603     0.10     0.00        0.03         0.26
## 6604     0.01     0.00        0.02         0.26
## 6605     0.00     0.26        0.00         0.26
## 6606     0.06     0.00        0.01         0.26
## 6607     0.05     0.00        0.01         0.26
## 6608     0.07     0.00        0.00         0.25
## 6609     0.05     0.00        0.01         0.25
## 6610     0.00     0.24        0.02         0.25
## 6611     0.06     0.00        0.03         0.25
## 6612     0.00     0.25        0.00         0.25
## 6613     0.01     0.00        0.02         0.25
## 6614     0.10     0.00        0.03         0.25
## 6615     0.01     0.00        0.02         0.25
## 6616     0.00     0.00        0.02         0.25
## 6617     0.10     0.00        0.02         0.25
## 6618     0.15     0.00        0.06         0.25
## 6619     0.12     0.00        0.04         0.25
## 6620     0.01     0.00        0.08         0.25
## 6621     0.04     0.06        0.01         0.25
## 6622     0.00     0.00        0.02         0.25
## 6623     0.10     0.00        0.03         0.25
## 6624     0.00     0.25        0.00         0.25
## 6625     0.10     0.00        0.04         0.25
## 6626     0.04     0.06        0.02         0.25
## 6627     0.09     0.03        0.02         0.25
## 6628     0.07     0.00        0.00         0.25
## 6629     0.00     0.00        0.02         0.25
## 6630     0.05     0.00        0.01         0.25
## 6631     0.04     0.10        0.03         0.25
## 6632     0.00     0.25        0.00         0.25
## 6633     0.00     0.25        0.00         0.25
## 6634     0.11     0.00        0.04         0.25
## 6635     0.05     0.00        0.01         0.25
## 6636     0.10     0.00        0.03         0.25
## 6637     0.05     0.00        0.01         0.25
## 6638     0.02     0.00        0.03         0.25
## 6639     0.10     0.00        0.02         0.25
## 6640     0.07     0.00        0.00         0.25
## 6641     0.00     0.25        0.00         0.25
## 6642     0.00     0.24        0.02         0.25
## 6643     0.05     0.00        0.01         0.25
## 6644     0.10     0.00        0.02         0.25
## 6645     0.01     0.00        0.02         0.25
## 6646     0.04     0.00        0.01         0.25
## 6647     0.10     0.00        0.02         0.25
## 6648     0.02     0.00        0.01         0.07
## 6649     0.07     0.00        0.00         0.25
## 6650     0.02     0.00        0.02         0.25
## 6651     0.09     0.00        0.02         0.25
## 6652     0.07     0.00        0.02         0.25
## 6653     0.07     0.00        0.03         0.25
## 6654     0.09     0.02        0.04         0.25
## 6655     0.10     0.00        0.03         0.25
## 6656     0.10     0.00        0.02         0.25
## 6657     0.14     0.00        0.02         0.25
## 6658     0.10     0.00        0.02         0.25
## 6659     0.01     0.00        0.02         0.25
## 6660     0.00     0.25        0.00         0.25
## 6661     0.10     0.00        0.04         0.25
## 6662     0.23     0.00        0.03         0.25
## 6663     0.05     0.00        0.01         0.25
## 6664     0.04     0.10        0.01         0.25
## 6665     0.05     0.00        0.01         0.25
## 6666     0.01     0.00        0.02         0.25
## 6667     0.05     0.00        0.01         0.25
## 6668     0.07     0.00        0.00         0.25
## 6669     0.00     0.00        0.00         0.25
## 6670     0.00     0.25        0.00         0.25
## 6671     0.10     0.00        0.03         0.25
## 6672     0.05     0.00        0.02         0.25
## 6673     0.13     0.00        0.06         0.25
## 6674     0.00     0.23        0.02         0.25
## 6675     0.02     0.00        0.02         0.25
## 6676     0.07     0.00        0.00         0.25
## 6677     0.05     0.00        0.01         0.25
## 6678     0.05     0.00        0.01         0.25
## 6679     0.09     0.00        0.02         0.25
## 6680     0.08     0.00        0.01         0.25
## 6681     0.00     0.00        0.02         0.25
## 6682     0.00     0.25        0.00         0.25
## 6683     0.02     0.00        0.02         0.25
## 6684     0.08     0.00        0.02         0.25
## 6685     0.04     0.05        0.00         0.25
## 6686     0.02     0.00        0.00         0.25
## 6687     0.05     0.00        0.00         0.25
## 6688     0.05     0.00        0.00         0.25
## 6689     0.05     0.00        0.00         0.25
## 6690     0.13     0.00        0.01         0.25
## 6691     0.05     0.00        0.00         0.25
## 6692     0.02     0.00        0.00         0.25
## 6693     0.05     0.00        0.00         0.25
## 6694     0.14     0.00        0.04         0.25
## 6695     0.21     0.00        0.04         0.25
## 6696     0.10     0.00        0.03         0.25
## 6697     0.05     0.00        0.01         0.25
## 6698     0.10     0.00        0.03         0.25
## 6699     0.00     0.23        0.02         0.25
## 6700     0.05     0.00        0.01         0.25
## 6701     0.09     0.00        0.02         0.25
## 6702     0.07     0.00        0.02         0.25
## 6703     0.10     0.00        0.03         0.25
## 6704     0.01     0.24        0.00         0.25
## 6705     0.00     0.25        0.00         0.25
## 6706     0.13     0.00        0.04         0.25
## 6707     0.00     0.25        0.00         0.25
## 6708     0.17     0.00        0.04         0.25
## 6709     0.05     0.00        0.02         0.25
## 6710     0.04     0.00        0.04         0.25
## 6711     0.02     0.10        0.01         0.25
## 6712     0.01     0.12        0.02         0.25
## 6713     0.03     0.18        0.01         0.25
## 6714     0.03     0.00        0.02         0.25
## 6715     0.09     0.00        0.02         0.25
## 6716     0.03     0.00        0.02         0.25
## 6717     0.07     0.00        0.00         0.25
## 6718     0.00     0.24        0.01         0.25
## 6719     0.08     0.00        0.03         0.25
## 6720     0.09     0.00        0.02         0.25
## 6721     0.04     0.00        0.02         0.25
## 6722     0.00     0.25        0.00         0.25
## 6723     0.05     0.03        0.02         0.25
## 6724     0.09     0.00        0.04         0.25
## 6725     0.00     0.25        0.00         0.25
## 6726     0.11     0.00        0.02         0.25
## 6727     0.09     0.00        0.03         0.25
## 6728     0.06     0.00        0.02         0.25
## 6729     0.01     0.00        0.00         0.25
## 6730     0.05     0.00        0.01         0.25
## 6731     0.09     0.00        0.02         0.25
## 6732     0.13     0.00        0.05         0.25
## 6733     0.01     0.03        0.02         0.25
## 6734     0.09     0.00        0.02         0.25
## 6735     0.00     0.00        0.02         0.25
## 6736     0.01     0.00        0.02         0.25
## 6737     0.09     0.00        0.03         0.25
## 6738     0.01     0.03        0.02         0.25
## 6739     0.09     0.00        0.03         0.25
## 6740     0.05     0.00        0.01         0.25
## 6741     0.09     0.00        0.03         0.25
## 6742     0.09     0.00        0.02         0.25
## 6743     0.04     0.00        0.03         0.25
## 6744     0.22     0.00        0.01         0.25
## 6745     0.09     0.00        0.02         0.25
## 6746     0.16     0.00        0.03         0.25
## 6747     0.00     0.25        0.00         0.25
## 6748     0.12     0.00        0.05         0.25
## 6749     0.04     0.00        0.03         0.25
## 6750     0.16     0.00        0.03         0.25
## 6751     0.09     0.00        0.02         0.25
## 6752     0.03     0.15        0.02         0.25
## 6753     0.05     0.00        0.01         0.25
## 6754     0.11     0.00        0.02         0.25
## 6755     0.09     0.00        0.03         0.25
## 6756     0.00     0.23        0.02         0.25
## 6757     0.01     0.00        0.02         0.25
## 6758     0.07     0.00        0.00         0.25
## 6759     0.00     0.00        0.02         0.25
## 6760     0.05     0.00        0.01         0.25
## 6761     0.07     0.00        0.00         0.25
## 6762     0.14     0.00        0.08         0.25
## 6763     0.01     0.00        0.02         0.25
## 6764     0.05     0.00        0.01         0.25
## 6765     0.19     0.00        0.02         0.25
## 6766     0.14     0.00        0.03         0.25
## 6767     0.04     0.10        0.01         0.25
## 6768     0.03     0.12        0.01         0.25
## 6769     0.09     0.00        0.03         0.25
## 6770     0.10     0.00        0.02         0.25
## 6771     0.09     0.00        0.03         0.24
## 6772     0.00     0.24        0.00         0.24
## 6773     0.09     0.00        0.03         0.24
## 6774     0.07     0.00        0.02         0.24
## 6775     0.06     0.00        0.00         0.24
## 6776     0.00     0.23        0.02         0.24
## 6777     0.01     0.00        0.02         0.24
## 6778     0.00     0.00        0.00         0.07
## 6779     0.10     0.00        0.02         0.24
## 6780     0.16     0.00        0.05         0.24
## 6781     0.00     0.12        0.01         0.24
## 6782     0.00     0.00        0.02         0.24
## 6783     0.02     0.00        0.02         0.24
## 6784     0.00     0.24        0.00         0.24
## 6785     0.09     0.00        0.02         0.24
## 6786     0.10     0.00        0.02         0.24
## 6787     0.03     0.16        0.02         0.24
## 6788     0.09     0.00        0.02         0.24
## 6789     0.00     0.00        0.02         0.24
## 6790     0.09     0.00        0.02         0.24
## 6791     0.06     0.00        0.02         0.24
## 6792     0.07     0.00        0.02         0.24
## 6793     0.00     0.00        0.02         0.24
## 6794     0.03     0.06        0.05         0.24
## 6795     0.10     0.00        0.03         0.24
## 6796     0.00     0.16        0.00         0.24
## 6797     0.02     0.00        0.02         0.24
## 6798     0.09     0.00        0.03         0.24
## 6799     0.00     0.23        0.02         0.24
## 6800     0.09     0.00        0.03         0.24
## 6801     0.06     0.08        0.01         0.24
## 6802     0.00     0.00        0.02         0.24
## 6803     0.05     0.00        0.01         0.24
## 6804     0.00     0.23        0.02         0.24
## 6805     0.09     0.00        0.03         0.24
## 6806     0.00     0.00        0.02         0.24
## 6807     0.03     0.00        0.01         0.07
## 6808     0.08     0.02        0.03         0.24
## 6809     0.00     0.24        0.00         0.24
## 6810     0.12     0.00        0.02         0.24
## 6811     0.09     0.00        0.03         0.24
## 6812     0.01     0.12        0.01         0.24
## 6813     0.05     0.00        0.01         0.24
## 6814     0.04     0.05        0.01         0.24
## 6815     0.06     0.00        0.00         0.24
## 6816     0.03     0.16        0.02         0.24
## 6817     0.09     0.00        0.02         0.24
## 6818     0.13     0.00        0.05         0.24
## 6819     0.09     0.00        0.02         0.24
## 6820     0.05     0.00        0.01         0.24
## 6821     0.00     0.18        0.01         0.24
## 6822     0.01     0.00        0.02         0.24
## 6823     0.07     0.00        0.02         0.24
## 6824     0.02     0.00        0.02         0.24
## 6825     0.01     0.00        0.02         0.24
## 6826     0.15     0.00        0.02         0.24
## 6827     0.12     0.00        0.02         0.24
## 6828     0.00     0.00        0.02         0.24
## 6829     0.00     0.18        0.01         0.24
## 6830     0.02     0.00        0.02         0.24
## 6831     0.05     0.00        0.01         0.24
## 6832     0.05     0.00        0.02         0.24
## 6833     0.01     0.00        0.00         0.07
## 6834     0.09     0.00        0.03         0.24
## 6835     0.05     0.01        0.04         0.24
## 6836     0.05     0.00        0.01         0.24
## 6837     0.09     0.00        0.05         0.24
## 6838     0.19     0.00        0.05         0.24
## 6839     0.05     0.00        0.01         0.24
## 6840     0.01     0.05        0.02         0.24
## 6841     0.00     0.00        0.02         0.24
## 6842     0.00     0.24        0.00         0.24
## 6843     0.00     0.24        0.00         0.24
## 6844     0.05     0.00        0.01         0.24
## 6845     0.06     0.00        0.02         0.24
## 6846     0.21     0.00        0.01         0.24
## 6847     0.00     0.24        0.00         0.24
## 6848     0.05     0.00        0.01         0.24
## 6849     0.00     0.06        0.01         0.24
## 6850     0.06     0.00        0.00         0.24
## 6851     0.05     0.00        0.02         0.24
## 6852     0.05     0.00        0.01         0.24
## 6853     0.00     0.00        0.02         0.24
## 6854     0.11     0.00        0.04         0.24
## 6855     0.00     0.24        0.00         0.24
## 6856     0.06     0.00        0.00         0.24
## 6857     0.09     0.00        0.03         0.24
## 6858     0.00     0.00        0.02         0.24
## 6859     0.09     0.00        0.03         0.24
## 6860     0.00     0.07        0.01         0.24
## 6861     0.05     0.00        0.01         0.24
## 6862     0.00     0.01        0.02         0.24
## 6863     0.02     0.00        0.02         0.24
## 6864     0.00     0.24        0.00         0.24
## 6865     0.03     0.00        0.03         0.24
## 6866     0.03     0.00        0.02         0.24
## 6867     0.01     0.00        0.00         0.24
## 6868     0.05     0.00        0.00         0.24
## 6869     0.05     0.00        0.00         0.24
## 6870     0.05     0.00        0.00         0.24
## 6871     0.05     0.00        0.00         0.24
## 6872     0.05     0.00        0.00         0.24
## 6873     0.05     0.00        0.00         0.24
## 6874     0.02     0.00        0.02         0.24
## 6875     0.09     0.00        0.03         0.24
## 6876     0.00     0.24        0.00         0.24
## 6877     0.10     0.00        0.02         0.24
## 6878     0.05     0.00        0.01         0.24
## 6879     0.09     0.00        0.02         0.24
## 6880     0.05     0.00        0.01         0.24
## 6881     0.23     0.00        0.01         0.24
## 6882     0.00     0.00        0.02         0.24
## 6883     0.06     0.00        0.00         0.24
## 6884     0.00     0.00        0.02         0.24
## 6885     0.00     0.00        0.02         0.24
## 6886     0.08     0.00        0.02         0.24
## 6887     0.00     0.23        0.01         0.24
## 6888     0.09     0.00        0.02         0.24
## 6889     0.00     0.24        0.00         0.24
## 6890     0.06     0.00        0.03         0.24
## 6891     0.13     0.00        0.02         0.24
## 6892     0.07     0.06        0.03         0.24
## 6893     0.05     0.00        0.01         0.24
## 6894     0.09     0.00        0.03         0.24
## 6895     0.14     0.00        0.02         0.24
## 6896     0.04     0.00        0.02         0.24
## 6897     0.01     0.00        0.00         0.24
## 6898     0.00     0.24        0.00         0.24
## 6899     0.05     0.00        0.02         0.24
## 6900     0.06     0.00        0.02         0.24
## 6901     0.08     0.06        0.02         0.24
## 6902     0.05     0.00        0.01         0.24
## 6903     0.09     0.00        0.02         0.24
## 6904     0.00     0.03        0.02         0.24
## 6905     0.14     0.00        0.03         0.24
## 6906     0.06     0.00        0.00         0.24
## 6907     0.06     0.00        0.00         0.24
## 6908     0.03     0.00        0.02         0.24
## 6909     0.24     0.00        0.00         0.24
## 6910     0.06     0.01        0.02         0.24
## 6911     0.10     0.00        0.02         0.24
## 6912     0.02     0.04        0.02         0.24
## 6913     0.09     0.00        0.03         0.24
## 6914     0.09     0.00        0.02         0.24
## 6915     0.09     0.00        0.03         0.24
## 6916     0.07     0.00        0.05         0.24
## 6917     0.00     0.00        0.02         0.24
## 6918     0.18     0.00        0.05         0.24
## 6919     0.14     0.01        0.05         0.24
## 6920     0.00     0.00        0.01         0.07
## 6921     0.10     0.00        0.02         0.24
## 6922     0.06     0.11        0.01         0.24
## 6923     0.09     0.00        0.02         0.24
## 6924     0.02     0.04        0.04         0.24
## 6925     0.06     0.00        0.02         0.24
## 6926     0.09     0.00        0.02         0.24
## 6927     0.00     0.00        0.00         0.07
## 6928     0.05     0.00        0.02         0.24
## 6929     0.10     0.00        0.05         0.24
## 6930     0.11     0.00        0.03         0.24
## 6931     0.21     0.00        0.02         0.24
## 6932     0.09     0.00        0.02         0.24
## 6933     0.05     0.00        0.02         0.24
## 6934     0.01     0.13        0.01         0.24
## 6935     0.05     0.00        0.01         0.24
## 6936     0.06     0.00        0.00         0.24
## 6937     0.00     0.24        0.00         0.24
## 6938     0.00     0.00        0.00         0.07
## 6939     0.09     0.00        0.02         0.24
## 6940     0.01     0.00        0.00         0.24
## 6941     0.01     0.00        0.00         0.24
## 6942     0.10     0.00        0.02         0.24
## 6943     0.05     0.00        0.02         0.24
## 6944     0.12     0.00        0.02         0.24
## 6945     0.00     0.13        0.01         0.24
## 6946     0.00     0.00        0.01         0.24
## 6947     0.06     0.00        0.04         0.24
## 6948     0.01     0.04        0.02         0.24
## 6949     0.09     0.01        0.04         0.24
## 6950     0.07     0.01        0.02         0.24
## 6951     0.06     0.00        0.02         0.24
## 6952     0.09     0.00        0.03         0.24
## 6953     0.08     0.00        0.04         0.23
## 6954     0.05     0.00        0.02         0.23
## 6955     0.03     0.00        0.02         0.23
## 6956     0.09     0.00        0.02         0.23
## 6957     0.00     0.00        0.02         0.23
## 6958     0.09     0.00        0.03         0.23
## 6959     0.09     0.00        0.03         0.23
## 6960     0.06     0.00        0.02         0.23
## 6961     0.00     0.23        0.00         0.23
## 6962     0.01     0.12        0.01         0.23
## 6963     0.00     0.23        0.00         0.23
## 6964     0.09     0.00        0.02         0.23
## 6965     0.21     0.00        0.02         0.23
## 6966     0.22     0.00        0.02         0.23
## 6967     0.00     0.00        0.00         0.07
## 6968     0.00     0.00        0.02         0.23
## 6969     0.01     0.00        0.00         0.07
## 6970     0.00     0.23        0.01         0.23
## 6971     0.05     0.00        0.01         0.23
## 6972     0.05     0.00        0.01         0.23
## 6973     0.11     0.00        0.05         0.23
## 6974     0.04     0.00        0.02         0.23
## 6975     0.05     0.00        0.01         0.23
## 6976     0.05     0.00        0.02         0.23
## 6977     0.09     0.11        0.03         0.23
## 6978     0.00     0.23        0.00         0.23
## 6979     0.01     0.06        0.01         0.23
## 6980     0.10     0.01        0.02         0.23
## 6981     0.05     0.00        0.02         0.23
## 6982     0.02     0.05        0.02         0.23
## 6983     0.00     0.00        0.02         0.23
## 6984     0.03     0.00        0.03         0.23
## 6985     0.00     0.23        0.00         0.23
## 6986     0.02     0.08        0.00         0.23
## 6987     0.06     0.00        0.04         0.23
## 6988     0.13     0.00        0.02         0.23
## 6989     0.02     0.00        0.02         0.23
## 6990     0.13     0.00        0.03         0.23
## 6991     0.05     0.00        0.01         0.23
## 6992     0.19     0.00        0.05         0.23
## 6993     0.09     0.00        0.03         0.23
## 6994     0.05     0.00        0.01         0.23
## 6995     0.00     0.23        0.00         0.23
## 6996     0.00     0.23        0.00         0.23
## 6997     0.07     0.00        0.03         0.23
## 6998     0.06     0.00        0.04         0.23
## 6999     0.09     0.00        0.03         0.23
## 7000     0.00     0.00        0.02         0.23
## 7001     0.00     0.00        0.02         0.23
## 7002     0.09     0.00        0.03         0.23
## 7003     0.00     0.23        0.00         0.23
## 7004     0.01     0.00        0.02         0.23
## 7005     0.00     0.23        0.00         0.23
## 7006     0.01     0.00        0.00         0.23
## 7007     0.01     0.00        0.02         0.23
## 7008     0.10     0.00        0.04         0.23
## 7009     0.05     0.00        0.01         0.23
## 7010     0.05     0.00        0.01         0.23
## 7011     0.02     0.00        0.02         0.23
## 7012     0.00     0.00        0.02         0.23
## 7013     0.10     0.00        0.02         0.23
## 7014     0.09     0.00        0.03         0.23
## 7015     0.00     0.23        0.00         0.23
## 7016     0.01     0.00        0.06         0.23
## 7017     0.05     0.00        0.01         0.23
## 7018     0.06     0.00        0.03         0.23
## 7019     0.09     0.00        0.03         0.23
## 7020     0.05     0.00        0.02         0.23
## 7021     0.09     0.00        0.02         0.23
## 7022     0.00     0.23        0.00         0.23
## 7023     0.00     0.23        0.00         0.23
## 7024     0.05     0.00        0.01         0.23
## 7025     0.00     0.00        0.02         0.23
## 7026     0.11     0.00        0.02         0.23
## 7027     0.02     0.00        0.02         0.23
## 7028     0.01     0.00        0.02         0.23
## 7029     0.02     0.00        0.02         0.23
## 7030     0.01     0.00        0.02         0.23
## 7031     0.09     0.00        0.02         0.23
## 7032     0.09     0.00        0.02         0.23
## 7033     0.00     0.00        0.02         0.23
## 7034     0.06     0.00        0.00         0.23
## 7035     0.16     0.00        0.07         0.23
## 7036     0.00     0.00        0.00         0.07
## 7037     0.09     0.00        0.02         0.23
## 7038     0.12     0.09        0.02         0.23
## 7039     0.03     0.18        0.01         0.23
## 7040     0.06     0.02        0.02         0.23
## 7041     0.08     0.00        0.02         0.23
## 7042     0.00     0.00        0.01         0.23
## 7043     0.06     0.00        0.00         0.23
## 7044     0.06     0.00        0.02         0.23
## 7045     0.05     0.00        0.03         0.23
## 7046     0.00     0.23        0.00         0.23
## 7047     0.09     0.00        0.02         0.23
## 7048     0.00     0.00        0.02         0.23
## 7049     0.13     0.00        0.02         0.23
## 7050     0.09     0.00        0.03         0.23
## 7051     0.22     0.00        0.01         0.23
## 7052     0.05     0.00        0.01         0.23
## 7053     0.07     0.00        0.03         0.23
## 7054     0.12     0.00        0.03         0.23
## 7055     0.09     0.00        0.03         0.23
## 7056     0.00     0.00        0.02         0.23
## 7057     0.06     0.00        0.00         0.23
## 7058     0.04     0.00        0.04         0.23
## 7059     0.02     0.00        0.02         0.23
## 7060     0.19     0.00        0.04         0.23
## 7061     0.00     0.23        0.00         0.23
## 7062     0.02     0.00        0.02         0.23
## 7063     0.01     0.00        0.02         0.23
## 7064     0.00     0.23        0.00         0.23
## 7065     0.01     0.00        0.02         0.23
## 7066     0.00     0.23        0.00         0.23
## 7067     0.00     0.23        0.00         0.23
## 7068     0.00     0.23        0.00         0.23
## 7069     0.09     0.00        0.03         0.23
## 7070     0.06     0.00        0.02         0.23
## 7071     0.00     0.13        0.01         0.23
## 7072     0.09     0.00        0.03         0.23
## 7073     0.14     0.00        0.07         0.23
## 7074     0.00     0.00        0.01         0.23
## 7075     0.00     0.23        0.00         0.23
## 7076     0.09     0.00        0.01         0.23
## 7077     0.06     0.00        0.00         0.23
## 7078     0.00     0.00        0.02         0.23
## 7079     0.00     0.23        0.00         0.23
## 7080     0.00     0.23        0.00         0.23
## 7081     0.01     0.07        0.01         0.23
## 7082     0.09     0.00        0.03         0.23
## 7083     0.06     0.00        0.00         0.23
## 7084     0.00     0.00        0.02         0.23
## 7085     0.00     0.23        0.00         0.23
## 7086     0.05     0.00        0.01         0.23
## 7087     0.00     0.23        0.00         0.23
## 7088     0.05     0.00        0.01         0.23
## 7089     0.10     0.03        0.02         0.23
## 7090     0.09     0.00        0.03         0.23
## 7091     0.05     0.10        0.02         0.23
## 7092     0.09     0.00        0.01         0.23
## 7093     0.00     0.23        0.00         0.23
## 7094     0.09     0.00        0.03         0.23
## 7095     0.00     0.23        0.00         0.23
## 7096     0.09     0.00        0.01         0.23
## 7097     0.00     0.21        0.01         0.23
## 7098     0.05     0.00        0.01         0.23
## 7099     0.09     0.00        0.03         0.23
## 7100     0.09     0.00        0.03         0.23
## 7101     0.03     0.00        0.02         0.23
## 7102     0.03     0.00        0.02         0.23
## 7103     0.04     0.12        0.01         0.23
## 7104     0.00     0.00        0.02         0.23
## 7105     0.04     0.12        0.01         0.23
## 7106     0.05     0.00        0.01         0.23
## 7107     0.00     0.12        0.01         0.23
## 7108     0.09     0.00        0.03         0.23
## 7109     0.01     0.04        0.02         0.23
## 7110     0.01     0.00        0.02         0.23
## 7111     0.00     0.00        0.02         0.23
## 7112     0.00     0.00        0.01         0.23
## 7113     0.09     0.00        0.03         0.23
## 7114     0.01     0.00        0.02         0.23
## 7115     0.09     0.00        0.03         0.23
## 7116     0.00     0.00        0.02         0.23
## 7117     0.09     0.00        0.03         0.23
## 7118     0.10     0.00        0.04         0.23
## 7119     0.07     0.00        0.02         0.23
## 7120     0.00     0.00        0.02         0.23
## 7121     0.00     0.23        0.00         0.23
## 7122     0.09     0.00        0.03         0.23
## 7123     0.00     0.00        0.01         0.23
## 7124     0.00     0.21        0.01         0.23
## 7125     0.05     0.09        0.03         0.23
## 7126     0.00     0.23        0.00         0.23
## 7127     0.09     0.00        0.03         0.23
## 7128     0.09     0.00        0.01         0.23
## 7129     0.09     0.00        0.03         0.23
## 7130     0.00     0.00        0.02         0.23
## 7131     0.00     0.23        0.00         0.23
## 7132     0.00     0.00        0.02         0.23
## 7133     0.00     0.00        0.02         0.23
## 7134     0.09     0.00        0.03         0.23
## 7135     0.09     0.00        0.03         0.22
## 7136     0.01     0.00        0.02         0.22
## 7137     0.01     0.00        0.02         0.22
## 7138     0.00     0.22        0.00         0.22
## 7139     0.00     0.00        0.12         0.22
## 7140     0.03     0.00        0.02         0.22
## 7141     0.05     0.00        0.01         0.22
## 7142     0.00     0.22        0.00         0.22
## 7143     0.09     0.00        0.03         0.22
## 7144     0.04     0.05        0.02         0.22
## 7145     0.06     0.00        0.00         0.22
## 7146     0.09     0.00        0.02         0.22
## 7147     0.00     0.22        0.00         0.22
## 7148     0.04     0.00        0.01         0.22
## 7149     0.01     0.00        0.00         0.22
## 7150     0.01     0.00        0.00         0.22
## 7151     0.01     0.00        0.00         0.22
## 7152     0.00     0.08        0.01         0.22
## 7153     0.03     0.00        0.02         0.22
## 7154     0.00     0.22        0.00         0.22
## 7155     0.06     0.00        0.03         0.22
## 7156     0.00     0.22        0.00         0.22
## 7157     0.00     0.00        0.01         0.22
## 7158     0.05     0.00        0.01         0.22
## 7159     0.09     0.00        0.03         0.22
## 7160     0.09     0.00        0.03         0.22
## 7161     0.00     0.22        0.00         0.22
## 7162     0.07     0.00        0.02         0.22
## 7163     0.00     0.00        0.01         0.22
## 7164     0.06     0.00        0.04         0.22
## 7165     0.00     0.22        0.00         0.22
## 7166     0.04     0.00        0.01         0.22
## 7167     0.01     0.00        0.02         0.22
## 7168     0.00     0.00        0.21         0.22
## 7169     0.00     0.00        0.02         0.22
## 7170     0.00     0.22        0.00         0.22
## 7171     0.04     0.06        0.00         0.22
## 7172     0.00     0.11        0.01         0.22
## 7173     0.09     0.00        0.03         0.22
## 7174     0.04     0.00        0.01         0.22
## 7175     0.06     0.00        0.00         0.22
## 7176     0.06     0.00        0.00         0.22
## 7177     0.00     0.00        0.02         0.22
## 7178     0.13     0.00        0.04         0.22
## 7179     0.00     0.07        0.01         0.22
## 7180     0.02     0.00        0.02         0.22
## 7181     0.08     0.01        0.04         0.22
## 7182     0.00     0.00        0.00         0.07
## 7183     0.04     0.10        0.02         0.22
## 7184     0.07     0.00        0.02         0.22
## 7185     0.01     0.00        0.00         0.22
## 7186     0.00     0.22        0.00         0.22
## 7187     0.08     0.00        0.01         0.22
## 7188     0.02     0.00        0.02         0.22
## 7189     0.08     0.00        0.01         0.22
## 7190     0.01     0.00        0.02         0.22
## 7191     0.02     0.17        0.01         0.22
## 7192     0.00     0.00        0.02         0.22
## 7193     0.06     0.08        0.02         0.22
## 7194     0.00     0.00        0.02         0.22
## 7195     0.00     0.22        0.00         0.22
## 7196     0.07     0.00        0.02         0.22
## 7197     0.01     0.00        0.01         0.22
## 7198     0.00     0.00        0.02         0.22
## 7199     0.06     0.00        0.00         0.22
## 7200     0.13     0.00        0.03         0.22
## 7201     0.10     0.00        0.04         0.22
## 7202     0.12     0.00        0.07         0.22
## 7203     0.13     0.02        0.04         0.22
## 7204     0.02     0.00        0.01         0.22
## 7205     0.01     0.00        0.02         0.22
## 7206     0.01     0.03        0.02         0.22
## 7207     0.08     0.00        0.01         0.22
## 7208     0.08     0.00        0.02         0.22
## 7209     0.06     0.00        0.00         0.22
## 7210     0.08     0.00        0.05         0.22
## 7211     0.04     0.12        0.02         0.22
## 7212     0.08     0.00        0.02         0.22
## 7213     0.10     0.00        0.04         0.22
## 7214     0.14     0.00        0.03         0.22
## 7215     0.06     0.00        0.00         0.22
## 7216     0.00     0.00        0.02         0.22
## 7217     0.09     0.00        0.04         0.22
## 7218     0.06     0.00        0.00         0.22
## 7219     0.10     0.00        0.02         0.22
## 7220     0.05     0.00        0.01         0.22
## 7221     0.00     0.22        0.00         0.22
## 7222     0.04     0.00        0.01         0.22
## 7223     0.09     0.00        0.02         0.22
## 7224     0.04     0.00        0.00         0.22
## 7225     0.03     0.05        0.00         0.22
## 7226     0.00     0.22        0.00         0.22
## 7227     0.04     0.00        0.00         0.22
## 7228     0.04     0.00        0.00         0.22
## 7229     0.00     0.22        0.00         0.22
## 7230     0.03     0.00        0.02         0.22
## 7231     0.04     0.00        0.01         0.22
## 7232     0.00     0.00        0.02         0.22
## 7233     0.00     0.00        0.01         0.22
## 7234     0.08     0.00        0.03         0.22
## 7235     0.18     0.00        0.01         0.22
## 7236     0.08     0.00        0.01         0.22
## 7237     0.00     0.17        0.00         0.22
## 7238     0.00     0.00        0.02         0.22
## 7239     0.02     0.03        0.02         0.22
## 7240     0.05     0.00        0.01         0.22
## 7241     0.09     0.00        0.02         0.22
## 7242     0.08     0.00        0.01         0.22
## 7243     0.03     0.00        0.02         0.22
## 7244     0.05     0.00        0.01         0.22
## 7245     0.07     0.00        0.02         0.22
## 7246     0.03     0.12        0.01         0.22
## 7247     0.00     0.22        0.00         0.22
## 7248     0.04     0.00        0.01         0.22
## 7249     0.08     0.00        0.03         0.22
## 7250     0.08     0.00        0.03         0.22
## 7251     0.00     0.22        0.00         0.22
## 7252     0.01     0.00        0.02         0.22
## 7253     0.06     0.07        0.01         0.22
## 7254     0.09     0.00        0.02         0.22
## 7255     0.08     0.00        0.04         0.22
## 7256     0.00     0.22        0.00         0.22
## 7257     0.04     0.00        0.01         0.22
## 7258     0.00     0.00        0.01         0.22
## 7259     0.08     0.00        0.04         0.22
## 7260     0.00     0.00        0.02         0.22
## 7261     0.01     0.00        0.10         0.22
## 7262     0.08     0.00        0.03         0.22
## 7263     0.00     0.22        0.00         0.22
## 7264     0.00     0.00        0.02         0.22
## 7265     0.01     0.00        0.02         0.22
## 7266     0.07     0.00        0.03         0.22
## 7267     0.08     0.00        0.03         0.22
## 7268     0.19     0.00        0.02         0.22
## 7269     0.04     0.06        0.01         0.22
## 7270     0.08     0.00        0.03         0.22
## 7271     0.06     0.00        0.00         0.22
## 7272     0.02     0.06        0.01         0.22
## 7273     0.00     0.00        0.02         0.22
## 7274     0.06     0.00        0.00         0.22
## 7275     0.00     0.13        0.01         0.22
## 7276     0.00     0.22        0.00         0.22
## 7277     0.08     0.00        0.03         0.22
## 7278     0.00     0.00        0.02         0.22
## 7279     0.00     0.22        0.00         0.22
## 7280     0.04     0.00        0.01         0.22
## 7281     0.10     0.00        0.04         0.22
## 7282     0.08     0.00        0.01         0.22
## 7283     0.00     0.22        0.00         0.22
## 7284     0.06     0.00        0.00         0.22
## 7285     0.00     0.00        0.02         0.22
## 7286     0.00     0.22        0.00         0.22
## 7287     0.08     0.00        0.01         0.22
## 7288     0.08     0.00        0.01         0.22
## 7289     0.06     0.06        0.03         0.22
## 7290     0.01     0.00        0.02         0.22
## 7291     0.05     0.01        0.02         0.22
## 7292     0.13     0.00        0.04         0.22
## 7293     0.05     0.00        0.03         0.22
## 7294     0.04     0.00        0.01         0.22
## 7295     0.00     0.22        0.00         0.22
## 7296     0.06     0.00        0.00         0.22
## 7297     0.20     0.00        0.01         0.22
## 7298     0.06     0.00        0.00         0.22
## 7299     0.04     0.00        0.01         0.22
## 7300     0.13     0.00        0.02         0.22
## 7301     0.01     0.00        0.02         0.22
## 7302     0.00     0.22        0.00         0.22
## 7303     0.07     0.00        0.03         0.22
## 7304     0.07     0.13        0.02         0.22
## 7305     0.08     0.00        0.03         0.22
## 7306     0.03     0.04        0.01         0.22
## 7307     0.19     0.00        0.02         0.22
## 7308     0.00     0.22        0.00         0.22
## 7309     0.02     0.02        0.02         0.22
## 7310     0.13     0.03        0.03         0.22
## 7311     0.04     0.05        0.01         0.22
## 7312     0.10     0.00        0.02         0.22
## 7313     0.08     0.00        0.01         0.21
## 7314     0.08     0.00        0.03         0.21
## 7315     0.00     0.08        0.01         0.21
## 7316     0.08     0.00        0.01         0.21
## 7317     0.03     0.06        0.03         0.21
## 7318     0.00     0.00        0.02         0.21
## 7319     0.09     0.00        0.05         0.21
## 7320     0.08     0.00        0.03         0.21
## 7321     0.08     0.00        0.01         0.21
## 7322     0.16     0.00        0.05         0.21
## 7323     0.04     0.00        0.01         0.21
## 7324     0.08     0.00        0.03         0.21
## 7325     0.00     0.00        0.02         0.21
## 7326     0.08     0.00        0.03         0.21
## 7327     0.00     0.21        0.00         0.21
## 7328     0.04     0.00        0.02         0.21
## 7329     0.00     0.11        0.01         0.21
## 7330     0.00     0.21        0.00         0.21
## 7331     0.00     0.21        0.00         0.21
## 7332     0.02     0.15        0.01         0.21
## 7333     0.00     0.21        0.00         0.21
## 7334     0.19     0.00        0.03         0.21
## 7335     0.00     0.00        0.02         0.21
## 7336     0.08     0.03        0.02         0.21
## 7337     0.02     0.08        0.03         0.21
## 7338     0.08     0.00        0.03         0.21
## 7339     0.00     0.00        0.02         0.21
## 7340     0.07     0.00        0.02         0.21
## 7341     0.02     0.00        0.01         0.21
## 7342     0.04     0.00        0.01         0.21
## 7343     0.08     0.00        0.01         0.21
## 7344     0.07     0.00        0.04         0.21
## 7345     0.08     0.00        0.04         0.21
## 7346     0.08     0.00        0.03         0.21
## 7347     0.00     0.21        0.00         0.21
## 7348     0.08     0.00        0.03         0.21
## 7349     0.00     0.00        0.02         0.21
## 7350     0.00     0.21        0.00         0.21
## 7351     0.06     0.00        0.00         0.21
## 7352     0.00     0.00        0.01         0.08
## 7353     0.05     0.00        0.01         0.21
## 7354     0.00     0.21        0.00         0.21
## 7355     0.08     0.00        0.03         0.21
## 7356     0.01     0.00        0.02         0.21
## 7357     0.07     0.00        0.03         0.21
## 7358     0.01     0.00        0.02         0.21
## 7359     0.05     0.00        0.01         0.21
## 7360     0.06     0.00        0.02         0.21
## 7361     0.07     0.00        0.02         0.21
## 7362     0.00     0.00        0.02         0.21
## 7363     0.05     0.00        0.01         0.21
## 7364     0.05     0.00        0.01         0.21
## 7365     0.08     0.00        0.03         0.21
## 7366     0.12     0.00        0.02         0.21
## 7367     0.08     0.00        0.03         0.21
## 7368     0.00     0.00        0.02         0.21
## 7369     0.11     0.01        0.04         0.21
## 7370     0.07     0.00        0.01         0.08
## 7371     0.00     0.00        0.00         0.08
## 7372     0.01     0.00        0.00         0.21
## 7373     0.18     0.00        0.04         0.21
## 7374     0.03     0.07        0.01         0.21
## 7375     0.08     0.00        0.02         0.21
## 7376     0.03     0.00        0.01         0.21
## 7377     0.07     0.00        0.03         0.21
## 7378     0.01     0.00        0.02         0.21
## 7379     0.08     0.00        0.03         0.21
## 7380     0.08     0.00        0.03         0.21
## 7381     0.08     0.00        0.03         0.21
## 7382     0.00     0.21        0.01         0.21
## 7383     0.00     0.08        0.00         0.08
## 7384     0.00     0.20        0.01         0.21
## 7385     0.10     0.01        0.04         0.21
## 7386     0.00     0.21        0.00         0.21
## 7387     0.07     0.00        0.02         0.21
## 7388     0.03     0.08        0.01         0.21
## 7389     0.02     0.00        0.02         0.21
## 7390     0.01     0.00        0.02         0.21
## 7391     0.05     0.08        0.02         0.21
## 7392     0.08     0.00        0.01         0.21
## 7393     0.05     0.00        0.02         0.21
## 7394     0.05     0.00        0.01         0.21
## 7395     0.05     0.00        0.02         0.21
## 7396     0.01     0.00        0.02         0.21
## 7397     0.00     0.00        0.02         0.21
## 7398     0.00     0.21        0.00         0.21
## 7399     0.08     0.00        0.03         0.21
## 7400     0.04     0.00        0.01         0.21
## 7401     0.00     0.00        0.01         0.21
## 7402     0.00     0.00        0.01         0.21
## 7403     0.00     0.13        0.01         0.21
## 7404     0.08     0.00        0.03         0.21
## 7405     0.08     0.00        0.01         0.21
## 7406     0.07     0.03        0.02         0.21
## 7407     0.00     0.00        0.00         0.08
## 7408     0.05     0.00        0.01         0.21
## 7409     0.04     0.00        0.02         0.21
## 7410     0.00     0.00        0.02         0.21
## 7411     0.00     0.00        0.02         0.21
## 7412     0.04     0.00        0.00         0.21
## 7413     0.04     0.00        0.00         0.21
## 7414     0.04     0.00        0.00         0.21
## 7415     0.04     0.00        0.00         0.21
## 7416     0.04     0.00        0.00         0.21
## 7417     0.04     0.00        0.00         0.21
## 7418     0.07     0.00        0.02         0.21
## 7419     0.00     0.00        0.01         0.21
## 7420     0.00     0.20        0.01         0.21
## 7421     0.14     0.00        0.01         0.21
## 7422     0.00     0.21        0.00         0.21
## 7423     0.04     0.00        0.01         0.21
## 7424     0.07     0.00        0.01         0.08
## 7425     0.08     0.00        0.01         0.21
## 7426     0.08     0.00        0.01         0.21
## 7427     0.00     0.20        0.01         0.21
## 7428     0.00     0.20        0.01         0.21
## 7429     0.00     0.01        0.01         0.21
## 7430     0.05     0.02        0.02         0.21
## 7431     0.08     0.00        0.03         0.21
## 7432     0.04     0.00        0.01         0.21
## 7433     0.08     0.00        0.03         0.21
## 7434     0.08     0.00        0.03         0.21
## 7435     0.00     0.10        0.01         0.21
## 7436     0.04     0.00        0.01         0.21
## 7437     0.04     0.00        0.02         0.21
## 7438     0.00     0.21        0.00         0.21
## 7439     0.06     0.00        0.00         0.21
## 7440     0.04     0.07        0.01         0.21
## 7441     0.00     0.21        0.00         0.21
## 7442     0.04     0.03        0.01         0.21
## 7443     0.04     0.00        0.01         0.21
## 7444     0.07     0.00        0.02         0.21
## 7445     0.04     0.00        0.01         0.21
## 7446     0.01     0.00        0.01         0.21
## 7447     0.08     0.00        0.01         0.21
## 7448     0.08     0.00        0.03         0.21
## 7449     0.08     0.00        0.03         0.21
## 7450     0.00     0.00        0.02         0.21
## 7451     0.00     0.21        0.00         0.21
## 7452     0.08     0.00        0.01         0.21
## 7453     0.13     0.00        0.05         0.21
## 7454     0.12     0.00        0.05         0.21
## 7455     0.00     0.00        0.02         0.21
## 7456     0.00     0.00        0.01         0.21
## 7457     0.00     0.00        0.01         0.21
## 7458     0.00     0.21        0.00         0.21
## 7459     0.00     0.00        0.01         0.21
## 7460     0.08     0.00        0.03         0.21
## 7461     0.08     0.00        0.02         0.21
## 7462     0.00     0.00        0.02         0.21
## 7463     0.04     0.00        0.01         0.21
## 7464     0.07     0.00        0.03         0.21
## 7465     0.00     0.21        0.00         0.21
## 7466     0.00     0.00        0.02         0.21
## 7467     0.00     0.00        0.02         0.21
## 7468     0.00     0.19        0.01         0.21
## 7469     0.08     0.00        0.03         0.21
## 7470     0.00     0.21        0.00         0.21
## 7471     0.05     0.00        0.00         0.21
## 7472     0.00     0.21        0.00         0.21
## 7473     0.00     0.00        0.01         0.21
## 7474     0.03     0.08        0.00         0.21
## 7475     0.00     0.06        0.01         0.21
## 7476     0.04     0.00        0.01         0.21
## 7477     0.00     0.00        0.02         0.21
## 7478     0.03     0.12        0.01         0.21
## 7479     0.06     0.00        0.02         0.21
## 7480     0.04     0.00        0.01         0.21
## 7481     0.04     0.00        0.01         0.21
## 7482     0.00     0.21        0.00         0.21
## 7483     0.03     0.06        0.02         0.21
## 7484     0.08     0.00        0.02         0.21
## 7485     0.04     0.00        0.02         0.21
## 7486     0.00     0.21        0.00         0.21
## 7487     0.10     0.04        0.01         0.21
## 7488     0.08     0.00        0.01         0.21
## 7489     0.02     0.00        0.02         0.21
## 7490     0.04     0.00        0.01         0.21
## 7491     0.10     0.01        0.04         0.21
## 7492     0.00     0.21        0.00         0.21
## 7493     0.04     0.00        0.01         0.21
## 7494     0.05     0.00        0.00         0.21
## 7495     0.07     0.00        0.03         0.21
## 7496     0.00     0.00        0.02         0.20
## 7497     0.04     0.00        0.02         0.20
## 7498     0.06     0.11        0.02         0.20
## 7499     0.00     0.20        0.00         0.20
## 7500     0.00     0.00        0.01         0.20
## 7501     0.05     0.00        0.00         0.20
## 7502     0.00     0.00        0.01         0.20
## 7503     0.01     0.00        0.02         0.20
## 7504     0.05     0.00        0.00         0.20
## 7505     0.07     0.00        0.02         0.20
## 7506     0.00     0.20        0.00         0.20
## 7507     0.00     0.00        0.02         0.20
## 7508     0.00     0.00        0.01         0.20
## 7509     0.11     0.00        0.02         0.20
## 7510     0.02     0.00        0.02         0.20
## 7511     0.08     0.00        0.03         0.20
## 7512     0.03     0.00        0.01         0.20
## 7513     0.00     0.20        0.00         0.20
## 7514     0.08     0.00        0.03         0.20
## 7515     0.04     0.00        0.01         0.20
## 7516     0.02     0.00        0.02         0.20
## 7517     0.00     0.20        0.00         0.20
## 7518     0.08     0.00        0.02         0.20
## 7519     0.04     0.00        0.02         0.20
## 7520     0.00     0.20        0.00         0.20
## 7521     0.02     0.00        0.19         0.20
## 7522     0.09     0.00        0.03         0.20
## 7523     0.05     0.07        0.02         0.20
## 7524     0.04     0.00        0.01         0.20
## 7525     0.03     0.00        0.02         0.20
## 7526     0.00     0.14        0.01         0.20
## 7527     0.00     0.20        0.00         0.20
## 7528     0.04     0.02        0.01         0.20
## 7529     0.02     0.01        0.02         0.20
## 7530     0.17     0.00        0.03         0.20
## 7531     0.04     0.00        0.01         0.20
## 7532     0.00     0.20        0.00         0.20
## 7533     0.09     0.00        0.03         0.20
## 7534     0.05     0.00        0.00         0.20
## 7535     0.08     0.00        0.03         0.20
## 7536     0.00     0.20        0.00         0.20
## 7537     0.00     0.20        0.00         0.20
## 7538     0.05     0.09        0.02         0.20
## 7539     0.05     0.08        0.02         0.20
## 7540     0.19     0.00        0.01         0.20
## 7541     0.08     0.00        0.03         0.20
## 7542     0.08     0.00        0.03         0.20
## 7543     0.00     0.20        0.00         0.20
## 7544     0.05     0.10        0.02         0.20
## 7545     0.08     0.05        0.01         0.20
## 7546     0.20     0.00        0.00         0.20
## 7547     0.02     0.00        0.01         0.20
## 7548     0.00     0.00        0.02         0.20
## 7549     0.05     0.00        0.02         0.20
## 7550     0.19     0.00        0.01         0.20
## 7551     0.08     0.00        0.03         0.20
## 7552     0.04     0.00        0.01         0.20
## 7553     0.00     0.20        0.00         0.20
## 7554     0.00     0.20        0.00         0.20
## 7555     0.04     0.00        0.01         0.20
## 7556     0.03     0.03        0.02         0.20
## 7557     0.02     0.00        0.02         0.20
## 7558     0.04     0.08        0.02         0.20
## 7559     0.08     0.00        0.03         0.20
## 7560     0.03     0.00        0.02         0.20
## 7561     0.00     0.20        0.01         0.20
## 7562     0.08     0.00        0.02         0.20
## 7563     0.05     0.00        0.00         0.20
## 7564     0.07     0.02        0.02         0.20
## 7565     0.10     0.00        0.02         0.20
## 7566     0.15     0.00        0.05         0.20
## 7567     0.08     0.00        0.03         0.20
## 7568     0.02     0.00        0.01         0.20
## 7569     0.00     0.20        0.00         0.20
## 7570     0.03     0.16        0.01         0.20
## 7571     0.01     0.00        0.02         0.20
## 7572     0.05     0.00        0.00         0.20
## 7573     0.07     0.00        0.03         0.20
## 7574     0.00     0.00        0.02         0.20
## 7575     0.04     0.00        0.01         0.20
## 7576     0.04     0.00        0.04         0.20
## 7577     0.00     0.20        0.00         0.20
## 7578     0.06     0.00        0.02         0.20
## 7579     0.00     0.20        0.00         0.20
## 7580     0.04     0.00        0.01         0.20
## 7581     0.05     0.00        0.00         0.20
## 7582     0.00     0.20        0.00         0.20
## 7583     0.04     0.00        0.01         0.20
## 7584     0.00     0.20        0.00         0.20
## 7585     0.00     0.00        0.01         0.20
## 7586     0.04     0.00        0.01         0.20
## 7587     0.00     0.18        0.00         0.20
## 7588     0.08     0.00        0.03         0.20
## 7589     0.05     0.00        0.00         0.20
## 7590     0.04     0.09        0.01         0.20
## 7591     0.02     0.07        0.01         0.20
## 7592     0.08     0.00        0.03         0.20
## 7593     0.00     0.00        0.01         0.20
## 7594     0.00     0.00        0.01         0.20
## 7595     0.00     0.00        0.01         0.20
## 7596     0.07     0.02        0.02         0.20
## 7597     0.08     0.00        0.02         0.20
## 7598     0.08     0.00        0.01         0.20
## 7599     0.00     0.00        0.02         0.20
## 7600     0.05     0.00        0.03         0.20
## 7601     0.08     0.00        0.03         0.20
## 7602     0.04     0.01        0.02         0.20
## 7603     0.04     0.00        0.01         0.20
## 7604     0.08     0.00        0.01         0.20
## 7605     0.00     0.20        0.00         0.20
## 7606     0.04     0.04        0.02         0.20
## 7607     0.11     0.00        0.02         0.20
## 7608     0.09     0.00        0.02         0.20
## 7609     0.08     0.00        0.02         0.20
## 7610     0.04     0.00        0.01         0.20
## 7611     0.06     0.00        0.02         0.20
## 7612     0.12     0.00        0.02         0.20
## 7613     0.08     0.00        0.03         0.20
## 7614     0.04     0.00        0.01         0.20
## 7615     0.04     0.00        0.00         0.20
## 7616     0.00     0.09        0.00         0.09
## 7617     0.13     0.00        0.01         0.20
## 7618     0.02     0.05        0.00         0.20
## 7619     0.04     0.00        0.00         0.20
## 7620     0.04     0.00        0.00         0.20
## 7621     0.04     0.00        0.00         0.20
## 7622     0.04     0.00        0.00         0.20
## 7623     0.04     0.00        0.00         0.20
## 7624     0.00     0.20        0.00         0.20
## 7625     0.04     0.00        0.00         0.20
## 7626     0.00     0.00        0.02         0.20
## 7627     0.04     0.00        0.01         0.20
## 7628     0.00     0.20        0.00         0.20
## 7629     0.04     0.00        0.02         0.20
## 7630     0.00     0.03        0.01         0.20
## 7631     0.03     0.00        0.02         0.20
## 7632     0.00     0.00        0.02         0.20
## 7633     0.08     0.00        0.03         0.20
## 7634     0.00     0.20        0.00         0.20
## 7635     0.05     0.00        0.00         0.20
## 7636     0.08     0.00        0.03         0.20
## 7637     0.02     0.10        0.01         0.20
## 7638     0.00     0.19        0.01         0.20
## 7639     0.04     0.00        0.01         0.20
## 7640     0.17     0.00        0.03         0.20
## 7641     0.09     0.00        0.04         0.20
## 7642     0.10     0.00        0.03         0.20
## 7643     0.08     0.00        0.03         0.20
## 7644     0.04     0.00        0.01         0.20
## 7645     0.00     0.20        0.00         0.20
## 7646     0.02     0.02        0.02         0.20
## 7647     0.04     0.00        0.01         0.20
## 7648     0.00     0.20        0.00         0.20
## 7649     0.00     0.00        0.01         0.09
## 7650     0.00     0.20        0.00         0.20
## 7651     0.04     0.00        0.02         0.20
## 7652     0.11     0.01        0.03         0.20
## 7653     0.05     0.00        0.02         0.20
## 7654     0.08     0.00        0.03         0.20
## 7655     0.00     0.20        0.00         0.20
## 7656     0.01     0.16        0.01         0.20
## 7657     0.00     0.00        0.01         0.20
## 7658     0.06     0.00        0.02         0.20
## 7659     0.13     0.00        0.02         0.20
## 7660     0.04     0.00        0.01         0.20
## 7661     0.04     0.00        0.01         0.20
## 7662     0.00     0.20        0.00         0.20
## 7663     0.08     0.00        0.03         0.20
## 7664     0.20     0.00        0.00         0.20
## 7665     0.01     0.00        0.01         0.20
## 7666     0.08     0.05        0.03         0.20
## 7667     0.02     0.07        0.01         0.20
## 7668     0.08     0.00        0.03         0.20
## 7669     0.00     0.00        0.01         0.20
## 7670     0.04     0.00        0.01         0.20
## 7671     0.00     0.00        0.01         0.20
## 7672     0.00     0.20        0.00         0.20
## 7673     0.00     0.20        0.00         0.20
## 7674     0.04     0.00        0.01         0.20
## 7675     0.00     0.01        0.01         0.20
## 7676     0.06     0.00        0.02         0.20
## 7677     0.01     0.00        0.02         0.20
## 7678     0.00     0.20        0.00         0.20
## 7679     0.08     0.00        0.03         0.20
## 7680     0.00     0.00        0.01         0.20
## 7681     0.01     0.00        0.02         0.20
## 7682     0.07     0.00        0.01         0.20
## 7683     0.10     0.00        0.02         0.20
## 7684     0.01     0.00        0.02         0.20
## 7685     0.04     0.00        0.01         0.20
## 7686     0.00     0.09        0.01         0.20
## 7687     0.09     0.00        0.02         0.20
## 7688     0.08     0.00        0.03         0.20
## 7689     0.00     0.20        0.00         0.20
## 7690     0.00     0.00        0.01         0.20
## 7691     0.08     0.03        0.01         0.20
## 7692     0.00     0.00        0.01         0.20
## 7693     0.08     0.00        0.03         0.20
## 7694     0.00     0.00        0.01         0.20
## 7695     0.00     0.00        0.01         0.20
## 7696     0.05     0.00        0.00         0.20
## 7697     0.08     0.00        0.03         0.20
## 7698     0.00     0.20        0.00         0.20
## 7699     0.00     0.11        0.01         0.20
## 7700     0.00     0.20        0.00         0.20
## 7701     0.00     0.18        0.01         0.20
## 7702     0.00     0.00        0.01         0.20
## 7703     0.02     0.00        0.02         0.20
## 7704     0.05     0.00        0.00         0.20
## 7705     0.05     0.00        0.00         0.20
## 7706     0.01     0.00        0.02         0.20
## 7707     0.04     0.00        0.01         0.20
## 7708     0.04     0.00        0.01         0.20
## 7709     0.07     0.00        0.01         0.20
## 7710     0.05     0.00        0.00         0.20
## 7711     0.13     0.00        0.02         0.20
## 7712     0.03     0.00        0.02         0.20
## 7713     0.00     0.20        0.00         0.20
## 7714     0.00     0.20        0.00         0.20
## 7715     0.04     0.00        0.01         0.20
## 7716     0.00     0.00        0.02         0.20
## 7717     0.04     0.00        0.01         0.20
## 7718     0.05     0.00        0.01         0.20
## 7719     0.00     0.20        0.00         0.20
## 7720     0.03     0.00        0.01         0.20
## 7721     0.00     0.09        0.00         0.09
## 7722     0.00     0.05        0.02         0.20
## 7723     0.07     0.00        0.03         0.20
## 7724     0.00     0.03        0.01         0.20
## 7725     0.00     0.00        0.01         0.20
## 7726     0.07     0.00        0.03         0.20
## 7727     0.17     0.00        0.03         0.20
## 7728     0.00     0.00        0.01         0.20
## 7729     0.03     0.08        0.02         0.20
## 7730     0.12     0.00        0.03         0.20
## 7731     0.07     0.00        0.02         0.20
## 7732     0.05     0.05        0.02         0.20
## 7733     0.07     0.00        0.02         0.20
## 7734     0.05     0.00        0.00         0.20
## 7735     0.00     0.02        0.01         0.19
## 7736     0.13     0.00        0.04         0.19
## 7737     0.00     0.00        0.01         0.19
## 7738     0.00     0.00        0.01         0.19
## 7739     0.12     0.00        0.03         0.19
## 7740     0.04     0.00        0.01         0.19
## 7741     0.07     0.00        0.02         0.19
## 7742     0.05     0.00        0.00         0.19
## 7743     0.06     0.04        0.02         0.19
## 7744     0.03     0.00        0.02         0.19
## 7745     0.11     0.00        0.02         0.19
## 7746     0.00     0.18        0.01         0.19
## 7747     0.06     0.01        0.02         0.19
## 7748     0.08     0.00        0.04         0.19
## 7749     0.09     0.00        0.02         0.19
## 7750     0.07     0.00        0.03         0.19
## 7751     0.04     0.00        0.02         0.19
## 7752     0.07     0.00        0.02         0.19
## 7753     0.00     0.06        0.01         0.19
## 7754     0.00     0.00        0.01         0.19
## 7755     0.00     0.19        0.00         0.19
## 7756     0.03     0.08        0.01         0.19
## 7757     0.00     0.00        0.01         0.19
## 7758     0.00     0.19        0.00         0.19
## 7759     0.05     0.00        0.00         0.19
## 7760     0.01     0.00        0.01         0.19
## 7761     0.00     0.19        0.00         0.19
## 7762     0.17     0.00        0.02         0.19
## 7763     0.04     0.00        0.01         0.19
## 7764     0.00     0.19        0.00         0.19
## 7765     0.02     0.00        0.02         0.19
## 7766     0.05     0.00        0.00         0.19
## 7767     0.00     0.19        0.00         0.19
## 7768     0.00     0.18        0.01         0.19
## 7769     0.13     0.00        0.01         0.19
## 7770     0.00     0.19        0.00         0.19
## 7771     0.04     0.04        0.01         0.19
## 7772     0.09     0.02        0.03         0.19
## 7773     0.04     0.00        0.01         0.19
## 7774     0.07     0.00        0.02         0.19
## 7775     0.06     0.00        0.03         0.19
## 7776     0.04     0.00        0.01         0.19
## 7777     0.00     0.00        0.01         0.19
## 7778     0.07     0.00        0.02         0.19
## 7779     0.02     0.05        0.01         0.19
## 7780     0.01     0.00        0.02         0.19
## 7781     0.01     0.00        0.01         0.19
## 7782     0.03     0.00        0.03         0.19
## 7783     0.00     0.19        0.00         0.19
## 7784     0.16     0.00        0.02         0.19
## 7785     0.00     0.19        0.00         0.19
## 7786     0.11     0.00        0.01         0.19
## 7787     0.11     0.00        0.02         0.19
## 7788     0.00     0.19        0.00         0.19
## 7789     0.01     0.00        0.01         0.19
## 7790     0.07     0.00        0.02         0.19
## 7791     0.00     0.19        0.00         0.19
## 7792     0.03     0.01        0.03         0.19
## 7793     0.02     0.00        0.02         0.19
## 7794     0.00     0.00        0.01         0.19
## 7795     0.00     0.19        0.00         0.19
## 7796     0.07     0.00        0.01         0.19
## 7797     0.00     0.04        0.02         0.19
## 7798     0.07     0.00        0.01         0.19
## 7799     0.15     0.00        0.04         0.19
## 7800     0.02     0.02        0.01         0.19
## 7801     0.06     0.01        0.03         0.19
## 7802     0.04     0.00        0.01         0.19
## 7803     0.09     0.00        0.02         0.19
## 7804     0.00     0.00        0.01         0.19
## 7805     0.10     0.00        0.03         0.19
## 7806     0.02     0.00        0.02         0.19
## 7807     0.00     0.00        0.01         0.19
## 7808     0.02     0.00        0.01         0.19
## 7809     0.01     0.00        0.01         0.19
## 7810     0.07     0.00        0.02         0.19
## 7811     0.07     0.00        0.02         0.19
## 7812     0.04     0.00        0.01         0.19
## 7813     0.00     0.19        0.00         0.19
## 7814     0.00     0.00        0.01         0.19
## 7815     0.03     0.00        0.01         0.19
## 7816     0.07     0.00        0.02         0.19
## 7817     0.00     0.19        0.00         0.19
## 7818     0.01     0.00        0.01         0.19
## 7819     0.07     0.00        0.02         0.19
## 7820     0.00     0.00        0.01         0.19
## 7821     0.02     0.00        0.01         0.19
## 7822     0.07     0.00        0.02         0.19
## 7823     0.05     0.00        0.00         0.19
## 7824     0.00     0.19        0.00         0.19
## 7825     0.00     0.19        0.00         0.19
## 7826     0.07     0.00        0.02         0.19
## 7827     0.13     0.00        0.03         0.19
## 7828     0.07     0.00        0.01         0.19
## 7829     0.00     0.18        0.01         0.19
## 7830     0.00     0.19        0.00         0.19
## 7831     0.07     0.02        0.02         0.19
## 7832     0.07     0.00        0.04         0.19
## 7833     0.07     0.00        0.02         0.19
## 7834     0.02     0.10        0.01         0.19
## 7835     0.03     0.00        0.01         0.19
## 7836     0.09     0.00        0.02         0.19
## 7837     0.01     0.16        0.00         0.19
## 7838     0.00     0.19        0.00         0.19
## 7839     0.07     0.00        0.02         0.19
## 7840     0.07     0.00        0.02         0.19
## 7841     0.07     0.00        0.01         0.19
## 7842     0.03     0.00        0.01         0.19
## 7843     0.07     0.00        0.02         0.19
## 7844     0.00     0.00        0.01         0.19
## 7845     0.03     0.00        0.02         0.19
## 7846     0.00     0.19        0.00         0.19
## 7847     0.05     0.00        0.00         0.19
## 7848     0.04     0.00        0.01         0.19
## 7849     0.00     0.19        0.00         0.19
## 7850     0.05     0.00        0.02         0.19
## 7851     0.07     0.00        0.02         0.19
## 7852     0.11     0.00        0.03         0.19
## 7853     0.00     0.00        0.01         0.19
## 7854     0.05     0.00        0.00         0.19
## 7855     0.04     0.00        0.01         0.19
## 7856     0.09     0.00        0.04         0.19
## 7857     0.03     0.00        0.01         0.19
## 7858     0.00     0.19        0.00         0.19
## 7859     0.02     0.06        0.03         0.19
## 7860     0.04     0.00        0.00         0.19
## 7861     0.04     0.00        0.00         0.19
## 7862     0.04     0.00        0.00         0.19
## 7863     0.00     0.16        0.03         0.19
## 7864     0.00     0.19        0.00         0.19
## 7865     0.04     0.00        0.00         0.19
## 7866     0.04     0.00        0.00         0.19
## 7867     0.00     0.19        0.00         0.19
## 7868     0.00     0.00        0.01         0.19
## 7869     0.00     0.19        0.00         0.19
## 7870     0.00     0.00        0.01         0.19
## 7871     0.04     0.00        0.01         0.19
## 7872     0.04     0.00        0.01         0.19
## 7873     0.06     0.00        0.02         0.19
## 7874     0.07     0.00        0.02         0.19
## 7875     0.07     0.00        0.02         0.19
## 7876     0.05     0.00        0.00         0.19
## 7877     0.00     0.19        0.00         0.19
## 7878     0.07     0.00        0.01         0.19
## 7879     0.06     0.01        0.02         0.19
## 7880     0.00     0.00        0.01         0.19
## 7881     0.00     0.19        0.00         0.19
## 7882     0.05     0.07        0.02         0.19
## 7883     0.00     0.00        0.01         0.19
## 7884     0.07     0.00        0.02         0.19
## 7885     0.05     0.00        0.00         0.19
## 7886     0.07     0.00        0.02         0.19
## 7887     0.01     0.12        0.01         0.19
## 7888     0.00     0.06        0.01         0.19
## 7889     0.00     0.19        0.00         0.19
## 7890     0.06     0.00        0.03         0.19
## 7891     0.05     0.00        0.03         0.19
## 7892     0.04     0.00        0.01         0.19
## 7893     0.16     0.00        0.03         0.19
## 7894     0.05     0.00        0.03         0.19
## 7895     0.03     0.00        0.01         0.19
## 7896     0.07     0.00        0.02         0.19
## 7897     0.07     0.00        0.02         0.19
## 7898     0.00     0.19        0.00         0.19
## 7899     0.07     0.00        0.02         0.19
## 7900     0.00     0.19        0.00         0.19
## 7901     0.07     0.00        0.02         0.19
## 7902     0.18     0.00        0.01         0.19
## 7903     0.12     0.00        0.02         0.19
## 7904     0.04     0.00        0.01         0.19
## 7905     0.01     0.00        0.00         0.19
## 7906     0.00     0.00        0.01         0.19
## 7907     0.00     0.00        0.01         0.19
## 7908     0.00     0.18        0.01         0.19
## 7909     0.03     0.00        0.01         0.09
## 7910     0.07     0.00        0.01         0.19
## 7911     0.00     0.19        0.00         0.19
## 7912     0.00     0.18        0.01         0.19
## 7913     0.04     0.00        0.01         0.19
## 7914     0.00     0.00        0.01         0.19
## 7915     0.00     0.19        0.00         0.19
## 7916     0.00     0.19        0.00         0.19
## 7917     0.01     0.02        0.01         0.19
## 7918     0.00     0.19        0.00         0.19
## 7919     0.00     0.00        0.08         0.19
## 7920     0.05     0.00        0.02         0.19
## 7921     0.07     0.00        0.01         0.19
## 7922     0.08     0.00        0.02         0.19
## 7923     0.01     0.00        0.01         0.19
## 7924     0.16     0.00        0.02         0.19
## 7925     0.00     0.19        0.00         0.19
## 7926     0.07     0.00        0.02         0.19
## 7927     0.01     0.00        0.01         0.19
## 7928     0.00     0.19        0.00         0.19
## 7929     0.07     0.00        0.02         0.19
## 7930     0.00     0.19        0.00         0.19
## 7931     0.15     0.00        0.04         0.19
## 7932     0.00     0.19        0.00         0.19
## 7933     0.00     0.19        0.00         0.19
## 7934     0.16     0.00        0.02         0.19
## 7935     0.00     0.00        0.01         0.19
## 7936     0.17     0.00        0.02         0.19
## 7937     0.00     0.19        0.00         0.19
## 7938     0.05     0.00        0.02         0.19
## 7939     0.16     0.00        0.03         0.19
## 7940     0.00     0.00        0.01         0.19
## 7941     0.00     0.19        0.00         0.19
## 7942     0.00     0.11        0.01         0.19
## 7943     0.00     0.00        0.01         0.19
## 7944     0.05     0.00        0.00         0.19
## 7945     0.05     0.03        0.01         0.19
## 7946     0.00     0.19        0.00         0.19
## 7947     0.02     0.00        0.00         0.09
## 7948     0.07     0.00        0.01         0.19
## 7949     0.00     0.00        0.01         0.19
## 7950     0.13     0.00        0.03         0.19
## 7951     0.00     0.19        0.00         0.19
## 7952     0.00     0.19        0.00         0.19
## 7953     0.00     0.19        0.00         0.19
## 7954     0.05     0.00        0.00         0.19
## 7955     0.07     0.00        0.02         0.19
## 7956     0.00     0.19        0.00         0.19
## 7957     0.05     0.00        0.00         0.19
## 7958     0.07     0.00        0.01         0.19
## 7959     0.00     0.06        0.01         0.19
## 7960     0.07     0.00        0.02         0.19
## 7961     0.00     0.00        0.01         0.19
## 7962     0.07     0.00        0.02         0.19
## 7963     0.00     0.19        0.00         0.19
## 7964     0.07     0.00        0.02         0.19
## 7965     0.05     0.00        0.00         0.19
## 7966     0.11     0.00        0.02         0.19
## 7967     0.03     0.03        0.01         0.19
## 7968     0.07     0.00        0.02         0.19
## 7969     0.02     0.00        0.01         0.19
## 7970     0.00     0.19        0.00         0.19
## 7971     0.00     0.19        0.00         0.19
## 7972     0.04     0.00        0.01         0.19
## 7973     0.00     0.00        0.02         0.19
## 7974     0.00     0.19        0.00         0.19
## 7975     0.04     0.00        0.01         0.19
## 7976     0.03     0.00        0.00         0.19
## 7977     0.00     0.19        0.00         0.19
## 7978     0.03     0.00        0.00         0.19
## 7979     0.07     0.01        0.01         0.19
## 7980     0.00     0.00        0.01         0.19
## 7981     0.00     0.00        0.01         0.19
## 7982     0.07     0.00        0.02         0.19
## 7983     0.00     0.19        0.00         0.19
## 7984     0.07     0.00        0.02         0.19
## 7985     0.00     0.11        0.01         0.19
## 7986     0.05     0.00        0.01         0.19
## 7987     0.02     0.00        0.01         0.19
## 7988     0.04     0.00        0.01         0.19
## 7989     0.00     0.00        0.01         0.19
## 7990     0.07     0.00        0.02         0.19
## 7991     0.03     0.00        0.01         0.19
## 7992     0.00     0.00        0.01         0.19
## 7993     0.04     0.00        0.03         0.19
## 7994     0.07     0.00        0.01         0.19
## 7995     0.00     0.19        0.00         0.19
## 7996     0.09     0.00        0.03         0.19
## 7997     0.11     0.00        0.03         0.18
## 7998     0.00     0.00        0.01         0.18
## 7999     0.07     0.00        0.02         0.18
## 8000     0.11     0.00        0.02         0.18
## 8001     0.06     0.00        0.02         0.18
## 8002     0.00     0.00        0.01         0.18
## 8003     0.09     0.00        0.02         0.18
## 8004     0.07     0.00        0.02         0.18
## 8005     0.05     0.00        0.00         0.18
## 8006     0.04     0.00        0.01         0.18
## 8007     0.00     0.00        0.01         0.18
## 8008     0.07     0.00        0.02         0.18
## 8009     0.04     0.00        0.01         0.18
## 8010     0.11     0.00        0.04         0.18
## 8011     0.04     0.00        0.01         0.18
## 8012     0.00     0.00        0.02         0.18
## 8013     0.07     0.00        0.02         0.18
## 8014     0.02     0.07        0.02         0.18
## 8015     0.01     0.00        0.01         0.18
## 8016     0.07     0.00        0.01         0.18
## 8017     0.00     0.00        0.01         0.18
## 8018     0.00     0.01        0.03         0.18
## 8019     0.04     0.00        0.01         0.18
## 8020     0.00     0.18        0.00         0.18
## 8021     0.03     0.11        0.01         0.18
## 8022     0.07     0.00        0.02         0.18
## 8023     0.02     0.00        0.01         0.18
## 8024     0.04     0.00        0.01         0.18
## 8025     0.02     0.05        0.01         0.18
## 8026     0.07     0.03        0.02         0.18
## 8027     0.00     0.18        0.00         0.18
## 8028     0.10     0.00        0.01         0.18
## 8029     0.00     0.18        0.00         0.18
## 8030     0.03     0.11        0.01         0.18
## 8031     0.06     0.00        0.02         0.18
## 8032     0.11     0.00        0.02         0.18
## 8033     0.07     0.00        0.01         0.18
## 8034     0.14     0.00        0.04         0.18
## 8035     0.05     0.00        0.00         0.18
## 8036     0.00     0.00        0.01         0.18
## 8037     0.01     0.00        0.02         0.18
## 8038     0.00     0.18        0.00         0.18
## 8039     0.07     0.00        0.02         0.18
## 8040     0.08     0.00        0.02         0.18
## 8041     0.15     0.00        0.04         0.18
## 8042     0.09     0.00        0.01         0.18
## 8043     0.04     0.00        0.01         0.18
## 8044     0.04     0.00        0.01         0.18
## 8045     0.01     0.00        0.01         0.09
## 8046     0.04     0.00        0.01         0.18
## 8047     0.07     0.00        0.01         0.18
## 8048     0.04     0.00        0.02         0.18
## 8049     0.07     0.00        0.02         0.18
## 8050     0.00     0.18        0.00         0.18
## 8051     0.00     0.18        0.00         0.18
## 8052     0.00     0.17        0.01         0.18
## 8053     0.07     0.00        0.02         0.18
## 8054     0.09     0.00        0.02         0.18
## 8055     0.05     0.00        0.00         0.18
## 8056     0.00     0.00        0.18         0.18
## 8057     0.10     0.00        0.03         0.18
## 8058     0.01     0.05        0.01         0.18
## 8059     0.00     0.18        0.00         0.18
## 8060     0.06     0.01        0.02         0.18
## 8061     0.00     0.00        0.05         0.18
## 8062     0.00     0.18        0.00         0.18
## 8063     0.02     0.00        0.01         0.18
## 8064     0.08     0.01        0.01         0.18
## 8065     0.04     0.00        0.00         0.18
## 8066     0.00     0.00        0.01         0.18
## 8067     0.16     0.00        0.02         0.18
## 8068     0.01     0.13        0.00         0.18
## 8069     0.01     0.00        0.01         0.18
## 8070     0.04     0.00        0.01         0.18
## 8071     0.16     0.00        0.02         0.18
## 8072     0.06     0.03        0.02         0.18
## 8073     0.12     0.00        0.02         0.18
## 8074     0.04     0.00        0.00         0.18
## 8075     0.03     0.05        0.03         0.18
## 8076     0.06     0.00        0.02         0.18
## 8077     0.00     0.18        0.00         0.18
## 8078     0.05     0.00        0.00         0.18
## 8079     0.00     0.18        0.00         0.18
## 8080     0.00     0.00        0.01         0.18
## 8081     0.03     0.00        0.01         0.18
## 8082     0.00     0.07        0.02         0.18
## 8083     0.00     0.18        0.00         0.18
## 8084     0.06     0.00        0.02         0.18
## 8085     0.00     0.07        0.03         0.18
## 8086     0.00     0.18        0.00         0.18
## 8087     0.01     0.00        0.01         0.10
## 8088     0.03     0.07        0.02         0.18
## 8089     0.04     0.00        0.01         0.18
## 8090     0.07     0.00        0.01         0.18
## 8091     0.00     0.00        0.01         0.18
## 8092     0.07     0.00        0.02         0.18
## 8093     0.07     0.00        0.02         0.18
## 8094     0.00     0.17        0.01         0.18
## 8095     0.14     0.00        0.04         0.18
## 8096     0.12     0.00        0.02         0.18
## 8097     0.04     0.00        0.01         0.18
## 8098     0.04     0.00        0.01         0.18
## 8099     0.04     0.00        0.00         0.18
## 8100     0.04     0.00        0.00         0.18
## 8101     0.00     0.18        0.00         0.18
## 8102     0.00     0.07        0.02         0.18
## 8103     0.04     0.00        0.00         0.18
## 8104     0.00     0.18        0.00         0.18
## 8105     0.04     0.00        0.02         0.18
## 8106     0.04     0.00        0.01         0.18
## 8107     0.10     0.00        0.03         0.18
## 8108     0.02     0.00        0.01         0.18
## 8109     0.15     0.00        0.02         0.18
## 8110     0.05     0.00        0.00         0.18
## 8111     0.02     0.00        0.02         0.18
## 8112     0.00     0.18        0.00         0.18
## 8113     0.07     0.00        0.02         0.18
## 8114     0.04     0.00        0.01         0.18
## 8115     0.06     0.00        0.02         0.18
## 8116     0.03     0.00        0.01         0.18
## 8117     0.08     0.00        0.03         0.18
## 8118     0.08     0.00        0.02         0.18
## 8119     0.00     0.18        0.00         0.18
## 8120     0.04     0.00        0.00         0.18
## 8121     0.00     0.00        0.01         0.18
## 8122     0.04     0.00        0.01         0.18
## 8123     0.16     0.00        0.02         0.18
## 8124     0.00     0.00        0.01         0.18
## 8125     0.00     0.18        0.00         0.18
## 8126     0.07     0.00        0.02         0.18
## 8127     0.07     0.00        0.01         0.18
## 8128     0.10     0.00        0.03         0.18
## 8129     0.05     0.00        0.00         0.18
## 8130     0.06     0.00        0.02         0.18
## 8131     0.09     0.00        0.03         0.18
## 8132     0.05     0.00        0.00         0.18
## 8133     0.07     0.00        0.02         0.18
## 8134     0.04     0.02        0.01         0.18
## 8135     0.13     0.00        0.01         0.18
## 8136     0.04     0.00        0.01         0.18
## 8137     0.00     0.00        0.01         0.18
## 8138     0.07     0.00        0.02         0.18
## 8139     0.10     0.00        0.01         0.18
## 8140     0.00     0.00        0.01         0.18
## 8141     0.02     0.10        0.01         0.18
## 8142     0.08     0.00        0.02         0.18
## 8143     0.04     0.00        0.00         0.18
## 8144     0.03     0.02        0.03         0.18
## 8145     0.09     0.00        0.02         0.18
## 8146     0.07     0.00        0.01         0.18
## 8147     0.00     0.18        0.00         0.18
## 8148     0.07     0.00        0.02         0.18
## 8149     0.00     0.00        0.01         0.18
## 8150     0.04     0.00        0.00         0.18
## 8151     0.00     0.00        0.01         0.18
## 8152     0.07     0.00        0.01         0.18
## 8153     0.07     0.00        0.02         0.18
## 8154     0.02     0.01        0.01         0.18
## 8155     0.07     0.00        0.01         0.18
## 8156     0.00     0.18        0.00         0.18
## 8157     0.07     0.00        0.02         0.18
## 8158     0.00     0.10        0.00         0.10
## 8159     0.04     0.08        0.02         0.18
## 8160     0.04     0.00        0.00         0.18
## 8161     0.04     0.08        0.01         0.18
## 8162     0.04     0.00        0.05         0.18
## 8163     0.05     0.00        0.00         0.18
## 8164     0.00     0.00        0.01         0.18
## 8165     0.03     0.10        0.01         0.18
## 8166     0.02     0.00        0.01         0.18
## 8167     0.00     0.18        0.00         0.18
## 8168     0.00     0.00        0.01         0.10
## 8169     0.00     0.18        0.00         0.18
## 8170     0.04     0.00        0.01         0.18
## 8171     0.05     0.00        0.00         0.18
## 8172     0.05     0.00        0.00         0.18
## 8173     0.00     0.18        0.00         0.18
## 8174     0.00     0.18        0.00         0.18
## 8175     0.00     0.18        0.00         0.18
## 8176     0.07     0.00        0.02         0.18
## 8177     0.09     0.00        0.02         0.18
## 8178     0.07     0.00        0.02         0.18
## 8179     0.00     0.00        0.01         0.18
## 8180     0.07     0.00        0.02         0.18
## 8181     0.05     0.00        0.01         0.18
## 8182     0.04     0.00        0.01         0.18
## 8183     0.00     0.00        0.01         0.18
## 8184     0.05     0.00        0.00         0.18
## 8185     0.00     0.00        0.01         0.18
## 8186     0.00     0.00        0.01         0.18
## 8187     0.13     0.00        0.03         0.18
## 8188     0.07     0.00        0.01         0.18
## 8189     0.07     0.00        0.01         0.18
## 8190     0.00     0.00        0.01         0.18
## 8191     0.13     0.00        0.01         0.18
## 8192     0.00     0.00        0.01         0.18
## 8193     0.05     0.00        0.00         0.18
## 8194     0.04     0.00        0.01         0.18
## 8195     0.05     0.00        0.00         0.18
## 8196     0.00     0.18        0.00         0.18
## 8197     0.00     0.18        0.00         0.18
## 8198     0.04     0.00        0.01         0.18
## 8199     0.04     0.00        0.01         0.18
## 8200     0.00     0.00        0.01         0.18
## 8201     0.03     0.00        0.02         0.18
## 8202     0.04     0.00        0.01         0.18
## 8203     0.02     0.00        0.01         0.18
## 8204     0.02     0.00        0.01         0.18
## 8205     0.01     0.00        0.01         0.10
## 8206     0.02     0.01        0.01         0.18
## 8207     0.02     0.07        0.02         0.17
## 8208     0.07     0.00        0.02         0.17
## 8209     0.04     0.00        0.02         0.17
## 8210     0.16     0.00        0.02         0.17
## 8211     0.07     0.00        0.02         0.17
## 8212     0.00     0.00        0.01         0.17
## 8213     0.07     0.00        0.02         0.17
## 8214     0.02     0.00        0.02         0.17
## 8215     0.08     0.08        0.01         0.17
## 8216     0.00     0.17        0.00         0.17
## 8217     0.05     0.00        0.03         0.17
## 8218     0.14     0.00        0.04         0.17
## 8219     0.09     0.00        0.02         0.17
## 8220     0.07     0.00        0.01         0.17
## 8221     0.10     0.00        0.04         0.17
## 8222     0.00     0.17        0.00         0.17
## 8223     0.07     0.00        0.02         0.17
## 8224     0.00     0.10        0.00         0.10
## 8225     0.02     0.06        0.03         0.17
## 8226     0.05     0.00        0.00         0.17
## 8227     0.04     0.00        0.02         0.17
## 8228     0.07     0.00        0.02         0.17
## 8229     0.03     0.00        0.00         0.17
## 8230     0.07     0.00        0.02         0.17
## 8231     0.03     0.00        0.00         0.17
## 8232     0.02     0.00        0.02         0.17
## 8233     0.04     0.00        0.03         0.17
## 8234     0.05     0.00        0.02         0.17
## 8235     0.00     0.00        0.01         0.17
## 8236     0.07     0.00        0.01         0.17
## 8237     0.02     0.06        0.01         0.17
## 8238     0.05     0.00        0.00         0.17
## 8239     0.00     0.17        0.00         0.17
## 8240     0.00     0.00        0.01         0.17
## 8241     0.03     0.00        0.00         0.17
## 8242     0.00     0.00        0.01         0.17
## 8243     0.00     0.17        0.00         0.17
## 8244     0.07     0.00        0.02         0.17
## 8245     0.07     0.01        0.03         0.17
## 8246     0.00     0.17        0.00         0.17
## 8247     0.03     0.00        0.00         0.17
## 8248     0.04     0.00        0.01         0.17
## 8249     0.00     0.16        0.01         0.17
## 8250     0.08     0.00        0.02         0.17
## 8251     0.00     0.00        0.01         0.17
## 8252     0.07     0.00        0.01         0.17
## 8253     0.00     0.00        0.01         0.17
## 8254     0.00     0.00        0.01         0.17
## 8255     0.00     0.17        0.00         0.17
## 8256     0.07     0.00        0.02         0.17
## 8257     0.03     0.00        0.02         0.17
## 8258     0.00     0.00        0.01         0.17
## 8259     0.00     0.00        0.01         0.17
## 8260     0.00     0.17        0.00         0.17
## 8261     0.03     0.00        0.00         0.17
## 8262     0.08     0.00        0.02         0.17
## 8263     0.01     0.00        0.01         0.17
## 8264     0.01     0.00        0.01         0.17
## 8265     0.03     0.00        0.00         0.17
## 8266     0.04     0.00        0.01         0.17
## 8267     0.06     0.00        0.03         0.17
## 8268     0.00     0.17        0.00         0.17
## 8269     0.07     0.00        0.02         0.17
## 8270     0.05     0.00        0.00         0.17
## 8271     0.07     0.00        0.02         0.17
## 8272     0.04     0.00        0.01         0.17
## 8273     0.07     0.00        0.02         0.17
## 8274     0.03     0.00        0.00         0.17
## 8275     0.03     0.00        0.01         0.17
## 8276     0.07     0.00        0.01         0.17
## 8277     0.00     0.17        0.00         0.17
## 8278     0.00     0.17        0.00         0.17
## 8279     0.00     0.17        0.00         0.17
## 8280     0.00     0.00        0.01         0.17
## 8281     0.04     0.04        0.03         0.17
## 8282     0.00     0.16        0.01         0.17
## 8283     0.00     0.16        0.01         0.17
## 8284     0.01     0.00        0.01         0.17
## 8285     0.04     0.00        0.01         0.17
## 8286     0.04     0.00        0.01         0.17
## 8287     0.08     0.00        0.04         0.17
## 8288     0.07     0.00        0.02         0.17
## 8289     0.07     0.00        0.02         0.17
## 8290     0.05     0.00        0.00         0.17
## 8291     0.00     0.00        0.01         0.17
## 8292     0.07     0.00        0.02         0.17
## 8293     0.07     0.00        0.02         0.17
## 8294     0.00     0.14        0.00         0.17
## 8295     0.12     0.00        0.03         0.17
## 8296     0.04     0.00        0.01         0.17
## 8297     0.07     0.00        0.02         0.17
## 8298     0.00     0.16        0.01         0.17
## 8299     0.04     0.00        0.02         0.17
## 8300     0.01     0.00        0.01         0.17
## 8301     0.07     0.04        0.01         0.17
## 8302     0.00     0.16        0.01         0.17
## 8303     0.07     0.00        0.02         0.17
## 8304     0.00     0.17        0.00         0.17
## 8305     0.00     0.17        0.00         0.17
## 8306     0.00     0.00        0.01         0.17
## 8307     0.00     0.17        0.00         0.17
## 8308     0.03     0.00        0.00         0.17
## 8309     0.05     0.00        0.00         0.17
## 8310     0.00     0.17        0.00         0.17
## 8311     0.00     0.00        0.01         0.17
## 8312     0.00     0.00        0.01         0.17
## 8313     0.07     0.00        0.03         0.17
## 8314     0.00     0.00        0.01         0.10
## 8315     0.04     0.00        0.01         0.17
## 8316     0.12     0.00        0.01         0.17
## 8317     0.02     0.00        0.02         0.17
## 8318     0.03     0.14        0.00         0.17
## 8319     0.00     0.17        0.00         0.17
## 8320     0.04     0.07        0.01         0.17
## 8321     0.00     0.00        0.01         0.17
## 8322     0.00     0.00        0.01         0.17
## 8323     0.12     0.00        0.02         0.17
## 8324     0.04     0.00        0.01         0.17
## 8325     0.15     0.00        0.02         0.17
## 8326     0.00     0.00        0.01         0.17
## 8327     0.03     0.00        0.01         0.17
## 8328     0.05     0.00        0.00         0.17
## 8329     0.07     0.00        0.02         0.17
## 8330     0.06     0.00        0.01         0.17
## 8331     0.05     0.00        0.00         0.17
## 8332     0.00     0.00        0.01         0.17
## 8333     0.00     0.00        0.01         0.17
## 8334     0.02     0.00        0.01         0.17
## 8335     0.04     0.00        0.01         0.11
## 8336     0.09     0.00        0.02         0.17
## 8337     0.00     0.17        0.00         0.17
## 8338     0.03     0.00        0.00         0.17
## 8339     0.01     0.11        0.00         0.17
## 8340     0.05     0.00        0.00         0.17
## 8341     0.04     0.00        0.01         0.17
## 8342     0.05     0.00        0.00         0.17
## 8343     0.01     0.00        0.01         0.17
## 8344     0.05     0.00        0.00         0.17
## 8345     0.03     0.06        0.02         0.17
## 8346     0.06     0.00        0.02         0.17
## 8347     0.00     0.17        0.00         0.17
## 8348     0.06     0.00        0.02         0.17
## 8349     0.00     0.17        0.00         0.17
## 8350     0.04     0.00        0.00         0.17
## 8351     0.12     0.00        0.03         0.17
## 8352     0.00     0.17        0.00         0.17
## 8353     0.02     0.12        0.01         0.17
## 8354     0.00     0.00        0.01         0.17
## 8355     0.04     0.00        0.03         0.17
## 8356     0.04     0.00        0.01         0.17
## 8357     0.00     0.00        0.01         0.17
## 8358     0.00     0.17        0.00         0.17
## 8359     0.00     0.16        0.00         0.17
## 8360     0.00     0.00        0.01         0.17
## 8361     0.04     0.06        0.01         0.17
## 8362     0.06     0.00        0.01         0.17
## 8363     0.06     0.00        0.02         0.17
## 8364     0.01     0.00        0.01         0.17
## 8365     0.06     0.00        0.02         0.17
## 8366     0.03     0.00        0.01         0.17
## 8367     0.00     0.00        0.01         0.17
## 8368     0.06     0.00        0.02         0.17
## 8369     0.04     0.00        0.00         0.17
## 8370     0.07     0.00        0.02         0.17
## 8371     0.02     0.03        0.01         0.17
## 8372     0.00     0.17        0.00         0.17
## 8373     0.06     0.00        0.02         0.17
## 8374     0.06     0.00        0.01         0.17
## 8375     0.03     0.09        0.01         0.17
## 8376     0.06     0.00        0.01         0.17
## 8377     0.00     0.11        0.00         0.11
## 8378     0.12     0.03        0.02         0.17
## 8379     0.03     0.00        0.00         0.17
## 8380     0.00     0.00        0.01         0.17
## 8381     0.05     0.00        0.01         0.17
## 8382     0.04     0.00        0.00         0.17
## 8383     0.00     0.17        0.00         0.17
## 8384     0.03     0.00        0.00         0.17
## 8385     0.00     0.16        0.01         0.17
## 8386     0.06     0.00        0.02         0.17
## 8387     0.04     0.00        0.01         0.17
## 8388     0.06     0.00        0.01         0.17
## 8389     0.06     0.00        0.01         0.17
## 8390     0.03     0.00        0.01         0.17
## 8391     0.04     0.00        0.01         0.17
## 8392     0.00     0.17        0.00         0.17
## 8393     0.06     0.00        0.01         0.17
## 8394     0.01     0.00        0.01         0.17
## 8395     0.06     0.02        0.02         0.17
## 8396     0.06     0.00        0.02         0.17
## 8397     0.02     0.12        0.00         0.17
## 8398     0.01     0.12        0.01         0.17
## 8399     0.06     0.00        0.01         0.17
## 8400     0.00     0.00        0.01         0.17
## 8401     0.00     0.17        0.00         0.17
## 8402     0.03     0.00        0.00         0.17
## 8403     0.16     0.00        0.01         0.17
## 8404     0.01     0.00        0.02         0.17
## 8405     0.00     0.17        0.00         0.17
## 8406     0.00     0.17        0.00         0.17
## 8407     0.07     0.00        0.02         0.17
## 8408     0.00     0.16        0.01         0.17
## 8409     0.06     0.00        0.02         0.17
## 8410     0.04     0.05        0.02         0.17
## 8411     0.02     0.00        0.02         0.17
## 8412     0.04     0.00        0.01         0.17
## 8413     0.01     0.05        0.01         0.17
## 8414     0.04     0.00        0.01         0.17
## 8415     0.07     0.02        0.02         0.17
## 8416     0.00     0.17        0.00         0.17
## 8417     0.02     0.04        0.00         0.17
## 8418     0.13     0.00        0.04         0.17
## 8419     0.03     0.00        0.01         0.17
## 8420     0.04     0.00        0.00         0.17
## 8421     0.04     0.00        0.00         0.17
## 8422     0.00     0.17        0.00         0.17
## 8423     0.00     0.00        0.01         0.17
## 8424     0.01     0.00        0.01         0.17
## 8425     0.00     0.17        0.00         0.17
## 8426     0.11     0.00        0.02         0.17
## 8427     0.00     0.17        0.00         0.17
## 8428     0.00     0.17        0.00         0.17
## 8429     0.07     0.00        0.01         0.17
## 8430     0.04     0.00        0.01         0.17
## 8431     0.00     0.17        0.00         0.17
## 8432     0.00     0.00        0.02         0.17
## 8433     0.01     0.00        0.01         0.17
## 8434     0.04     0.00        0.02         0.17
## 8435     0.06     0.00        0.02         0.17
## 8436     0.03     0.00        0.00         0.17
## 8437     0.04     0.00        0.01         0.17
## 8438     0.04     0.00        0.00         0.17
## 8439     0.02     0.03        0.01         0.17
## 8440     0.00     0.00        0.01         0.11
## 8441     0.06     0.00        0.02         0.17
## 8442     0.01     0.00        0.01         0.17
## 8443     0.00     0.17        0.00         0.17
## 8444     0.07     0.00        0.02         0.17
## 8445     0.00     0.17        0.00         0.17
## 8446     0.04     0.00        0.01         0.17
## 8447     0.00     0.17        0.00         0.17
## 8448     0.00     0.17        0.00         0.17
## 8449     0.00     0.08        0.02         0.17
## 8450     0.00     0.17        0.00         0.17
## 8451     0.00     0.15        0.00         0.17
## 8452     0.13     0.00        0.03         0.17
## 8453     0.02     0.02        0.01         0.17
## 8454     0.04     0.00        0.01         0.17
## 8455     0.04     0.08        0.01         0.17
## 8456     0.00     0.00        0.01         0.17
## 8457     0.01     0.00        0.02         0.17
## 8458     0.01     0.00        0.00         0.17
## 8459     0.01     0.00        0.00         0.17
## 8460     0.01     0.00        0.00         0.17
## 8461     0.00     0.16        0.00         0.17
## 8462     0.02     0.00        0.01         0.16
## 8463     0.03     0.06        0.02         0.16
## 8464     0.06     0.00        0.02         0.16
## 8465     0.00     0.16        0.00         0.16
## 8466     0.02     0.00        0.01         0.16
## 8467     0.00     0.00        0.03         0.16
## 8468     0.00     0.16        0.00         0.16
## 8469     0.06     0.00        0.02         0.16
## 8470     0.00     0.16        0.00         0.16
## 8471     0.06     0.00        0.02         0.16
## 8472     0.00     0.00        0.00         0.16
## 8473     0.04     0.00        0.00         0.16
## 8474     0.04     0.06        0.02         0.16
## 8475     0.00     0.00        0.01         0.16
## 8476     0.01     0.00        0.01         0.16
## 8477     0.06     0.00        0.01         0.16
## 8478     0.06     0.00        0.02         0.16
## 8479     0.02     0.00        0.02         0.16
## 8480     0.02     0.00        0.02         0.16
## 8481     0.08     0.00        0.02         0.16
## 8482     0.03     0.00        0.01         0.16
## 8483     0.06     0.00        0.02         0.16
## 8484     0.03     0.00        0.02         0.16
## 8485     0.00     0.03        0.01         0.16
## 8486     0.05     0.03        0.01         0.16
## 8487     0.06     0.00        0.02         0.16
## 8488     0.04     0.00        0.01         0.16
## 8489     0.05     0.03        0.02         0.16
## 8490     0.00     0.02        0.01         0.16
## 8491     0.00     0.16        0.00         0.16
## 8492     0.06     0.00        0.02         0.16
## 8493     0.14     0.00        0.02         0.16
## 8494     0.03     0.00        0.00         0.16
## 8495     0.00     0.04        0.01         0.16
## 8496     0.06     0.00        0.02         0.16
## 8497     0.00     0.15        0.01         0.16
## 8498     0.04     0.00        0.00         0.16
## 8499     0.06     0.00        0.02         0.16
## 8500     0.03     0.11        0.01         0.16
## 8501     0.04     0.00        0.00         0.16
## 8502     0.00     0.00        0.01         0.16
## 8503     0.01     0.00        0.01         0.16
## 8504     0.10     0.00        0.00         0.16
## 8505     0.04     0.00        0.01         0.16
## 8506     0.04     0.00        0.01         0.16
## 8507     0.06     0.00        0.02         0.16
## 8508     0.05     0.03        0.01         0.16
## 8509     0.00     0.00        0.01         0.16
## 8510     0.00     0.00        0.01         0.16
## 8511     0.00     0.16        0.00         0.16
## 8512     0.04     0.00        0.00         0.16
## 8513     0.00     0.16        0.00         0.16
## 8514     0.03     0.03        0.01         0.16
## 8515     0.06     0.00        0.01         0.16
## 8516     0.01     0.00        0.02         0.16
## 8517     0.04     0.00        0.00         0.16
## 8518     0.00     0.15        0.01         0.16
## 8519     0.03     0.00        0.00         0.16
## 8520     0.03     0.00        0.00         0.16
## 8521     0.00     0.16        0.00         0.16
## 8522     0.00     0.15        0.01         0.16
## 8523     0.06     0.00        0.01         0.16
## 8524     0.03     0.00        0.01         0.16
## 8525     0.02     0.00        0.02         0.16
## 8526     0.06     0.00        0.02         0.16
## 8527     0.00     0.00        0.01         0.16
## 8528     0.10     0.00        0.01         0.16
## 8529     0.04     0.03        0.02         0.16
## 8530     0.00     0.16        0.00         0.16
## 8531     0.00     0.16        0.00         0.16
## 8532     0.03     0.00        0.00         0.16
## 8533     0.03     0.00        0.01         0.16
## 8534     0.00     0.00        0.01         0.16
## 8535     0.02     0.00        0.01         0.16
## 8536     0.00     0.00        0.01         0.16
## 8537     0.03     0.00        0.01         0.16
## 8538     0.06     0.00        0.02         0.16
## 8539     0.06     0.00        0.02         0.16
## 8540     0.01     0.00        0.01         0.16
## 8541     0.00     0.00        0.01         0.16
## 8542     0.00     0.16        0.00         0.16
## 8543     0.06     0.00        0.02         0.16
## 8544     0.06     0.00        0.02         0.16
## 8545     0.02     0.00        0.02         0.16
## 8546     0.00     0.01        0.01         0.16
## 8547     0.06     0.00        0.02         0.16
## 8548     0.00     0.16        0.00         0.16
## 8549     0.00     0.00        0.01         0.16
## 8550     0.03     0.00        0.01         0.16
## 8551     0.06     0.00        0.02         0.16
## 8552     0.03     0.00        0.00         0.16
## 8553     0.00     0.16        0.00         0.16
## 8554     0.00     0.00        0.01         0.12
## 8555     0.00     0.00        0.01         0.16
## 8556     0.03     0.00        0.00         0.16
## 8557     0.02     0.00        0.01         0.16
## 8558     0.00     0.00        0.01         0.16
## 8559     0.00     0.16        0.00         0.16
## 8560     0.00     0.16        0.00         0.16
## 8561     0.06     0.00        0.02         0.16
## 8562     0.00     0.00        0.01         0.16
## 8563     0.04     0.00        0.00         0.16
## 8564     0.06     0.00        0.02         0.16
## 8565     0.00     0.16        0.00         0.16
## 8566     0.01     0.00        0.01         0.16
## 8567     0.06     0.00        0.02         0.16
## 8568     0.00     0.00        0.01         0.16
## 8569     0.03     0.00        0.00         0.16
## 8570     0.00     0.00        0.01         0.16
## 8571     0.01     0.03        0.01         0.16
## 8572     0.14     0.00        0.02         0.16
## 8573     0.07     0.00        0.01         0.16
## 8574     0.00     0.00        0.01         0.16
## 8575     0.00     0.00        0.01         0.16
## 8576     0.00     0.16        0.00         0.16
## 8577     0.00     0.00        0.01         0.16
## 8578     0.00     0.16        0.00         0.16
## 8579     0.05     0.00        0.02         0.16
## 8580     0.04     0.00        0.00         0.16
## 8581     0.00     0.15        0.01         0.16
## 8582     0.03     0.00        0.00         0.16
## 8583     0.03     0.00        0.00         0.16
## 8584     0.03     0.00        0.00         0.16
## 8585     0.00     0.12        0.04         0.16
## 8586     0.03     0.00        0.00         0.16
## 8587     0.03     0.00        0.00         0.16
## 8588     0.03     0.00        0.00         0.16
## 8589     0.03     0.00        0.00         0.16
## 8590     0.03     0.00        0.00         0.16
## 8591     0.03     0.00        0.00         0.16
## 8592     0.03     0.00        0.00         0.16
## 8593     0.00     0.12        0.04         0.16
## 8594     0.00     0.03        0.01         0.16
## 8595     0.15     0.00        0.01         0.16
## 8596     0.02     0.08        0.01         0.16
## 8597     0.00     0.16        0.00         0.16
## 8598     0.03     0.03        0.02         0.16
## 8599     0.15     0.00        0.01         0.16
## 8600     0.00     0.16        0.00         0.16
## 8601     0.06     0.00        0.02         0.16
## 8602     0.04     0.00        0.01         0.16
## 8603     0.00     0.16        0.00         0.16
## 8604     0.03     0.00        0.01         0.16
## 8605     0.01     0.00        0.01         0.16
## 8606     0.00     0.00        0.01         0.16
## 8607     0.00     0.00        0.01         0.16
## 8608     0.06     0.00        0.03         0.16
## 8609     0.01     0.00        0.01         0.16
## 8610     0.01     0.11        0.00         0.16
## 8611     0.10     0.02        0.04         0.16
## 8612     0.00     0.00        0.01         0.16
## 8613     0.05     0.02        0.03         0.16
## 8614     0.07     0.00        0.01         0.16
## 8615     0.06     0.00        0.02         0.16
## 8616     0.00     0.00        0.00         0.16
## 8617     0.07     0.00        0.02         0.16
## 8618     0.00     0.16        0.00         0.16
## 8619     0.05     0.00        0.01         0.16
## 8620     0.00     0.00        0.01         0.16
## 8621     0.10     0.00        0.02         0.12
## 8622     0.02     0.00        0.01         0.16
## 8623     0.01     0.00        0.01         0.16
## 8624     0.06     0.00        0.02         0.16
## 8625     0.00     0.00        0.01         0.16
## 8626     0.06     0.00        0.01         0.16
## 8627     0.00     0.00        0.01         0.16
## 8628     0.05     0.00        0.01         0.16
## 8629     0.06     0.00        0.01         0.16
## 8630     0.00     0.00        0.01         0.16
## 8631     0.02     0.00        0.01         0.16
## 8632     0.14     0.00        0.02         0.16
## 8633     0.00     0.09        0.01         0.16
## 8634     0.00     0.15        0.01         0.16
## 8635     0.00     0.16        0.00         0.16
## 8636     0.03     0.00        0.01         0.16
## 8637     0.02     0.02        0.01         0.16
## 8638     0.09     0.00        0.04         0.16
## 8639     0.03     0.04        0.00         0.16
## 8640     0.00     0.16        0.00         0.16
## 8641     0.03     0.00        0.02         0.16
## 8642     0.04     0.00        0.00         0.16
## 8643     0.00     0.15        0.01         0.16
## 8644     0.01     0.00        0.01         0.16
## 8645     0.00     0.15        0.00         0.16
## 8646     0.01     0.00        0.01         0.16
## 8647     0.07     0.00        0.01         0.16
## 8648     0.00     0.00        0.01         0.16
## 8649     0.04     0.00        0.01         0.16
## 8650     0.00     0.00        0.01         0.16
## 8651     0.00     0.16        0.00         0.16
## 8652     0.00     0.00        0.01         0.16
## 8653     0.13     0.00        0.03         0.16
## 8654     0.00     0.00        0.01         0.16
## 8655     0.09     0.00        0.03         0.16
## 8656     0.04     0.00        0.00         0.16
## 8657     0.03     0.08        0.01         0.16
## 8658     0.00     0.16        0.00         0.16
## 8659     0.00     0.15        0.01         0.16
## 8660     0.00     0.00        0.01         0.16
## 8661     0.06     0.00        0.01         0.16
## 8662     0.04     0.00        0.01         0.16
## 8663     0.01     0.13        0.01         0.16
## 8664     0.06     0.00        0.02         0.16
## 8665     0.00     0.01        0.01         0.16
## 8666     0.03     0.00        0.02         0.16
## 8667     0.00     0.00        0.01         0.16
## 8668     0.00     0.15        0.01         0.16
## 8669     0.00     0.16        0.00         0.16
## 8670     0.03     0.00        0.00         0.16
## 8671     0.01     0.00        0.01         0.16
## 8672     0.04     0.00        0.01         0.16
## 8673     0.00     0.00        0.01         0.16
## 8674     0.00     0.04        0.02         0.16
## 8675     0.00     0.00        0.01         0.16
## 8676     0.01     0.00        0.01         0.16
## 8677     0.00     0.12        0.00         0.16
## 8678     0.13     0.00        0.03         0.16
## 8679     0.00     0.16        0.00         0.16
## 8680     0.04     0.00        0.01         0.16
## 8681     0.00     0.00        0.01         0.16
## 8682     0.02     0.00        0.01         0.16
## 8683     0.04     0.00        0.00         0.16
## 8684     0.03     0.00        0.01         0.16
## 8685     0.06     0.00        0.01         0.16
## 8686     0.02     0.03        0.01         0.16
## 8687     0.03     0.00        0.00         0.16
## 8688     0.05     0.04        0.02         0.16
## 8689     0.03     0.00        0.01         0.16
## 8690     0.00     0.16        0.00         0.16
## 8691     0.00     0.00        0.01         0.16
## 8692     0.06     0.00        0.02         0.16
## 8693     0.06     0.00        0.01         0.16
## 8694     0.00     0.16        0.00         0.16
## 8695     0.01     0.00        0.01         0.16
## 8696     0.00     0.00        0.01         0.16
## 8697     0.00     0.16        0.00         0.16
## 8698     0.06     0.00        0.01         0.16
## 8699     0.10     0.00        0.03         0.16
## 8700     0.06     0.00        0.02         0.16
## 8701     0.00     0.16        0.00         0.16
## 8702     0.00     0.00        0.01         0.16
## 8703     0.00     0.00        0.01         0.16
## 8704     0.06     0.00        0.02         0.16
## 8705     0.00     0.16        0.00         0.16
## 8706     0.00     0.00        0.01         0.16
## 8707     0.02     0.06        0.01         0.16
## 8708     0.00     0.03        0.01         0.12
## 8709     0.04     0.00        0.00         0.16
## 8710     0.01     0.00        0.01         0.16
## 8711     0.07     0.00        0.02         0.16
## 8712     0.06     0.00        0.01         0.16
## 8713     0.06     0.00        0.01         0.16
## 8714     0.09     0.00        0.02         0.16
## 8715     0.01     0.00        0.01         0.16
## 8716     0.04     0.00        0.00         0.16
## 8717     0.06     0.00        0.01         0.15
## 8718     0.01     0.12        0.01         0.15
## 8719     0.06     0.00        0.01         0.15
## 8720     0.02     0.00        0.01         0.15
## 8721     0.00     0.00        0.01         0.15
## 8722     0.04     0.00        0.00         0.15
## 8723     0.00     0.14        0.01         0.15
## 8724     0.02     0.01        0.01         0.15
## 8725     0.06     0.00        0.02         0.15
## 8726     0.08     0.00        0.03         0.15
## 8727     0.04     0.00        0.01         0.15
## 8728     0.06     0.00        0.02         0.15
## 8729     0.02     0.00        0.01         0.15
## 8730     0.07     0.00        0.02         0.15
## 8731     0.05     0.00        0.02         0.15
## 8732     0.00     0.00        0.01         0.15
## 8733     0.06     0.00        0.02         0.15
## 8734     0.01     0.00        0.01         0.15
## 8735     0.00     0.00        0.01         0.15
## 8736     0.01     0.01        0.01         0.15
## 8737     0.03     0.00        0.00         0.15
## 8738     0.06     0.00        0.02         0.15
## 8739     0.00     0.00        0.01         0.15
## 8740     0.00     0.15        0.00         0.15
## 8741     0.06     0.00        0.02         0.15
## 8742     0.03     0.00        0.01         0.15
## 8743     0.03     0.00        0.01         0.15
## 8744     0.01     0.00        0.01         0.15
## 8745     0.06     0.00        0.03         0.15
## 8746     0.03     0.00        0.00         0.15
## 8747     0.13     0.00        0.03         0.15
## 8748     0.02     0.00        0.01         0.15
## 8749     0.03     0.00        0.00         0.15
## 8750     0.03     0.00        0.00         0.15
## 8751     0.03     0.00        0.00         0.15
## 8752     0.01     0.00        0.02         0.15
## 8753     0.14     0.00        0.02         0.15
## 8754     0.06     0.01        0.01         0.15
## 8755     0.06     0.00        0.02         0.15
## 8756     0.01     0.00        0.01         0.15
## 8757     0.06     0.00        0.01         0.15
## 8758     0.01     0.00        0.00         0.15
## 8759     0.01     0.00        0.00         0.15
## 8760     0.00     0.15        0.00         0.15
## 8761     0.00     0.12        0.00         0.12
## 8762     0.00     0.15        0.00         0.15
## 8763     0.09     0.00        0.02         0.15
## 8764     0.03     0.00        0.01         0.15
## 8765     0.02     0.00        0.01         0.15
## 8766     0.06     0.02        0.02         0.15
## 8767     0.01     0.00        0.01         0.15
## 8768     0.03     0.00        0.01         0.15
## 8769     0.07     0.00        0.01         0.15
## 8770     0.03     0.00        0.01         0.15
## 8771     0.04     0.00        0.00         0.15
## 8772     0.00     0.00        0.01         0.15
## 8773     0.03     0.00        0.00         0.15
## 8774     0.06     0.00        0.01         0.15
## 8775     0.00     0.04        0.01         0.15
## 8776     0.01     0.02        0.01         0.15
## 8777     0.06     0.00        0.02         0.15
## 8778     0.06     0.00        0.02         0.15
## 8779     0.06     0.00        0.02         0.15
## 8780     0.01     0.05        0.01         0.15
## 8781     0.00     0.00        0.01         0.15
## 8782     0.03     0.00        0.00         0.15
## 8783     0.01     0.00        0.01         0.15
## 8784     0.00     0.15        0.00         0.15
## 8785     0.01     0.00        0.01         0.15
## 8786     0.00     0.15        0.00         0.15
## 8787     0.03     0.00        0.02         0.15
## 8788     0.00     0.00        0.01         0.15
## 8789     0.02     0.00        0.01         0.15
## 8790     0.00     0.15        0.00         0.15
## 8791     0.02     0.06        0.01         0.15
## 8792     0.03     0.00        0.00         0.15
## 8793     0.01     0.00        0.01         0.15
## 8794     0.06     0.00        0.02         0.15
## 8795     0.02     0.00        0.08         0.15
## 8796     0.14     0.00        0.01         0.15
## 8797     0.00     0.00        0.01         0.15
## 8798     0.04     0.05        0.01         0.15
## 8799     0.04     0.00        0.00         0.15
## 8800     0.00     0.15        0.00         0.15
## 8801     0.00     0.00        0.01         0.15
## 8802     0.02     0.04        0.01         0.15
## 8803     0.06     0.00        0.01         0.15
## 8804     0.00     0.00        0.01         0.15
## 8805     0.06     0.00        0.02         0.15
## 8806     0.02     0.00        0.02         0.15
## 8807     0.01     0.00        0.01         0.15
## 8808     0.03     0.00        0.01         0.15
## 8809     0.00     0.15        0.00         0.15
## 8810     0.00     0.15        0.00         0.15
## 8811     0.00     0.15        0.00         0.15
## 8812     0.00     0.15        0.00         0.15
## 8813     0.04     0.00        0.00         0.15
## 8814     0.00     0.00        0.01         0.15
## 8815     0.03     0.00        0.00         0.15
## 8816     0.03     0.00        0.01         0.15
## 8817     0.03     0.00        0.01         0.15
## 8818     0.00     0.14        0.01         0.15
## 8819     0.03     0.00        0.00         0.15
## 8820     0.00     0.00        0.01         0.15
## 8821     0.04     0.00        0.01         0.15
## 8822     0.02     0.00        0.02         0.15
## 8823     0.08     0.00        0.02         0.15
## 8824     0.05     0.00        0.01         0.15
## 8825     0.03     0.00        0.00         0.15
## 8826     0.00     0.00        0.01         0.15
## 8827     0.06     0.00        0.01         0.15
## 8828     0.00     0.00        0.01         0.15
## 8829     0.03     0.00        0.01         0.15
## 8830     0.00     0.01        0.01         0.15
## 8831     0.00     0.15        0.00         0.15
## 8832     0.03     0.00        0.01         0.15
## 8833     0.06     0.00        0.02         0.15
## 8834     0.00     0.04        0.02         0.15
## 8835     0.00     0.15        0.00         0.15
## 8836     0.06     0.00        0.02         0.15
## 8837     0.04     0.05        0.01         0.15
## 8838     0.01     0.00        0.01         0.15
## 8839     0.00     0.00        0.01         0.15
## 8840     0.06     0.00        0.02         0.15
## 8841     0.06     0.00        0.02         0.15
## 8842     0.00     0.00        0.01         0.15
## 8843     0.06     0.00        0.02         0.15
## 8844     0.09     0.04        0.02         0.15
## 8845     0.13     0.00        0.02         0.15
## 8846     0.07     0.03        0.01         0.15
## 8847     0.00     0.15        0.00         0.15
## 8848     0.03     0.00        0.01         0.15
## 8849     0.04     0.00        0.00         0.15
## 8850     0.06     0.00        0.02         0.15
## 8851     0.00     0.13        0.01         0.15
## 8852     0.03     0.00        0.00         0.15
## 8853     0.00     0.15        0.00         0.15
## 8854     0.04     0.00        0.03         0.15
## 8855     0.00     0.15        0.00         0.15
## 8856     0.04     0.09        0.02         0.15
## 8857     0.00     0.10        0.01         0.15
## 8858     0.04     0.00        0.00         0.15
## 8859     0.06     0.00        0.02         0.15
## 8860     0.06     0.00        0.02         0.15
## 8861     0.05     0.00        0.02         0.15
## 8862     0.00     0.15        0.00         0.15
## 8863     0.00     0.09        0.06         0.15
## 8864     0.03     0.00        0.00         0.15
## 8865     0.03     0.00        0.00         0.15
## 8866     0.00     0.15        0.00         0.15
## 8867     0.03     0.00        0.00         0.15
## 8868     0.00     0.00        0.01         0.15
## 8869     0.00     0.00        0.01         0.15
## 8870     0.06     0.00        0.01         0.15
## 8871     0.03     0.00        0.01         0.15
## 8872     0.03     0.00        0.01         0.15
## 8873     0.03     0.08        0.02         0.15
## 8874     0.01     0.00        0.01         0.15
## 8875     0.08     0.00        0.02         0.15
## 8876     0.00     0.15        0.00         0.15
## 8877     0.00     0.00        0.01         0.15
## 8878     0.03     0.00        0.01         0.15
## 8879     0.00     0.00        0.01         0.15
## 8880     0.02     0.00        0.01         0.15
## 8881     0.03     0.00        0.01         0.15
## 8882     0.00     0.15        0.00         0.15
## 8883     0.06     0.00        0.02         0.15
## 8884     0.03     0.00        0.00         0.15
## 8885     0.00     0.00        0.01         0.15
## 8886     0.01     0.00        0.01         0.15
## 8887     0.00     0.00        0.01         0.15
## 8888     0.06     0.00        0.01         0.15
## 8889     0.04     0.00        0.00         0.15
## 8890     0.03     0.00        0.01         0.15
## 8891     0.00     0.14        0.01         0.15
## 8892     0.00     0.00        0.01         0.15
## 8893     0.04     0.00        0.01         0.15
## 8894     0.00     0.15        0.00         0.15
## 8895     0.06     0.00        0.02         0.15
## 8896     0.03     0.00        0.00         0.15
## 8897     0.04     0.00        0.00         0.15
## 8898     0.01     0.07        0.01         0.15
## 8899     0.03     0.00        0.00         0.15
## 8900     0.00     0.12        0.00         0.12
## 8901     0.06     0.00        0.01         0.15
## 8902     0.00     0.00        0.01         0.15
## 8903     0.04     0.00        0.00         0.15
## 8904     0.00     0.00        0.01         0.15
## 8905     0.00     0.15        0.00         0.15
## 8906     0.00     0.00        0.01         0.15
## 8907     0.05     0.04        0.02         0.15
## 8908     0.00     0.00        0.01         0.15
## 8909     0.00     0.15        0.00         0.15
## 8910     0.00     0.15        0.00         0.15
## 8911     0.00     0.15        0.00         0.15
## 8912     0.00     0.14        0.01         0.15
## 8913     0.00     0.00        0.01         0.15
## 8914     0.00     0.15        0.00         0.15
## 8915     0.01     0.00        0.01         0.15
## 8916     0.00     0.00        0.01         0.15
## 8917     0.00     0.15        0.00         0.15
## 8918     0.06     0.00        0.02         0.15
## 8919     0.03     0.00        0.01         0.15
## 8920     0.06     0.00        0.02         0.15
## 8921     0.03     0.00        0.00         0.15
## 8922     0.03     0.00        0.00         0.15
## 8923     0.00     0.15        0.00         0.15
## 8924     0.00     0.00        0.01         0.15
## 8925     0.04     0.00        0.01         0.15
## 8926     0.00     0.01        0.03         0.15
## 8927     0.02     0.05        0.02         0.15
## 8928     0.03     0.00        0.01         0.15
## 8929     0.11     0.00        0.03         0.15
## 8930     0.02     0.00        0.00         0.12
## 8931     0.01     0.00        0.01         0.15
## 8932     0.06     0.00        0.01         0.15
## 8933     0.00     0.01        0.01         0.15
## 8934     0.00     0.00        0.01         0.15
## 8935     0.02     0.00        0.01         0.15
## 8936     0.03     0.00        0.00         0.15
## 8937     0.06     0.00        0.01         0.15
## 8938     0.00     0.15        0.00         0.15
## 8939     0.08     0.01        0.03         0.15
## 8940     0.06     0.00        0.01         0.15
## 8941     0.00     0.14        0.01         0.15
## 8942     0.06     0.00        0.01         0.15
## 8943     0.03     0.00        0.01         0.15
## 8944     0.00     0.15        0.00         0.15
## 8945     0.00     0.00        0.00         0.15
## 8946     0.00     0.03        0.03         0.15
## 8947     0.00     0.15        0.00         0.15
## 8948     0.06     0.00        0.01         0.15
## 8949     0.03     0.00        0.01         0.15
## 8950     0.00     0.15        0.00         0.15
## 8951     0.00     0.14        0.00         0.15
## 8952     0.08     0.00        0.01         0.15
## 8953     0.04     0.00        0.01         0.15
## 8954     0.04     0.00        0.00         0.15
## 8955     0.08     0.00        0.01         0.15
## 8956     0.06     0.00        0.01         0.15
## 8957     0.00     0.00        0.01         0.15
## 8958     0.03     0.00        0.01         0.15
## 8959     0.00     0.14        0.01         0.15
## 8960     0.00     0.15        0.00         0.15
## 8961     0.13     0.00        0.01         0.15
## 8962     0.00     0.00        0.01         0.15
## 8963     0.00     0.15        0.00         0.15
## 8964     0.04     0.00        0.01         0.15
## 8965     0.02     0.00        0.01         0.15
## 8966     0.00     0.00        0.01         0.15
## 8967     0.06     0.00        0.01         0.15
## 8968     0.04     0.00        0.00         0.15
## 8969     0.03     0.00        0.00         0.15
## 8970     0.06     0.00        0.01         0.15
## 8971     0.02     0.00        0.01         0.15
## 8972     0.03     0.00        0.01         0.15
## 8973     0.00     0.00        0.01         0.15
## 8974     0.00     0.15        0.00         0.15
## 8975     0.06     0.00        0.02         0.15
## 8976     0.00     0.15        0.00         0.15
## 8977     0.00     0.00        0.01         0.15
## 8978     0.06     0.00        0.02         0.15
## 8979     0.06     0.00        0.01         0.15
## 8980     0.00     0.00        0.01         0.15
## 8981     0.00     0.15        0.00         0.15
## 8982     0.04     0.00        0.00         0.15
## 8983     0.04     0.00        0.00         0.15
## 8984     0.00     0.00        0.01         0.15
## 8985     0.00     0.15        0.00         0.15
## 8986     0.00     0.00        0.01         0.15
## 8987     0.03     0.00        0.01         0.15
## 8988     0.00     0.14        0.01         0.15
## 8989     0.03     0.05        0.02         0.15
## 8990     0.13     0.00        0.02         0.15
## 8991     0.04     0.00        0.00         0.15
## 8992     0.00     0.01        0.01         0.15
## 8993     0.03     0.00        0.00         0.15
## 8994     0.00     0.14        0.00         0.14
## 8995     0.03     0.00        0.01         0.14
## 8996     0.00     0.04        0.01         0.14
## 8997     0.06     0.00        0.02         0.14
## 8998     0.01     0.00        0.02         0.14
## 8999     0.06     0.00        0.02         0.14
## 9000     0.06     0.00        0.02         0.14
## 9001     0.00     0.13        0.00         0.14
## 9002     0.03     0.07        0.02         0.14
## 9003     0.00     0.14        0.00         0.14
## 9004     0.03     0.00        0.01         0.14
## 9005     0.00     0.14        0.00         0.14
## 9006     0.00     0.00        0.01         0.14
## 9007     0.05     0.00        0.01         0.14
## 9008     0.00     0.14        0.00         0.14
## 9009     0.03     0.00        0.01         0.14
## 9010     0.03     0.02        0.03         0.14
## 9011     0.05     0.00        0.01         0.14
## 9012     0.06     0.00        0.02         0.14
## 9013     0.06     0.00        0.02         0.14
## 9014     0.00     0.14        0.00         0.14
## 9015     0.00     0.14        0.00         0.14
## 9016     0.04     0.00        0.00         0.14
## 9017     0.06     0.00        0.02         0.14
## 9018     0.05     0.00        0.01         0.14
## 9019     0.05     0.00        0.01         0.14
## 9020     0.00     0.00        0.01         0.14
## 9021     0.00     0.00        0.01         0.14
## 9022     0.02     0.00        0.01         0.14
## 9023     0.00     0.14        0.00         0.14
## 9024     0.06     0.00        0.02         0.14
## 9025     0.00     0.00        0.01         0.14
## 9026     0.03     0.00        0.00         0.14
## 9027     0.00     0.00        0.03         0.14
## 9028     0.05     0.00        0.02         0.14
## 9029     0.00     0.14        0.00         0.14
## 9030     0.00     0.14        0.00         0.14
## 9031     0.03     0.00        0.01         0.14
## 9032     0.05     0.00        0.01         0.14
## 9033     0.05     0.00        0.01         0.14
## 9034     0.04     0.00        0.00         0.14
## 9035     0.02     0.00        0.02         0.14
## 9036     0.12     0.00        0.02         0.14
## 9037     0.00     0.00        0.01         0.14
## 9038     0.11     0.00        0.03         0.14
## 9039     0.05     0.00        0.01         0.14
## 9040     0.04     0.00        0.01         0.14
## 9041     0.00     0.00        0.01         0.14
## 9042     0.05     0.00        0.02         0.14
## 9043     0.01     0.00        0.01         0.14
## 9044     0.05     0.00        0.02         0.14
## 9045     0.05     0.00        0.02         0.14
## 9046     0.03     0.01        0.01         0.14
## 9047     0.12     0.00        0.03         0.14
## 9048     0.05     0.00        0.01         0.14
## 9049     0.00     0.14        0.00         0.14
## 9050     0.02     0.00        0.01         0.14
## 9051     0.00     0.14        0.00         0.14
## 9052     0.04     0.00        0.00         0.14
## 9053     0.00     0.14        0.00         0.14
## 9054     0.05     0.00        0.02         0.14
## 9055     0.00     0.00        0.01         0.14
## 9056     0.10     0.00        0.02         0.14
## 9057     0.08     0.00        0.02         0.14
## 9058     0.00     0.13        0.01         0.14
## 9059     0.00     0.13        0.01         0.14
## 9060     0.00     0.00        0.01         0.14
## 9061     0.03     0.00        0.00         0.14
## 9062     0.03     0.01        0.01         0.14
## 9063     0.11     0.00        0.03         0.14
## 9064     0.00     0.00        0.01         0.14
## 9065     0.00     0.06        0.01         0.14
## 9066     0.00     0.04        0.01         0.14
## 9067     0.10     0.00        0.03         0.14
## 9068     0.00     0.14        0.00         0.14
## 9069     0.05     0.00        0.02         0.14
## 9070     0.01     0.00        0.01         0.14
## 9071     0.00     0.14        0.00         0.14
## 9072     0.00     0.14        0.00         0.14
## 9073     0.05     0.00        0.02         0.14
## 9074     0.00     0.00        0.01         0.14
## 9075     0.00     0.14        0.00         0.14
## 9076     0.03     0.00        0.01         0.14
## 9077     0.10     0.00        0.02         0.14
## 9078     0.03     0.00        0.01         0.14
## 9079     0.03     0.00        0.01         0.14
## 9080     0.00     0.08        0.01         0.14
## 9081     0.03     0.00        0.01         0.14
## 9082     0.03     0.00        0.00         0.12
## 9083     0.00     0.11        0.00         0.14
## 9084     0.00     0.00        0.01         0.14
## 9085     0.00     0.00        0.01         0.14
## 9086     0.04     0.00        0.00         0.14
## 9087     0.00     0.14        0.00         0.14
## 9088     0.03     0.03        0.02         0.14
## 9089     0.05     0.00        0.01         0.14
## 9090     0.05     0.00        0.02         0.14
##  [ reached 'max' / getOption("max.print") -- omitted 7508 rows ]

Showing consoles global sales data

dConSales <- read.csv('~/Documents/Data Analyst/Videogames/VG-Chartz/ConsolesGlobalSales_2024_02_19.csv')
unique(dConSales)
##    Position                                   Platform NA_Sales EU_Sales
## 1         1                        PlayStation 2 (PS2)    53.65    55.28
## 2         2                           Nintendo DS (DS)    57.92    51.84
## 3         3                       Nintendo Switch (NS)    48.72    35.45
## 4         4                              Game Boy (GB)    43.18    40.05
## 5         5                        PlayStation 4 (PS4)    38.11    45.85
## 6         6                          PlayStation (PSX)    40.78    31.09
## 7         7                         Nintendo Wii (Wii)    45.51    33.12
## 8         8                        PlayStation 3 (PS3)    29.80    30.87
## 9         9                            Xbox 360 (X360)    46.14    25.08
## 10       10                 PlayStation Portable (PSP)    21.62    25.31
## 11       11                     Game Boy Advance (GBA)    40.39    21.31
## 12       12                         Nintendo 3DS (3DS)    25.47    20.45
## 13       13        Nintendo Entertainment System (NES)    33.49     8.30
## 14       14                            Xbox One (XOne)    32.97    14.86
## 15       15                        PlayStation 5 (PS5)    20.56    17.90
## 16       16 Super Nintendo Entertainment System (SNES)    22.88     8.15
## 17       17                         Sega Genesis (GEN)    18.50     8.39
## 18       18                          Nintendo 64 (N64)    20.11     6.35
## 19       19                          Atari 2600 (2600)    23.54     3.35
## 20       20                       Xbox Series X/S (XS)    14.90     7.45
## 21       21                                  Xbox (XB)    15.77     7.17
## 22       22                              GameCube (GC)    12.55     4.44
## 23       23                    Sega Master System (MS)     2.00     6.95
## 24       24                     PlayStation Vita (PSV)     2.70     3.94
## 25       25                      Nintendo Wii U (WiiU)     6.15     3.27
## 26       26                              GameGear (GG)     5.40     3.23
## 27       27                          Sega Saturn (SAT)     1.83     1.10
## 28       28                             Dreamcast (DC)     3.90     1.91
##    JP_Sales Other_Sales Global_Sales
## 1     23.18       26.59       158.70
## 2     32.99       11.28       154.02
## 3     32.12       21.10       137.40
## 4     32.47        2.99       118.69
## 5      9.67       23.53       117.15
## 6     21.59        9.04       102.49
## 7     12.77       10.23       101.63
## 8     10.47       16.27        87.40
## 9      1.66       12.85        85.73
## 10    20.02       15.57        82.52
## 11    16.96        2.85        81.51
## 12    24.67        5.35        75.94
## 13    19.35        0.77        61.91
## 14     0.12       10.02        57.96
## 15     5.19       10.20        53.85
## 16    17.17        0.90        49.10
## 17     3.58        3.59        34.06
## 18     5.54        0.93        32.93
## 19     2.36        0.75        30.00
## 20     0.55        4.47        27.37
## 21     0.47        1.24        24.65
## 22     4.04        0.71        21.74
## 23     2.52        9.37        20.84
## 24     5.73        3.44        15.82
## 25     3.33        0.82        13.56
## 26     1.78        0.21        10.62
## 27     5.80        0.53         9.26
## 28     2.25        1.07         9.13

Searching duplicate data

After to showing sales activity, I inspected and complete missing data on the genre and year of video games and consoles from excel and check if exists duplicate data

Videogames sales data

dVgSales %>% 
  get_dupes(Name)
##                                                                               Name
## 1                                                      Need for Speed: Most Wanted
## 2                                                      Need for Speed: Most Wanted
## 3                                                      Need for Speed: Most Wanted
## 4                                                      Need for Speed: Most Wanted
## 5                                                      Need for Speed: Most Wanted
## 6                                                      Need for Speed: Most Wanted
## 7                                                      Need for Speed: Most Wanted
## 8                                                      Need for Speed: Most Wanted
## 9                                                      Need for Speed: Most Wanted
## 10                                                     Need for Speed: Most Wanted
## 11                                                     Need for Speed: Most Wanted
## 12                                                     Need for Speed: Most Wanted
## 13                                                                         FIFA 14
## 14                                                                         FIFA 14
## 15                                                                         FIFA 14
## 16                                                                         FIFA 14
## 17                                                                         FIFA 14
## 18                                                                         FIFA 14
## 19                                                                         FIFA 14
## 20                                                                         FIFA 14
## 21                                                                         FIFA 14
## 22                                                        LEGO Marvel Super Heroes
## 23                                                        LEGO Marvel Super Heroes
## 24                                                        LEGO Marvel Super Heroes
## 25                                                        LEGO Marvel Super Heroes
## 26                                                        LEGO Marvel Super Heroes
## 27                                                        LEGO Marvel Super Heroes
## 28                                                        LEGO Marvel Super Heroes
## 29                                                        LEGO Marvel Super Heroes
## 30                                                        LEGO Marvel Super Heroes
## 31                                                                   Madden NFL 07
## 32                                                                   Madden NFL 07
## 33                                                                   Madden NFL 07
## 34                                                                   Madden NFL 07
## 35                                                                   Madden NFL 07
## 36                                                                   Madden NFL 07
## 37                                                                   Madden NFL 07
## 38                                                                   Madden NFL 07
## 39                                                                   Madden NFL 07
## 40                                                                     Ratatouille
## 41                                                                     Ratatouille
## 42                                                                     Ratatouille
## 43                                                                     Ratatouille
## 44                                                                     Ratatouille
## 45                                                                     Ratatouille
## 46                                                                     Ratatouille
## 47                                                                     Ratatouille
## 48                                                                     Ratatouille
## 49                                                           Angry Birds Star Wars
## 50                                                           Angry Birds Star Wars
## 51                                                           Angry Birds Star Wars
## 52                                                           Angry Birds Star Wars
## 53                                                           Angry Birds Star Wars
## 54                                                           Angry Birds Star Wars
## 55                                                           Angry Birds Star Wars
## 56                                                           Angry Birds Star Wars
## 57                                                                            Cars
## 58                                                                            Cars
## 59                                                                            Cars
## 60                                                                            Cars
## 61                                                                            Cars
## 62                                                                            Cars
## 63                                                                            Cars
## 64                                                                            Cars
## 65                                                                         FIFA 15
## 66                                                                         FIFA 15
## 67                                                                         FIFA 15
## 68                                                                         FIFA 15
## 69                                                                         FIFA 15
## 70                                                                         FIFA 15
## 71                                                                         FIFA 15
## 72                                                                         FIFA 15
## 73                                                                  FIFA Soccer 13
## 74                                                                  FIFA Soccer 13
## 75                                                                  FIFA Soccer 13
## 76                                                                  FIFA Soccer 13
## 77                                                                  FIFA Soccer 13
## 78                                                                  FIFA Soccer 13
## 79                                                                  FIFA Soccer 13
## 80                                                                  FIFA Soccer 13
## 81                                                    LEGO Harry Potter: Years 5-7
## 82                                                    LEGO Harry Potter: Years 5-7
## 83                                                    LEGO Harry Potter: Years 5-7
## 84                                                    LEGO Harry Potter: Years 5-7
## 85                                                    LEGO Harry Potter: Years 5-7
## 86                                                    LEGO Harry Potter: Years 5-7
## 87                                                    LEGO Harry Potter: Years 5-7
## 88                                                    LEGO Harry Potter: Years 5-7
## 89                                                             LEGO Jurassic World
## 90                                                             LEGO Jurassic World
## 91                                                             LEGO Jurassic World
## 92                                                             LEGO Jurassic World
## 93                                                             LEGO Jurassic World
## 94                                                             LEGO Jurassic World
## 95                                                             LEGO Jurassic World
## 96                                                             LEGO Jurassic World
## 97                                         LEGO Star Wars II: The Original Trilogy
## 98                                         LEGO Star Wars II: The Original Trilogy
## 99                                         LEGO Star Wars II: The Original Trilogy
## 100                                        LEGO Star Wars II: The Original Trilogy
## 101                                        LEGO Star Wars II: The Original Trilogy
## 102                                        LEGO Star Wars II: The Original Trilogy
## 103                                        LEGO Star Wars II: The Original Trilogy
## 104                                        LEGO Star Wars II: The Original Trilogy
## 105                                                                LEGO The Hobbit
## 106                                                                LEGO The Hobbit
## 107                                                                LEGO The Hobbit
## 108                                                                LEGO The Hobbit
## 109                                                                LEGO The Hobbit
## 110                                                                LEGO The Hobbit
## 111                                                                LEGO The Hobbit
## 112                                                                LEGO The Hobbit
## 113                                                   Lego Batman 3: Beyond Gotham
## 114                                                   Lego Batman 3: Beyond Gotham
## 115                                                   Lego Batman 3: Beyond Gotham
## 116                                                   Lego Batman 3: Beyond Gotham
## 117                                                   Lego Batman 3: Beyond Gotham
## 118                                                   Lego Batman 3: Beyond Gotham
## 119                                                   Lego Batman 3: Beyond Gotham
## 120                                                   Lego Batman 3: Beyond Gotham
## 121                                                                  Madden NFL 08
## 122                                                                  Madden NFL 08
## 123                                                                  Madden NFL 08
## 124                                                                  Madden NFL 08
## 125                                                                  Madden NFL 08
## 126                                                                  Madden NFL 08
## 127                                                                  Madden NFL 08
## 128                                                                  Madden NFL 08
## 129                                                                       Monopoly
## 130                                                                       Monopoly
## 131                                                                       Monopoly
## 132                                                                       Monopoly
## 133                                                                       Monopoly
## 134                                                                       Monopoly
## 135                                                                       Monopoly
## 136                                                                       Monopoly
## 137                                                                       Terraria
## 138                                                                       Terraria
## 139                                                                       Terraria
## 140                                                                       Terraria
## 141                                                                       Terraria
## 142                                                                       Terraria
## 143                                                                       Terraria
## 144                                                                       Terraria
## 145                                                       The LEGO Movie Videogame
## 146                                                       The LEGO Movie Videogame
## 147                                                       The LEGO Movie Videogame
## 148                                                       The LEGO Movie Videogame
## 149                                                       The LEGO Movie Videogame
## 150                                                       The LEGO Movie Videogame
## 151                                                       The LEGO Movie Videogame
## 152                                                       The LEGO Movie Videogame
## 153                                                                        FIFA 12
## 154                                                                        FIFA 12
## 155                                                                        FIFA 12
## 156                                                                        FIFA 12
## 157                                                                        FIFA 12
## 158                                                                        FIFA 12
## 159                                                                        FIFA 12
## 160                                                                 FIFA Soccer 08
## 161                                                                 FIFA Soccer 08
## 162                                                                 FIFA Soccer 08
## 163                                                                 FIFA Soccer 08
## 164                                                                 FIFA Soccer 08
## 165                                                                 FIFA Soccer 08
## 166                                                                 FIFA Soccer 08
## 167                                                                 FIFA Soccer 10
## 168                                                                 FIFA Soccer 10
## 169                                                                 FIFA Soccer 10
## 170                                                                 FIFA Soccer 10
## 171                                                                 FIFA Soccer 10
## 172                                                                 FIFA Soccer 10
## 173                                                                 FIFA Soccer 10
## 174                                                                 FIFA Soccer 11
## 175                                                                 FIFA Soccer 11
## 176                                                                 FIFA Soccer 11
## 177                                                                 FIFA Soccer 11
## 178                                                                 FIFA Soccer 11
## 179                                                                 FIFA Soccer 11
## 180                                                                 FIFA Soccer 11
## 181                                         Harry Potter and the Half-Blood Prince
## 182                                         Harry Potter and the Half-Blood Prince
## 183                                         Harry Potter and the Half-Blood Prince
## 184                                         Harry Potter and the Half-Blood Prince
## 185                                         Harry Potter and the Half-Blood Prince
## 186                                         Harry Potter and the Half-Blood Prince
## 187                                         Harry Potter and the Half-Blood Prince
## 188                                      Harry Potter and the Order of the Phoenix
## 189                                      Harry Potter and the Order of the Phoenix
## 190                                      Harry Potter and the Order of the Phoenix
## 191                                      Harry Potter and the Order of the Phoenix
## 192                                      Harry Potter and the Order of the Phoenix
## 193                                      Harry Potter and the Order of the Phoenix
## 194                                      Harry Potter and the Order of the Phoenix
## 195                                          Harry Potter and the Sorcerer's Stone
## 196                                          Harry Potter and the Sorcerer's Stone
## 197                                          Harry Potter and the Sorcerer's Stone
## 198                                          Harry Potter and the Sorcerer's Stone
## 199                                          Harry Potter and the Sorcerer's Stone
## 200                                          Harry Potter and the Sorcerer's Stone
## 201                                          Harry Potter and the Sorcerer's Stone
## 202                                                 LEGO Batman 2: DC Super Heroes
## 203                                                 LEGO Batman 2: DC Super Heroes
## 204                                                 LEGO Batman 2: DC Super Heroes
## 205                                                 LEGO Batman 2: DC Super Heroes
## 206                                                 LEGO Batman 2: DC Super Heroes
## 207                                                 LEGO Batman 2: DC Super Heroes
## 208                                                 LEGO Batman 2: DC Super Heroes
## 209                                                     LEGO Batman: The Videogame
## 210                                                     LEGO Batman: The Videogame
## 211                                                     LEGO Batman: The Videogame
## 212                                                     LEGO Batman: The Videogame
## 213                                                     LEGO Batman: The Videogame
## 214                                                     LEGO Batman: The Videogame
## 215                                                     LEGO Batman: The Videogame
## 216                                    LEGO Indiana Jones: The Original Adventures
## 217                                    LEGO Indiana Jones: The Original Adventures
## 218                                    LEGO Indiana Jones: The Original Adventures
## 219                                    LEGO Indiana Jones: The Original Adventures
## 220                                    LEGO Indiana Jones: The Original Adventures
## 221                                    LEGO Indiana Jones: The Original Adventures
## 222                                    LEGO Indiana Jones: The Original Adventures
## 223                                                         LEGO Marvel's Avengers
## 224                                                         LEGO Marvel's Avengers
## 225                                                         LEGO Marvel's Avengers
## 226                                                         LEGO Marvel's Avengers
## 227                                                         LEGO Marvel's Avengers
## 228                                                         LEGO Marvel's Avengers
## 229                                                         LEGO Marvel's Avengers
## 230                                  LEGO Pirates of the Caribbean: The Video Game
## 231                                  LEGO Pirates of the Caribbean: The Video Game
## 232                                  LEGO Pirates of the Caribbean: The Video Game
## 233                                  LEGO Pirates of the Caribbean: The Video Game
## 234                                  LEGO Pirates of the Caribbean: The Video Game
## 235                                  LEGO Pirates of the Caribbean: The Video Game
## 236                                  LEGO Pirates of the Caribbean: The Video Game
## 237                                             LEGO Star Wars III: The Clone Wars
## 238                                             LEGO Star Wars III: The Clone Wars
## 239                                             LEGO Star Wars III: The Clone Wars
## 240                                             LEGO Star Wars III: The Clone Wars
## 241                                             LEGO Star Wars III: The Clone Wars
## 242                                             LEGO Star Wars III: The Clone Wars
## 243                                             LEGO Star Wars III: The Clone Wars
## 244                                                     LEGO The Lord of the Rings
## 245                                                     LEGO The Lord of the Rings
## 246                                                     LEGO The Lord of the Rings
## 247                                                     LEGO The Lord of the Rings
## 248                                                     LEGO The Lord of the Rings
## 249                                                     LEGO The Lord of the Rings
## 250                                                     LEGO The Lord of the Rings
## 251                                              Lego Star Wars: The Force Awakens
## 252                                              Lego Star Wars: The Force Awakens
## 253                                              Lego Star Wars: The Force Awakens
## 254                                              Lego Star Wars: The Force Awakens
## 255                                              Lego Star Wars: The Force Awakens
## 256                                              Lego Star Wars: The Force Awakens
## 257                                              Lego Star Wars: The Force Awakens
## 258                                                                  Madden NFL 06
## 259                                                                  Madden NFL 06
## 260                                                                  Madden NFL 06
## 261                                                                  Madden NFL 06
## 262                                                                  Madden NFL 06
## 263                                                                  Madden NFL 06
## 264                                                                  Madden NFL 06
## 265                                                     Major League Baseball 2K11
## 266                                                     Major League Baseball 2K11
## 267                                                     Major League Baseball 2K11
## 268                                                     Major League Baseball 2K11
## 269                                                     Major League Baseball 2K11
## 270                                                     Major League Baseball 2K11
## 271                                                     Major League Baseball 2K11
## 272                                                                        NBA Jam
## 273                                                                        NBA Jam
## 274                                                                        NBA Jam
## 275                                                                        NBA Jam
## 276                                                                        NBA Jam
## 277                                                                        NBA Jam
## 278                                                                        NBA Jam
## 279                                                     Need For Speed: Undercover
## 280                                                     Need For Speed: Undercover
## 281                                                     Need For Speed: Undercover
## 282                                                     Need For Speed: Undercover
## 283                                                     Need For Speed: Undercover
## 284                                                     Need For Speed: Undercover
## 285                                                     Need For Speed: Undercover
## 286                                                          Need for Speed Carbon
## 287                                                          Need for Speed Carbon
## 288                                                          Need for Speed Carbon
## 289                                                          Need for Speed Carbon
## 290                                                          Need for Speed Carbon
## 291                                                          Need for Speed Carbon
## 292                                                          Need for Speed Carbon
## 293                                                      Need for Speed: ProStreet
## 294                                                      Need for Speed: ProStreet
## 295                                                      Need for Speed: ProStreet
## 296                                                      Need for Speed: ProStreet
## 297                                                      Need for Speed: ProStreet
## 298                                                      Need for Speed: ProStreet
## 299                                                      Need for Speed: ProStreet
## 300                                                      Pro Evolution Soccer 2012
## 301                                                      Pro Evolution Soccer 2012
## 302                                                      Pro Evolution Soccer 2012
## 303                                                      Pro Evolution Soccer 2012
## 304                                                      Pro Evolution Soccer 2012
## 305                                                      Pro Evolution Soccer 2012
## 306                                                      Pro Evolution Soccer 2012
## 307                                                          Skylanders SWAP Force
## 308                                                          Skylanders SWAP Force
## 309                                                          Skylanders SWAP Force
## 310                                                          Skylanders SWAP Force
## 311                                                          Skylanders SWAP Force
## 312                                                          Skylanders SWAP Force
## 313                                                          Skylanders SWAP Force
## 314                                                      Skylanders: SuperChargers
## 315                                                      Skylanders: SuperChargers
## 316                                                      Skylanders: SuperChargers
## 317                                                      Skylanders: SuperChargers
## 318                                                      Skylanders: SuperChargers
## 319                                                      Skylanders: SuperChargers
## 320                                                      Skylanders: SuperChargers
## 321                                                          Skylanders: Trap Team
## 322                                                          Skylanders: Trap Team
## 323                                                          Skylanders: Trap Team
## 324                                                          Skylanders: Trap Team
## 325                                                          Skylanders: Trap Team
## 326                                                          Skylanders: Trap Team
## 327                                                          Skylanders: Trap Team
## 328                                                                   Spider-Man 3
## 329                                                                   Spider-Man 3
## 330                                                                   Spider-Man 3
## 331                                                                   Spider-Man 3
## 332                                                                   Spider-Man 3
## 333                                                                   Spider-Man 3
## 334                                                                   Spider-Man 3
## 335                                      Star Wars The Clone Wars: Republic Heroes
## 336                                      Star Wars The Clone Wars: Republic Heroes
## 337                                      Star Wars The Clone Wars: Republic Heroes
## 338                                      Star Wars The Clone Wars: Republic Heroes
## 339                                      Star Wars The Clone Wars: Republic Heroes
## 340                                      Star Wars The Clone Wars: Republic Heroes
## 341                                      Star Wars The Clone Wars: Republic Heroes
## 342                                                                      Surf's Up
## 343                                                                      Surf's Up
## 344                                                                      Surf's Up
## 345                                                                      Surf's Up
## 346                                                                      Surf's Up
## 347                                                                      Surf's Up
## 348                                                                      Surf's Up
## 349                                                The Amazing Spider-Man 2 (2014)
## 350                                                The Amazing Spider-Man 2 (2014)
## 351                                                The Amazing Spider-Man 2 (2014)
## 352                                                The Amazing Spider-Man 2 (2014)
## 353                                                The Amazing Spider-Man 2 (2014)
## 354                                                The Amazing Spider-Man 2 (2014)
## 355                                                The Amazing Spider-Man 2 (2014)
## 356                                                                     The Sims 2
## 357                                                                     The Sims 2
## 358                                                                     The Sims 2
## 359                                                                     The Sims 2
## 360                                                                     The Sims 2
## 361                                                                     The Sims 2
## 362                                                                     The Sims 2
## 363                                                            Tomb Raider: Legend
## 364                                                            Tomb Raider: Legend
## 365                                                            Tomb Raider: Legend
## 366                                                            Tomb Raider: Legend
## 367                                                            Tomb Raider: Legend
## 368                                                            Tomb Raider: Legend
## 369                                                            Tomb Raider: Legend
## 370                                                                         Wall-E
## 371                                                                         Wall-E
## 372                                                                         Wall-E
## 373                                                                         Wall-E
## 374                                                                         Wall-E
## 375                                                                         Wall-E
## 376                                                                         Wall-E
## 377                                                         007: Quantum of Solace
## 378                                                         007: Quantum of Solace
## 379                                                         007: Quantum of Solace
## 380                                                         007: Quantum of Solace
## 381                                                         007: Quantum of Solace
## 382                                                         007: Quantum of Solace
## 383                                     Adventure Time: Finn & Jake Investigations
## 384                                     Adventure Time: Finn & Jake Investigations
## 385                                     Adventure Time: Finn & Jake Investigations
## 386                                     Adventure Time: Finn & Jake Investigations
## 387                                     Adventure Time: Finn & Jake Investigations
## 388                                     Adventure Time: Finn & Jake Investigations
## 389                                                Assassin's Creed IV: Black Flag
## 390                                                Assassin's Creed IV: Black Flag
## 391                                                Assassin's Creed IV: Black Flag
## 392                                                Assassin's Creed IV: Black Flag
## 393                                                Assassin's Creed IV: Black Flag
## 394                                                Assassin's Creed IV: Black Flag
## 395                                                               Avatar: The Game
## 396                                                               Avatar: The Game
## 397                                                               Avatar: The Game
## 398                                                               Avatar: The Game
## 399                                                               Avatar: The Game
## 400                                                               Avatar: The Game
## 401                                                         Ben 10 Galactic Racing
## 402                                                         Ben 10 Galactic Racing
## 403                                                         Ben 10 Galactic Racing
## 404                                                         Ben 10 Galactic Racing
## 405                                                         Ben 10 Galactic Racing
## 406                                                         Ben 10 Galactic Racing
## 407                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 408                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 409                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 410                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 411                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 412                                      Ben 10 Ultimate Alien: Cosmic Destruction
## 413                                                          Brunswick Pro Bowling
## 414                                                          Brunswick Pro Bowling
## 415                                                          Brunswick Pro Bowling
## 416                                                          Brunswick Pro Bowling
## 417                                                          Brunswick Pro Bowling
## 418                                                          Brunswick Pro Bowling
## 419                                                           Call of Duty: Ghosts
## 420                                                           Call of Duty: Ghosts
## 421                                                           Call of Duty: Ghosts
## 422                                                           Call of Duty: Ghosts
## 423                                                           Call of Duty: Ghosts
## 424                                                           Call of Duty: Ghosts
## 425                                                                         Cars 2
## 426                                                                         Cars 2
## 427                                                                         Cars 2
## 428                                                                         Cars 2
## 429                                                                         Cars 2
## 430                                                                         Cars 2
## 431                                                              Cars: Race-O-Rama
## 432                                                              Cars: Race-O-Rama
## 433                                                              Cars: Race-O-Rama
## 434                                                              Cars: Race-O-Rama
## 435                                                              Cars: Race-O-Rama
## 436                                                              Cars: Race-O-Rama
## 437                                                                  Darksiders II
## 438                                                                  Darksiders II
## 439                                                                  Darksiders II
## 440                                                                  Darksiders II
## 441                                                                  Darksiders II
## 442                                                                  Darksiders II
## 443                                                                         DiRT 2
## 444                                                                         DiRT 2
## 445                                                                         DiRT 2
## 446                                                                         DiRT 2
## 447                                                                         DiRT 2
## 448                                                                         DiRT 2
## 449                                                                Disney Infinity
## 450                                                                Disney Infinity
## 451                                                                Disney Infinity
## 452                                                                Disney Infinity
## 453                                                                Disney Infinity
## 454                                                                Disney Infinity
## 455                                       Disney Infinity 2.0: Marvel Super Heroes
## 456                                       Disney Infinity 2.0: Marvel Super Heroes
## 457                                       Disney Infinity 2.0: Marvel Super Heroes
## 458                                       Disney Infinity 2.0: Marvel Super Heroes
## 459                                       Disney Infinity 2.0: Marvel Super Heroes
## 460                                       Disney Infinity 2.0: Marvel Super Heroes
## 461                                                                 FIFA Soccer 07
## 462                                                                 FIFA Soccer 07
## 463                                                                 FIFA Soccer 07
## 464                                                                 FIFA Soccer 07
## 465                                                                 FIFA Soccer 07
## 466                                                                 FIFA Soccer 07
## 467                                                                 FIFA Soccer 09
## 468                                                                 FIFA Soccer 09
## 469                                                                 FIFA Soccer 09
## 470                                                                 FIFA Soccer 09
## 471                                                                 FIFA Soccer 09
## 472                                                                 FIFA Soccer 09
## 473                                                    FIFA World Cup Germany 2006
## 474                                                    FIFA World Cup Germany 2006
## 475                                                    FIFA World Cup Germany 2006
## 476                                                    FIFA World Cup Germany 2006
## 477                                                    FIFA World Cup Germany 2006
## 478                                                    FIFA World Cup Germany 2006
## 479                                                                        G-Force
## 480                                                                        G-Force
## 481                                                                        G-Force
## 482                                                                        G-Force
## 483                                                                        G-Force
## 484                                                                        G-Force
## 485                                                    G.I. Joe: The Rise of Cobra
## 486                                                    G.I. Joe: The Rise of Cobra
## 487                                                    G.I. Joe: The Rise of Cobra
## 488                                                    G.I. Joe: The Rise of Cobra
## 489                                                    G.I. Joe: The Rise of Cobra
## 490                                                    G.I. Joe: The Rise of Cobra
## 491                                                   Ghostbusters: The Video Game
## 492                                                   Ghostbusters: The Video Game
## 493                                                   Ghostbusters: The Video Game
## 494                                                   Ghostbusters: The Video Game
## 495                                                   Ghostbusters: The Video Game
## 496                                                   Ghostbusters: The Video Game
## 497                                        Harry Potter and the Chamber of Secrets
## 498                                        Harry Potter and the Chamber of Secrets
## 499                                        Harry Potter and the Chamber of Secrets
## 500                                        Harry Potter and the Chamber of Secrets
## 501                                        Harry Potter and the Chamber of Secrets
## 502                                        Harry Potter and the Chamber of Secrets
## 503                                            Harry Potter and the Goblet of Fire
## 504                                            Harry Potter and the Goblet of Fire
## 505                                            Harry Potter and the Goblet of Fire
## 506                                            Harry Potter and the Goblet of Fire
## 507                                            Harry Potter and the Goblet of Fire
## 508                                            Harry Potter and the Goblet of Fire
## 509                                                        Ice Age 2: The Meltdown
## 510                                                        Ice Age 2: The Meltdown
## 511                                                        Ice Age 2: The Meltdown
## 512                                                        Ice Age 2: The Meltdown
## 513                                                        Ice Age 2: The Meltdown
## 514                                                        Ice Age 2: The Meltdown
## 515                                                 Ice Age: Dawn of the Dinosaurs
## 516                                                 Ice Age: Dawn of the Dinosaurs
## 517                                                 Ice Age: Dawn of the Dinosaurs
## 518                                                 Ice Age: Dawn of the Dinosaurs
## 519                                                 Ice Age: Dawn of the Dinosaurs
## 520                                                 Ice Age: Dawn of the Dinosaurs
## 521                                                                       Iron Man
## 522                                                                       Iron Man
## 523                                                                       Iron Man
## 524                                                                       Iron Man
## 525                                                                       Iron Man
## 526                                                                       Iron Man
## 527                                                    Juiced 2: Hot Import Nights
## 528                                                    Juiced 2: Hot Import Nights
## 529                                                    Juiced 2: Hot Import Nights
## 530                                                    Juiced 2: Hot Import Nights
## 531                                                    Juiced 2: Hot Import Nights
## 532                                                    Juiced 2: Hot Import Nights
## 533                                                                Just Dance 2014
## 534                                                                Just Dance 2014
## 535                                                                Just Dance 2014
## 536                                                                Just Dance 2014
## 537                                                                Just Dance 2014
## 538                                                                Just Dance 2014
## 539                                                                Just Dance 2015
## 540                                                                Just Dance 2015
## 541                                                                Just Dance 2015
## 542                                                                Just Dance 2015
## 543                                                                Just Dance 2015
## 544                                                                Just Dance 2015
## 545                                                                Just Dance 2016
## 546                                                                Just Dance 2016
## 547                                                                Just Dance 2016
## 548                                                                Just Dance 2016
## 549                                                                Just Dance 2016
## 550                                                                Just Dance 2016
## 551                                                                  Kung Fu Panda
## 552                                                                  Kung Fu Panda
## 553                                                                  Kung Fu Panda
## 554                                                                  Kung Fu Panda
## 555                                                                  Kung Fu Panda
## 556                                                                  Kung Fu Panda
## 557                                                   LEGO Harry Potter: Years 1-4
## 558                                                   LEGO Harry Potter: Years 1-4
## 559                                                   LEGO Harry Potter: Years 1-4
## 560                                                   LEGO Harry Potter: Years 1-4
## 561                                                   LEGO Harry Potter: Years 1-4
## 562                                                   LEGO Harry Potter: Years 1-4
## 563                                  LEGO Indiana Jones 2: The Adventure Continues
## 564                                  LEGO Indiana Jones 2: The Adventure Continues
## 565                                  LEGO Indiana Jones 2: The Adventure Continues
## 566                                  LEGO Indiana Jones 2: The Adventure Continues
## 567                                  LEGO Indiana Jones 2: The Adventure Continues
## 568                                  LEGO Indiana Jones 2: The Adventure Continues
## 569                                                             MX vs. ATV Untamed
## 570                                                             MX vs. ATV Untamed
## 571                                                             MX vs. ATV Untamed
## 572                                                             MX vs. ATV Untamed
## 573                                                             MX vs. ATV Untamed
## 574                                                             MX vs. ATV Untamed
## 575                                                    Madagascar: Escape 2 Africa
## 576                                                    Madagascar: Escape 2 Africa
## 577                                                    Madagascar: Escape 2 Africa
## 578                                                    Madagascar: Escape 2 Africa
## 579                                                    Madagascar: Escape 2 Africa
## 580                                                    Madagascar: Escape 2 Africa
## 581                                                                  Madden NFL 09
## 582                                                                  Madden NFL 09
## 583                                                                  Madden NFL 09
## 584                                                                  Madden NFL 09
## 585                                                                  Madden NFL 09
## 586                                                                  Madden NFL 09
## 587                                                                  Madden NFL 13
## 588                                                                  Madden NFL 13
## 589                                                                  Madden NFL 13
## 590                                                                  Madden NFL 13
## 591                                                                  Madden NFL 13
## 592                                                                  Madden NFL 13
## 593                                                                Madden NFL 2002
## 594                                                                Madden NFL 2002
## 595                                                                Madden NFL 2002
## 596                                                                Madden NFL 2002
## 597                                                                Madden NFL 2002
## 598                                                                Madden NFL 2002
## 599                                                     Major League Baseball 2K10
## 600                                                     Major League Baseball 2K10
## 601                                                     Major League Baseball 2K10
## 602                                                     Major League Baseball 2K10
## 603                                                     Major League Baseball 2K10
## 604                                                     Major League Baseball 2K10
## 605                                                     Major League Baseball 2K12
## 606                                                     Major League Baseball 2K12
## 607                                                     Major League Baseball 2K12
## 608                                                     Major League Baseball 2K12
## 609                                                     Major League Baseball 2K12
## 610                                                     Major League Baseball 2K12
## 611                                                      Marvel: Ultimate Alliance
## 612                                                      Marvel: Ultimate Alliance
## 613                                                      Marvel: Ultimate Alliance
## 614                                                      Marvel: Ultimate Alliance
## 615                                                      Marvel: Ultimate Alliance
## 616                                                      Marvel: Ultimate Alliance
## 617                                                    Marvel: Ultimate Alliance 2
## 618                                                    Marvel: Ultimate Alliance 2
## 619                                                    Marvel: Ultimate Alliance 2
## 620                                                    Marvel: Ultimate Alliance 2
## 621                                                    Marvel: Ultimate Alliance 2
## 622                                                    Marvel: Ultimate Alliance 2
## 623                                                Michael Jackson: The Experience
## 624                                                Michael Jackson: The Experience
## 625                                                Michael Jackson: The Experience
## 626                                                Michael Jackson: The Experience
## 627                                                Michael Jackson: The Experience
## 628                                                Michael Jackson: The Experience
## 629                                                                      Minecraft
## 630                                                                      Minecraft
## 631                                                                      Minecraft
## 632                                                                      Minecraft
## 633                                                                      Minecraft
## 634                                                                      Minecraft
## 635                                                            Monsters vs. Aliens
## 636                                                            Monsters vs. Aliens
## 637                                                            Monsters vs. Aliens
## 638                                                            Monsters vs. Aliens
## 639                                                            Monsters vs. Aliens
## 640                                                            Monsters vs. Aliens
## 641                                                                       NBA 2K11
## 642                                                                       NBA 2K11
## 643                                                                       NBA 2K11
## 644                                                                       NBA 2K11
## 645                                                                       NBA 2K11
## 646                                                                       NBA 2K11
## 647                                                   Need for Speed Underground 2
## 648                                                   Need for Speed Underground 2
## 649                                                   Need for Speed Underground 2
## 650                                                   Need for Speed Underground 2
## 651                                                   Need for Speed Underground 2
## 652                                                   Need for Speed Underground 2
## 653                                                                    Open Season
## 654                                                                    Open Season
## 655                                                                    Open Season
## 656                                                                    Open Season
## 657                                                                    Open Season
## 658                                                                    Open Season
## 659                      Peter Jackson's King Kong: The Official Game of the Movie
## 660                      Peter Jackson's King Kong: The Official Game of the Movie
## 661                      Peter Jackson's King Kong: The Official Game of the Movie
## 662                      Peter Jackson's King Kong: The Official Game of the Movie
## 663                      Peter Jackson's King Kong: The Official Game of the Movie
## 664                      Peter Jackson's King Kong: The Official Game of the Movie
## 665                                       Pirates of the Caribbean: At World's End
## 666                                       Pirates of the Caribbean: At World's End
## 667                                       Pirates of the Caribbean: At World's End
## 668                                       Pirates of the Caribbean: At World's End
## 669                                       Pirates of the Caribbean: At World's End
## 670                                       Pirates of the Caribbean: At World's End
## 671                                          Prince of Persia: The Forgotten Sands
## 672                                          Prince of Persia: The Forgotten Sands
## 673                                          Prince of Persia: The Forgotten Sands
## 674                                          Prince of Persia: The Forgotten Sands
## 675                                          Prince of Persia: The Forgotten Sands
## 676                                          Prince of Persia: The Forgotten Sands
## 677                                                      Pro Evolution Soccer 2008
## 678                                                      Pro Evolution Soccer 2008
## 679                                                      Pro Evolution Soccer 2008
## 680                                                      Pro Evolution Soccer 2008
## 681                                                      Pro Evolution Soccer 2008
## 682                                                      Pro Evolution Soccer 2008
## 683                                                      Pro Evolution Soccer 2010
## 684                                                      Pro Evolution Soccer 2010
## 685                                                      Pro Evolution Soccer 2010
## 686                                                      Pro Evolution Soccer 2010
## 687                                                      Pro Evolution Soccer 2010
## 688                                                      Pro Evolution Soccer 2010
## 689                                                      Pro Evolution Soccer 2013
## 690                                                      Pro Evolution Soccer 2013
## 691                                                      Pro Evolution Soccer 2013
## 692                                                      Pro Evolution Soccer 2013
## 693                                                      Pro Evolution Soccer 2013
## 694                                                      Pro Evolution Soccer 2013
## 695                                                   Rapala Pro Bass Fishing 2010
## 696                                                   Rapala Pro Bass Fishing 2010
## 697                                                   Rapala Pro Bass Fishing 2010
## 698                                                   Rapala Pro Bass Fishing 2010
## 699                                                   Rapala Pro Bass Fishing 2010
## 700                                                   Rapala Pro Bass Fishing 2010
## 701                                                                 Rayman Legends
## 702                                                                 Rayman Legends
## 703                                                                 Rayman Legends
## 704                                                                 Rayman Legends
## 705                                                                 Rayman Legends
## 706                                                                 Rayman Legends
## 707                                                                 Rayman Origins
## 708                                                                 Rayman Origins
## 709                                                                 Rayman Origins
## 710                                                                 Rayman Origins
## 711                                                                 Rayman Origins
## 712                                                                 Rayman Origins
## 713                                                           Rugby World Cup 2015
## 714                                                           Rugby World Cup 2015
## 715                                                           Rugby World Cup 2015
## 716                                                           Rugby World Cup 2015
## 717                                                           Rugby World Cup 2015
## 718                                                           Rugby World Cup 2015
## 719                                           Sonic & All-Stars Racing Transformed
## 720                                           Sonic & All-Stars Racing Transformed
## 721                                           Sonic & All-Stars Racing Transformed
## 722                                           Sonic & All-Stars Racing Transformed
## 723                                           Sonic & All-Stars Racing Transformed
## 724                                           Sonic & All-Stars Racing Transformed
## 725                                                                   Spider-Man 2
## 726                                                                   Spider-Man 2
## 727                                                                   Spider-Man 2
## 728                                                                   Spider-Man 2
## 729                                                                   Spider-Man 2
## 730                                                                   Spider-Man 2
## 731                                                      Spider-Man: Friend or Foe
## 732                                                      Spider-Man: Friend or Foe
## 733                                                      Spider-Man: Friend or Foe
## 734                                                      Spider-Man: Friend or Foe
## 735                                                      Spider-Man: Friend or Foe
## 736                                                      Spider-Man: Friend or Foe
## 737                                                     Spider-Man: Web of Shadows
## 738                                                     Spider-Man: Web of Shadows
## 739                                                     Spider-Man: Web of Shadows
## 740                                                     Spider-Man: Web of Shadows
## 741                                                     Spider-Man: Web of Shadows
## 742                                                     Spider-Man: Web of Shadows
## 743                                                 Star Wars: The Force Unleashed
## 744                                                 Star Wars: The Force Unleashed
## 745                                                 Star Wars: The Force Unleashed
## 746                                                 Star Wars: The Force Unleashed
## 747                                                 Star Wars: The Force Unleashed
## 748                                                 Star Wars: The Force Unleashed
## 749                                                   Teenage Mutant Ninja Turtles
## 750                                                   Teenage Mutant Ninja Turtles
## 751                                                   Teenage Mutant Ninja Turtles
## 752                                                   Teenage Mutant Ninja Turtles
## 753                                                   Teenage Mutant Ninja Turtles
## 754                                                   Teenage Mutant Ninja Turtles
## 755                                       The Amazing Spider-Man (Console Version)
## 756                                       The Amazing Spider-Man (Console Version)
## 757                                       The Amazing Spider-Man (Console Version)
## 758                                       The Amazing Spider-Man (Console Version)
## 759                                       The Amazing Spider-Man (Console Version)
## 760                                       The Amazing Spider-Man (Console Version)
## 761                                                                     The BIGS 2
## 762                                                                     The BIGS 2
## 763                                                                     The BIGS 2
## 764                                                                     The BIGS 2
## 765                                                                     The BIGS 2
## 766                                                                     The BIGS 2
## 767                                                             The Golden Compass
## 768                                                             The Golden Compass
## 769                                                             The Golden Compass
## 770                                                             The Golden Compass
## 771                                                             The Golden Compass
## 772                                                             The Golden Compass
## 773                                                            The Incredible Hulk
## 774                                                            The Incredible Hulk
## 775                                                            The Incredible Hulk
## 776                                                            The Incredible Hulk
## 777                                                            The Incredible Hulk
## 778                                                            The Incredible Hulk
## 779                                        The Incredibles: Rise of the Underminer
## 780                                        The Incredibles: Rise of the Underminer
## 781                                        The Incredibles: Rise of the Underminer
## 782                                        The Incredibles: Rise of the Underminer
## 783                                        The Incredibles: Rise of the Underminer
## 784                                        The Incredibles: Rise of the Underminer
## 785                                                              The Simpsons Game
## 786                                                              The Simpsons Game
## 787                                                              The Simpsons Game
## 788                                                              The Simpsons Game
## 789                                                              The Simpsons Game
## 790                                                              The Simpsons Game
## 791                                                               The Sims 2: Pets
## 792                                                               The Sims 2: Pets
## 793                                                               The Sims 2: Pets
## 794                                                               The Sims 2: Pets
## 795                                                               The Sims 2: Pets
## 796                                                               The Sims 2: Pets
## 797                                                                     The Sims 3
## 798                                                                     The Sims 3
## 799                                                                     The Sims 3
## 800                                                                     The Sims 3
## 801                                                                     The Sims 3
## 802                                                                     The Sims 3
## 803                                                   The Walking Dead: Season One
## 804                                                   The Walking Dead: Season One
## 805                                                   The Walking Dead: Season One
## 806                                                   The Walking Dead: Season One
## 807                                                   The Walking Dead: Season One
## 808                                                   The Walking Dead: Season One
## 809                                                        Tiger Woods PGA Tour 07
## 810                                                        Tiger Woods PGA Tour 07
## 811                                                        Tiger Woods PGA Tour 07
## 812                                                        Tiger Woods PGA Tour 07
## 813                                                        Tiger Woods PGA Tour 07
## 814                                                        Tiger Woods PGA Tour 07
## 815                                                        Tiger Woods PGA Tour 08
## 816                                                        Tiger Woods PGA Tour 08
## 817                                                        Tiger Woods PGA Tour 08
## 818                                                        Tiger Woods PGA Tour 08
## 819                                                        Tiger Woods PGA Tour 08
## 820                                                        Tiger Woods PGA Tour 08
## 821                                                        Tomb Raider: Underworld
## 822                                                        Tomb Raider: Underworld
## 823                                                        Tomb Raider: Underworld
## 824                                                        Tomb Raider: Underworld
## 825                                                        Tomb Raider: Underworld
## 826                                                        Tomb Raider: Underworld
## 827                                                       Tony Hawk's Pro Skater 3
## 828                                                       Tony Hawk's Pro Skater 3
## 829                                                       Tony Hawk's Pro Skater 3
## 830                                                       Tony Hawk's Pro Skater 3
## 831                                                       Tony Hawk's Pro Skater 3
## 832                                                       Tony Hawk's Pro Skater 3
## 833             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 834             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 835             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 836             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 837             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 838             Transformers: Revenge of the Fallen (XBox 360, PS3, & PC Versions)
## 839                                                       Turbo: Super Stunt Squad
## 840                                                       Turbo: Super Stunt Squad
## 841                                                       Turbo: Super Stunt Squad
## 842                                                       Turbo: Super Stunt Squad
## 843                                                       Turbo: Super Stunt Squad
## 844                                                       Turbo: Super Stunt Squad
## 845                                                                             Up
## 846                                                                             Up
## 847                                                                             Up
## 848                                                                             Up
## 849                                                                             Up
## 850                                                                             Up
## 851                                                                  WWE All Stars
## 852                                                                  WWE All Stars
## 853                                                                  WWE All Stars
## 854                                                                  WWE All Stars
## 855                                                                  WWE All Stars
## 856                                                                  WWE All Stars
## 857                                                      WWE SmackDown vs Raw 2008
## 858                                                      WWE SmackDown vs Raw 2008
## 859                                                      WWE SmackDown vs Raw 2008
## 860                                                      WWE SmackDown vs Raw 2008
## 861                                                      WWE SmackDown vs Raw 2008
## 862                                                      WWE SmackDown vs Raw 2008
## 863                                                     WWE SmackDown vs. Raw 2009
## 864                                                     WWE SmackDown vs. Raw 2009
## 865                                                     WWE SmackDown vs. Raw 2009
## 866                                                     WWE SmackDown vs. Raw 2009
## 867                                                     WWE SmackDown vs. Raw 2009
## 868                                                     WWE SmackDown vs. Raw 2009
## 869                                                     WWE SmackDown vs. Raw 2010
## 870                                                     WWE SmackDown vs. Raw 2010
## 871                                                     WWE SmackDown vs. Raw 2010
## 872                                                     WWE SmackDown vs. Raw 2010
## 873                                                     WWE SmackDown vs. Raw 2010
## 874                                                     WWE SmackDown vs. Raw 2010
## 875                                                              Warriors Orochi 3
## 876                                                              Warriors Orochi 3
## 877                                                              Warriors Orochi 3
## 878                                                              Warriors Orochi 3
## 879                                                              Warriors Orochi 3
## 880                                                              Warriors Orochi 3
## 881                                                                     Watch Dogs
## 882                                                                     Watch Dogs
## 883                                                                     Watch Dogs
## 884                                                                     Watch Dogs
## 885                                                                     Watch Dogs
## 886                                                                     Watch Dogs
## 887                                                       X-Men: The Official Game
## 888                                                       X-Men: The Official Game
## 889                                                       X-Men: The Official Game
## 890                                                       X-Men: The Official Game
## 891                                                       X-Men: The Official Game
## 892                                                       X-Men: The Official Game
## 893                                                            You Don't Know Jack
## 894                                                            You Don't Know Jack
## 895                                                            You Don't Know Jack
## 896                                                            You Don't Know Jack
## 897                                                            You Don't Know Jack
## 898                                                            You Don't Know Jack
## 899                                                      pro evolution soccer 2011
## 900                                                      pro evolution soccer 2011
## 901                                                      pro evolution soccer 2011
## 902                                                      pro evolution soccer 2011
## 903                                                      pro evolution soccer 2011
## 904                                                      pro evolution soccer 2011
## 905                                                               Alien: Isolation
## 906                                                               Alien: Isolation
## 907                                                               Alien: Isolation
## 908                                                               Alien: Isolation
## 909                                                               Alien: Isolation
## 910                                                   Back to the Future: The Game
## 911                                                   Back to the Future: The Game
## 912                                                   Back to the Future: The Game
## 913                                                   Back to the Future: The Game
## 914                                                   Back to the Future: The Game
## 915                                 Bakugan Battle Brawlers: Defenders of the Core
## 916                                 Bakugan Battle Brawlers: Defenders of the Core
## 917                                 Bakugan Battle Brawlers: Defenders of the Core
## 918                                 Bakugan Battle Brawlers: Defenders of the Core
## 919                                 Bakugan Battle Brawlers: Defenders of the Core
## 920                                                       Bakugan: Battle Brawlers
## 921                                                       Bakugan: Battle Brawlers
## 922                                                       Bakugan: Battle Brawlers
## 923                                                       Bakugan: Battle Brawlers
## 924                                                       Bakugan: Battle Brawlers
## 925                                                                      Band Hero
## 926                                                                      Band Hero
## 927                                                                      Band Hero
## 928                                                                      Band Hero
## 929                                                                      Band Hero
## 930                                                                  Battlefield 4
## 931                                                                  Battlefield 4
## 932                                                                  Battlefield 4
## 933                                                                  Battlefield 4
## 934                                                                  Battlefield 4
## 935                                                          Battlefield: Hardline
## 936                                                          Battlefield: Hardline
## 937                                                          Battlefield: Hardline
## 938                                                          Battlefield: Hardline
## 939                                                          Battlefield: Hardline
## 940                                             Ben 10 Alien Force: Vilgax Attacks
## 941                                             Ben 10 Alien Force: Vilgax Attacks
## 942                                             Ben 10 Alien Force: Vilgax Attacks
## 943                                             Ben 10 Alien Force: Vilgax Attacks
## 944                                             Ben 10 Alien Force: Vilgax Attacks
## 945                                              Blazing Angels: Squadrons of WWII
## 946                                              Blazing Angels: Squadrons of WWII
## 947                                              Blazing Angels: Squadrons of WWII
## 948                                              Blazing Angels: Squadrons of WWII
## 949                                              Blazing Angels: Squadrons of WWII
## 950                                                                           Bolt
## 951                                                                           Bolt
## 952                                                                           Bolt
## 953                                                                           Bolt
## 954                                                                           Bolt
## 955                                             Cabela's North American Adventures
## 956                                             Cabela's North American Adventures
## 957                                             Cabela's North American Adventures
## 958                                             Cabela's North American Adventures
## 959                                             Cabela's North American Adventures
## 960                                                 Call of Duty: Advanced Warfare
## 961                                                 Call of Duty: Advanced Warfare
## 962                                                 Call of Duty: Advanced Warfare
## 963                                                 Call of Duty: Advanced Warfare
## 964                                                 Call of Duty: Advanced Warfare
## 965                                                        Call of Duty: Black Ops
## 966                                                        Call of Duty: Black Ops
## 967                                                        Call of Duty: Black Ops
## 968                                                        Call of Duty: Black Ops
## 969                                                        Call of Duty: Black Ops
## 970                                                      Call of Duty: Black Ops 3
## 971                                                      Call of Duty: Black Ops 3
## 972                                                      Call of Duty: Black Ops 3
## 973                                                      Call of Duty: Black Ops 3
## 974                                                      Call of Duty: Black Ops 3
## 975                                                     Call of Duty: World at War
## 976                                                     Call of Duty: World at War
## 977                                                     Call of Duty: World at War
## 978                                                     Call of Duty: World at War
## 979                                                     Call of Duty: World at War
## 980                                                 Captain America: Super Soldier
## 981                                                 Captain America: Super Soldier
## 982                                                 Captain America: Super Soldier
## 983                                                 Captain America: Super Soldier
## 984                                                 Captain America: Super Soldier
## 985                                              Cloudy With a Chance of Meatballs
## 986                                              Cloudy With a Chance of Meatballs
## 987                                              Cloudy With a Chance of Meatballs
## 988                                              Cloudy With a Chance of Meatballs
## 989                                              Cloudy With a Chance of Meatballs
## 990                                                            Crash of the Titans
## 991                                                            Crash of the Titans
## 992                                                            Crash of the Titans
## 993                                                            Crash of the Titans
## 994                                                            Crash of the Titans
## 995                                                        Crash: Mind Over Mutant
## 996                                                        Crash: Mind Over Mutant
## 997                                                        Crash: Mind Over Mutant
## 998                                                        Crash: Mind Over Mutant
## 999                                                        Crash: Mind Over Mutant
## 1000                                                                 Dark Souls II
## 1001                                                                 Dark Souls II
## 1002                                                                 Dark Souls II
## 1003                                                                 Dark Souls II
## 1004                                                                 Dark Souls II
## 1005                                                               Dead or Alive 5
## 1006                                                               Dead or Alive 5
## 1007                                                               Dead or Alive 5
## 1008                                                               Dead or Alive 5
## 1009                                                               Dead or Alive 5
## 1010                                                                    Diablo III
## 1011                                                                    Diablo III
## 1012                                                                    Diablo III
## 1013                                                                    Diablo III
## 1014                                                                    Diablo III
## 1015                                                                    Dishonored
## 1016                                                                    Dishonored
## 1017                                                                    Dishonored
## 1018                                                                    Dishonored
## 1019                                                                    Dishonored
## 1020                                                           Disney Infinity 3.0
## 1021                                                           Disney Infinity 3.0
## 1022                                                           Disney Infinity 3.0
## 1023                                                           Disney Infinity 3.0
## 1024                                                           Disney Infinity 3.0
## 1025                                                       Dragon Age: Inquisition
## 1026                                                       Dragon Age: Inquisition
## 1027                                                       Dragon Age: Inquisition
## 1028                                                       Dragon Age: Inquisition
## 1029                                                       Dragon Age: Inquisition
## 1030                                                   DreamWorks Super Star Kartz
## 1031                                                   DreamWorks Super Star Kartz
## 1032                                                   DreamWorks Super Star Kartz
## 1033                                                   DreamWorks Super Star Kartz
## 1034                                                   DreamWorks Super Star Kartz
## 1035                                                                       F1 2011
## 1036                                                                       F1 2011
## 1037                                                                       F1 2011
## 1038                                                                       F1 2011
## 1039                                                                       F1 2011
## 1040                                                                       FIFA 16
## 1041                                                                       FIFA 16
## 1042                                                                       FIFA 16
## 1043                                                                       FIFA 16
## 1044                                                                       FIFA 16
## 1045                                                                       FIFA 17
## 1046                                                                       FIFA 17
## 1047                                                                       FIFA 17
## 1048                                                                       FIFA 17
## 1049                                                                       FIFA 17
## 1050                                                                FIFA Soccer 06
## 1051                                                                FIFA Soccer 06
## 1052                                                                FIFA Soccer 06
## 1053                                                                FIFA Soccer 06
## 1054                                                                FIFA Soccer 06
## 1055                                                                   FIFA Street
## 1056                                                                   FIFA Street
## 1057                                                                   FIFA Street
## 1058                                                                   FIFA Street
## 1059                                                                   FIFA Street
## 1060                                                                 FIFA Street 2
## 1061                                                                 FIFA Street 2
## 1062                                                                 FIFA Street 2
## 1063                                                                 FIFA Street 2
## 1064                                                                 FIFA Street 2
## 1065                                     Fantastic Four: Rise of the Silver Surfer
## 1066                                     Fantastic Four: Rise of the Silver Surfer
## 1067                                     Fantastic Four: Rise of the Silver Surfer
## 1068                                     Fantastic Four: Rise of the Silver Surfer
## 1069                                     Fantastic Four: Rise of the Silver Surfer
## 1070                                                                     Far Cry 4
## 1071                                                                     Far Cry 4
## 1072                                                                     Far Cry 4
## 1073                                                                     Far Cry 4
## 1074                                                                     Far Cry 4
## 1075                                                        Farming Simulator 2015
## 1076                                                        Farming Simulator 2015
## 1077                                                        Farming Simulator 2015
## 1078                                                        Farming Simulator 2015
## 1079                                                        Farming Simulator 2015
## 1080                                                           Fight Night Round 3
## 1081                                                           Fight Night Round 3
## 1082                                                           Fight Night Round 3
## 1083                                                           Fight Night Round 3
## 1084                                                           Fight Night Round 3
## 1085                                            Generator Rex: Agent of Providence
## 1086                                            Generator Rex: Agent of Providence
## 1087                                            Generator Rex: Agent of Providence
## 1088                                            Generator Rex: Agent of Providence
## 1089                                            Generator Rex: Agent of Providence
## 1090                                                            Grand Theft Auto V
## 1091                                                            Grand Theft Auto V
## 1092                                                            Grand Theft Auto V
## 1093                                                            Grand Theft Auto V
## 1094                                                            Grand Theft Auto V
## 1095                                         Green Lantern: Rise of the Manhunters
## 1096                                         Green Lantern: Rise of the Manhunters
## 1097                                         Green Lantern: Rise of the Manhunters
## 1098                                         Green Lantern: Rise of the Manhunters
## 1099                                         Green Lantern: Rise of the Manhunters
## 1100                                              Guitar Hero III: Legends of Rock
## 1101                                              Guitar Hero III: Legends of Rock
## 1102                                              Guitar Hero III: Legends of Rock
## 1103                                              Guitar Hero III: Legends of Rock
## 1104                                              Guitar Hero III: Legends of Rock
## 1105                                                              Guitar Hero Live
## 1106                                                              Guitar Hero Live
## 1107                                                              Guitar Hero Live
## 1108                                                              Guitar Hero Live
## 1109                                                              Guitar Hero Live
## 1110                                                       Guitar Hero: World Tour
## 1111                                                       Guitar Hero: World Tour
## 1112                                                       Guitar Hero: World Tour
## 1113                                                       Guitar Hero: World Tour
## 1114                                                       Guitar Hero: World Tour
## 1115                                                                Happy Feet Two
## 1116                                                                Happy Feet Two
## 1117                                                                Happy Feet Two
## 1118                                                                Happy Feet Two
## 1119                                                                Happy Feet Two
## 1120                                 Harry Potter and the Deathly Hallows - Part 1
## 1121                                 Harry Potter and the Deathly Hallows - Part 1
## 1122                                 Harry Potter and the Deathly Hallows - Part 1
## 1123                                 Harry Potter and the Deathly Hallows - Part 1
## 1124                                 Harry Potter and the Deathly Hallows - Part 1
## 1125                                 Harry Potter and the Deathly Hallows - Part 2
## 1126                                 Harry Potter and the Deathly Hallows - Part 2
## 1127                                 Harry Potter and the Deathly Hallows - Part 2
## 1128                                 Harry Potter and the Deathly Hallows - Part 2
## 1129                                 Harry Potter and the Deathly Hallows - Part 2
## 1130                                      Harry Potter and the Prisoner of Azkaban
## 1131                                      Harry Potter and the Prisoner of Azkaban
## 1132                                      Harry Potter and the Prisoner of Azkaban
## 1133                                      Harry Potter and the Prisoner of Azkaban
## 1134                                      Harry Potter and the Prisoner of Azkaban
## 1135                                                    How to Train Your Dragon 2
## 1136                                                    How to Train Your Dragon 2
## 1137                                                    How to Train Your Dragon 2
## 1138                                                    How to Train Your Dragon 2
## 1139                                                    How to Train Your Dragon 2
## 1140                                                      Injustice: Gods Among Us
## 1141                                                      Injustice: Gods Among Us
## 1142                                                      Injustice: Gods Among Us
## 1143                                                      Injustice: Gods Among Us
## 1144                                                      Injustice: Gods Among Us
## 1145                                                                    Iron Man 2
## 1146                                                                    Iron Man 2
## 1147                                                                    Iron Man 2
## 1148                                                                    Iron Man 2
## 1149                                                                    Iron Man 2
## 1150                                                                     Jeopardy!
## 1151                                                                     Jeopardy!
## 1152                                                                     Jeopardy!
## 1153                                                                     Jeopardy!
## 1154                                                                     Jeopardy!
## 1155                                                            Karaoke Revolution
## 1156                                                            Karaoke Revolution
## 1157                                                            Karaoke Revolution
## 1158                                                            Karaoke Revolution
## 1159                                                            Karaoke Revolution
## 1160                                                               LEGO Dimensions
## 1161                                                               LEGO Dimensions
## 1162                                                               LEGO Dimensions
## 1163                                                               LEGO Dimensions
## 1164                                                               LEGO Dimensions
## 1165                                                LEGO Star Wars: The Video Game
## 1166                                                LEGO Star Wars: The Video Game
## 1167                                                LEGO Star Wars: The Video Game
## 1168                                                LEGO Star Wars: The Video Game
## 1169                                                LEGO Star Wars: The Video Game
## 1170                                                                    Madagascar
## 1171                                                                    Madagascar
## 1172                                                                    Madagascar
## 1173                                                                    Madagascar
## 1174                                                                    Madagascar
## 1175                                                                 Madden NFL 10
## 1176                                                                 Madden NFL 10
## 1177                                                                 Madden NFL 10
## 1178                                                                 Madden NFL 10
## 1179                                                                 Madden NFL 10
## 1180                                                                 Madden NFL 11
## 1181                                                                 Madden NFL 11
## 1182                                                                 Madden NFL 11
## 1183                                                                 Madden NFL 11
## 1184                                                                 Madden NFL 11
## 1185                                                               Madden NFL 2005
## 1186                                                               Madden NFL 2005
## 1187                                                               Madden NFL 2005
## 1188                                                               Madden NFL 2005
## 1189                                                               Madden NFL 2005
## 1190                                                     Major League Baseball 2K6
## 1191                                                     Major League Baseball 2K6
## 1192                                                     Major League Baseball 2K6
## 1193                                                     Major League Baseball 2K6
## 1194                                                     Major League Baseball 2K6
## 1195                                                     Major League Baseball 2K8
## 1196                                                     Major League Baseball 2K8
## 1197                                                     Major League Baseball 2K8
## 1198                                                     Major League Baseball 2K8
## 1199                                                     Major League Baseball 2K8
## 1200                                                     Major League Baseball 2K9
## 1201                                                     Major League Baseball 2K9
## 1202                                                     Major League Baseball 2K9
## 1203                                                     Major League Baseball 2K9
## 1204                                                     Major League Baseball 2K9
## 1205                                        Marvel Nemesis: Rise of the Imperfects
## 1206                                        Marvel Nemesis: Rise of the Imperfects
## 1207                                        Marvel Nemesis: Rise of the Imperfects
## 1208                                        Marvel Nemesis: Rise of the Imperfects
## 1209                                        Marvel Nemesis: Rise of the Imperfects
## 1210                                Marvel Super Hero Squad: The Infinity Gauntlet
## 1211                                Marvel Super Hero Squad: The Infinity Gauntlet
## 1212                                Marvel Super Hero Squad: The Infinity Gauntlet
## 1213                                Marvel Super Hero Squad: The Infinity Gauntlet
## 1214                                Marvel Super Hero Squad: The Infinity Gauntlet
## 1215                                          Metal Gear Solid V: The Phantom Pain
## 1216                                          Metal Gear Solid V: The Phantom Pain
## 1217                                          Metal Gear Solid V: The Phantom Pain
## 1218                                          Metal Gear Solid V: The Phantom Pain
## 1219                                          Metal Gear Solid V: The Phantom Pain
## 1220                                                             Metro: Last Light
## 1221                                                             Metro: Last Light
## 1222                                                             Metro: Last Light
## 1223                                                             Metro: Last Light
## 1224                                                             Metro: Last Light
## 1225                                                Middle-Earth: Shadow of Mordor
## 1226                                                Middle-Earth: Shadow of Mordor
## 1227                                                Middle-Earth: Shadow of Mordor
## 1228                                                Middle-Earth: Shadow of Mordor
## 1229                                                Middle-Earth: Shadow of Mordor
## 1230                                                         Minecraft: Story Mode
## 1231                                                         Minecraft: Story Mode
## 1232                                                         Minecraft: Story Mode
## 1233                                                         Minecraft: Story Mode
## 1234                                                         Minecraft: Story Mode
## 1235                                                                   Mini Ninjas
## 1236                                                                   Mini Ninjas
## 1237                                                                   Mini Ninjas
## 1238                                                                   Mini Ninjas
## 1239                                                                   Mini Ninjas
## 1240                                                                   Monster Jam
## 1241                                                                   Monster Jam
## 1242                                                                   Monster Jam
## 1243                                                                   Monster Jam
## 1244                                                                   Monster Jam
## 1245                                              Monster Jam: Path of Destruction
## 1246                                              Monster Jam: Path of Destruction
## 1247                                              Monster Jam: Path of Destruction
## 1248                                              Monster Jam: Path of Destruction
## 1249                                              Monster Jam: Path of Destruction
## 1250                                                                 Mortal Kombat
## 1251                                                                 Mortal Kombat
## 1252                                                                 Mortal Kombat
## 1253                                                                 Mortal Kombat
## 1254                                                                 Mortal Kombat
## 1255                                                                        MotoGP
## 1256                                                                        MotoGP
## 1257                                                                        MotoGP
## 1258                                                                        MotoGP
## 1259                                                                        MotoGP
## 1260                                                        Murdered: Soul Suspect
## 1261                                                        Murdered: Soul Suspect
## 1262                                                        Murdered: Soul Suspect
## 1263                                                        Murdered: Soul Suspect
## 1264                                                        Murdered: Soul Suspect
## 1265                                                                          Myst
## 1266                                                                          Myst
## 1267                                                                          Myst
## 1268                                                                          Myst
## 1269                                                                          Myst
## 1270                                                                      NBA 2K10
## 1271                                                                      NBA 2K10
## 1272                                                                      NBA 2K10
## 1273                                                                      NBA 2K10
## 1274                                                                      NBA 2K10
## 1275                                                                      NBA 2K12
## 1276                                                                      NBA 2K12
## 1277                                                                      NBA 2K12
## 1278                                                                      NBA 2K12
## 1279                                                                      NBA 2K12
## 1280                                                                      NBA 2K13
## 1281                                                                      NBA 2K13
## 1282                                                                      NBA 2K13
## 1283                                                                      NBA 2K13
## 1284                                                                      NBA 2K13
## 1285                                                                      NBA 2K16
## 1286                                                                      NBA 2K16
## 1287                                                                      NBA 2K16
## 1288                                                                      NBA 2K16
## 1289                                                                      NBA 2K16
## 1290                                                                   NBA Live 08
## 1291                                                                   NBA Live 08
## 1292                                                                   NBA Live 08
## 1293                                                                   NBA Live 08
## 1294                                                                   NBA Live 08
## 1295                                                         Need for Speed Rivals
## 1296                                                         Need for Speed Rivals
## 1297                                                         Need for Speed Rivals
## 1298                                                         Need for Speed Rivals
## 1299                                                         Need for Speed Rivals
## 1300                                                    Need for Speed Underground
## 1301                                                    Need for Speed Underground
## 1302                                                    Need for Speed Underground
## 1303                                                    Need for Speed Underground
## 1304                                                    Need for Speed Underground
## 1305                                                       Need for Speed: The Run
## 1306                                                       Need for Speed: The Run
## 1307                                                       Need for Speed: The Run
## 1308                                                       Need for Speed: The Run
## 1309                                                       Need for Speed: The Run
## 1310                                                                Over the Hedge
## 1311                                                                Over the Hedge
## 1312                                                                Over the Hedge
## 1313                                                                Over the Hedge
## 1314                                                                Over the Hedge
## 1315                                                PES 2009: Pro Evolution Soccer
## 1316                                                PES 2009: Pro Evolution Soccer
## 1317                                                PES 2009: Pro Evolution Soccer
## 1318                                                PES 2009: Pro Evolution Soccer
## 1319                                                PES 2009: Pro Evolution Soccer
## 1320                                                               Pac-Man World 3
## 1321                                                               Pac-Man World 3
## 1322                                                               Pac-Man World 3
## 1323                                                               Pac-Man World 3
## 1324                                                               Pac-Man World 3
## 1325                                                                      Payday 2
## 1326                                                                      Payday 2
## 1327                                                                      Payday 2
## 1328                                                                      Payday 2
## 1329                                                                      Payday 2
## 1330                                 Pinball Hall of Fame: The Gottlieb Collection
## 1331                                 Pinball Hall of Fame: The Gottlieb Collection
## 1332                                 Pinball Hall of Fame: The Gottlieb Collection
## 1333                                 Pinball Hall of Fame: The Gottlieb Collection
## 1334                                 Pinball Hall of Fame: The Gottlieb Collection
## 1335                                 Pinball Hall of Fame: The Williams Collection
## 1336                                 Pinball Hall of Fame: The Williams Collection
## 1337                                 Pinball Hall of Fame: The Williams Collection
## 1338                                 Pinball Hall of Fame: The Williams Collection
## 1339                                 Pinball Hall of Fame: The Williams Collection
## 1340                                            Plants vs. Zombies: Garden Warfare
## 1341                                            Plants vs. Zombies: Garden Warfare
## 1342                                            Plants vs. Zombies: Garden Warfare
## 1343                                            Plants vs. Zombies: Garden Warfare
## 1344                                            Plants vs. Zombies: Garden Warfare
## 1345                                                     Pro Evolution Soccer 2014
## 1346                                                     Pro Evolution Soccer 2014
## 1347                                                     Pro Evolution Soccer 2014
## 1348                                                     Pro Evolution Soccer 2014
## 1349                                                     Pro Evolution Soccer 2014
## 1350                                                     Pro Evolution Soccer 2015
## 1351                                                     Pro Evolution Soccer 2015
## 1352                                                     Pro Evolution Soccer 2015
## 1353                                                     Pro Evolution Soccer 2015
## 1354                                                     Pro Evolution Soccer 2015
## 1355                                                     Pro Evolution Soccer 2016
## 1356                                                     Pro Evolution Soccer 2016
## 1357                                                     Pro Evolution Soccer 2016
## 1358                                                     Pro Evolution Soccer 2016
## 1359                                                     Pro Evolution Soccer 2016
## 1360                                                               Resident Evil 6
## 1361                                                               Resident Evil 6
## 1362                                                               Resident Evil 6
## 1363                                                               Resident Evil 6
## 1364                                                               Resident Evil 6
## 1365                                                    Resident Evil: Revelations
## 1366                                                    Resident Evil: Revelations
## 1367                                                    Resident Evil: Revelations
## 1368                                                    Resident Evil: Revelations
## 1369                                                    Resident Evil: Revelations
## 1370                                                  Resident Evil: Revelations 2
## 1371                                                  Resident Evil: Revelations 2
## 1372                                                  Resident Evil: Revelations 2
## 1373                                                  Resident Evil: Revelations 2
## 1374                                                  Resident Evil: Revelations 2
## 1375                                                                          Ride
## 1376                                                                          Ride
## 1377                                                                          Ride
## 1378                                                                          Ride
## 1379                                                                          Ride
## 1380                                                                Rocksmith 2014
## 1381                                                                Rocksmith 2014
## 1382                                                                Rocksmith 2014
## 1383                                                                Rocksmith 2014
## 1384                                                                Rocksmith 2014
## 1385                                                                      Rugby 15
## 1386                                                                      Rugby 15
## 1387                                                                      Rugby 15
## 1388                                                                      Rugby 15
## 1389                                                                      Rugby 15
## 1390                                                                 Saints Row IV
## 1391                                                                 Saints Row IV
## 1392                                                                 Saints Row IV
## 1393                                                                 Saints Row IV
## 1394                                                                 Saints Row IV
## 1395                                                          Scooby-Doo! Unmasked
## 1396                                                          Scooby-Doo! Unmasked
## 1397                                                          Scooby-Doo! Unmasked
## 1398                                                          Scooby-Doo! Unmasked
## 1399                                                          Scooby-Doo! Unmasked
## 1400                          SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 1401                          SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 1402                          SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 1403                          SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 1404                          SeaWorld Adventure Parks: Shamu's Deep Sea Adventure
## 1405                                                        Sega Superstars Tennis
## 1406                                                        Sega Superstars Tennis
## 1407                                                        Sega Superstars Tennis
## 1408                                                        Sega Superstars Tennis
## 1409                                                        Sega Superstars Tennis
## 1410                                                      Shaun White Snowboarding
## 1411                                                      Shaun White Snowboarding
## 1412                                                      Shaun White Snowboarding
## 1413                                                      Shaun White Snowboarding
## 1414                                                      Shaun White Snowboarding
## 1415                                         Sherlock Holmes: Crimes & Punishments
## 1416                                         Sherlock Holmes: Crimes & Punishments
## 1417                                         Sherlock Holmes: Crimes & Punishments
## 1418                                         Sherlock Holmes: Crimes & Punishments
## 1419                                         Sherlock Holmes: Crimes & Punishments
## 1420                                                               Shrek SuperSlam
## 1421                                                               Shrek SuperSlam
## 1422                                                               Shrek SuperSlam
## 1423                                                               Shrek SuperSlam
## 1424                                                               Shrek SuperSlam
## 1425                                                               Shrek the Third
## 1426                                                               Shrek the Third
## 1427                                                               Shrek the Third
## 1428                                                               Shrek the Third
## 1429                                                               Shrek the Third
## 1430                                                                  SimCity 2000
## 1431                                                                  SimCity 2000
## 1432                                                                  SimCity 2000
## 1433                                                                  SimCity 2000
## 1434                                                                  SimCity 2000
## 1435                                                             Skylanders Giants
## 1436                                                             Skylanders Giants
## 1437                                                             Skylanders Giants
## 1438                                                             Skylanders Giants
## 1439                                                             Skylanders Giants
## 1440                                                 Skylanders: Spyro's Adventure
## 1441                                                 Skylanders: Spyro's Adventure
## 1442                                                 Skylanders: Spyro's Adventure
## 1443                                                 Skylanders: Spyro's Adventure
## 1444                                                 Skylanders: Spyro's Adventure
## 1445                                                                 Sleeping Dogs
## 1446                                                                 Sleeping Dogs
## 1447                                                                 Sleeping Dogs
## 1448                                                                 Sleeping Dogs
## 1449                                                                 Sleeping Dogs
## 1450                                                      Spider-Man: Edge of Time
## 1451                                                      Spider-Man: Edge of Time
## 1452                                                      Spider-Man: Edge of Time
## 1453                                                      Spider-Man: Edge of Time
## 1454                                                      Spider-Man: Edge of Time
## 1455                                             Star Wars: The Force Unleashed II
## 1456                                             Star Wars: The Force Unleashed II
## 1457                                             Star Wars: The Force Unleashed II
## 1458                                             Star Wars: The Force Unleashed II
## 1459                                             Star Wars: The Force Unleashed II
## 1460                                                               TRON: Evolution
## 1461                                                               TRON: Evolution
## 1462                                                               TRON: Evolution
## 1463                                                               TRON: Evolution
## 1464                                                               TRON: Evolution
## 1465                                                                      The BIGS
## 1466                                                                      The BIGS
## 1467                                                                      The BIGS
## 1468                                                                      The BIGS
## 1469                                                                      The BIGS
## 1470                                      The Chronicles of Narnia: Prince Caspian
## 1471                                      The Chronicles of Narnia: Prince Caspian
## 1472                                      The Chronicles of Narnia: Prince Caspian
## 1473                                      The Chronicles of Narnia: Prince Caspian
## 1474                                      The Chronicles of Narnia: Prince Caspian
## 1475                The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 1476                The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 1477                The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 1478                The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 1479                The Chronicles of Narnia: The Lion, The Witch and The Wardrobe
## 1480                                                               The Evil Within
## 1481                                                               The Evil Within
## 1482                                                               The Evil Within
## 1483                                                               The Evil Within
## 1484                                                               The Evil Within
## 1485                                       The Legend of Spyro: Dawn of the Dragon
## 1486                                       The Legend of Spyro: Dawn of the Dragon
## 1487                                       The Legend of Spyro: Dawn of the Dragon
## 1488                                       The Legend of Spyro: Dawn of the Dragon
## 1489                                       The Legend of Spyro: Dawn of the Dragon
## 1490                                        The Lord of the Rings: Aragorn's Quest
## 1491                                        The Lord of the Rings: Aragorn's Quest
## 1492                                        The Lord of the Rings: Aragorn's Quest
## 1493                                        The Lord of the Rings: Aragorn's Quest
## 1494                                        The Lord of the Rings: Aragorn's Quest
## 1495                                                                  The Smurfs 2
## 1496                                                                  The Smurfs 2
## 1497                                                                  The Smurfs 2
## 1498                                                                  The Smurfs 2
## 1499                                                                  The Smurfs 2
## 1500                                                  The Walking Dead: Season Two
## 1501                                                  The Walking Dead: Season Two
## 1502                                                  The Walking Dead: Season Two
## 1503                                                  The Walking Dead: Season Two
## 1504                                                  The Walking Dead: Season Two
## 1505                                                             The Wolf Among Us
## 1506                                                             The Wolf Among Us
## 1507                                                             The Wolf Among Us
## 1508                                                             The Wolf Among Us
## 1509                                                             The Wolf Among Us
## 1510                                                                  Thief (2014)
## 1511                                                                  Thief (2014)
## 1512                                                                  Thief (2014)
## 1513                                                                  Thief (2014)
## 1514                                                                  Thief (2014)
## 1515                                                          Thor: God of Thunder
## 1516                                                          Thor: God of Thunder
## 1517                                                          Thor: God of Thunder
## 1518                                                          Thor: God of Thunder
## 1519                                                          Thor: God of Thunder
## 1520                                                    Thrillville: Off the Rails
## 1521                                                    Thrillville: Off the Rails
## 1522                                                    Thrillville: Off the Rails
## 1523                                                    Thrillville: Off the Rails
## 1524                                                    Thrillville: Off the Rails
## 1525                                                       Tiger Woods PGA Tour 06
## 1526                                                       Tiger Woods PGA Tour 06
## 1527                                                       Tiger Woods PGA Tour 06
## 1528                                                       Tiger Woods PGA Tour 06
## 1529                                                       Tiger Woods PGA Tour 06
## 1530                                                       Tiger Woods PGA Tour 10
## 1531                                                       Tiger Woods PGA Tour 10
## 1532                                                       Tiger Woods PGA Tour 10
## 1533                                                       Tiger Woods PGA Tour 10
## 1534                                                       Tiger Woods PGA Tour 10
## 1535                                                           Tom Clancy's EndWar
## 1536                                                           Tom Clancy's EndWar
## 1537                                                           Tom Clancy's EndWar
## 1538                                                           Tom Clancy's EndWar
## 1539                                                           Tom Clancy's EndWar
## 1540                                                      Tomb Raider: Anniversary
## 1541                                                      Tomb Raider: Anniversary
## 1542                                                      Tomb Raider: Anniversary
## 1543                                                      Tomb Raider: Anniversary
## 1544                                                      Tomb Raider: Anniversary
## 1545                                                    Tony Hawk's Proving Ground
## 1546                                                    Tony Hawk's Proving Ground
## 1547                                                    Tony Hawk's Proving Ground
## 1548                                                    Tony Hawk's Proving Ground
## 1549                                                    Tony Hawk's Proving Ground
## 1550                                                   Toy Story 3: The Video Game
## 1551                                                   Toy Story 3: The Video Game
## 1552                                                   Toy Story 3: The Video Game
## 1553                                                   Toy Story 3: The Video Game
## 1554                                                   Toy Story 3: The Video Game
## 1555                                           Transformer: Rise of the Dark Spark
## 1556                                           Transformer: Rise of the Dark Spark
## 1557                                           Transformer: Rise of the Dark Spark
## 1558                                           Transformer: Rise of the Dark Spark
## 1559                                           Transformer: Rise of the Dark Spark
## 1560                                                     Transformers: Devastation
## 1561                                                     Transformers: Devastation
## 1562                                                     Transformers: Devastation
## 1563                                                     Transformers: Devastation
## 1564                                                     Transformers: Devastation
## 1565                Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1566                Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1567                Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1568                Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1569                Transformers: The Game (XBox 360, PS2, PS3, Wii & PC Versions)
## 1570                                                           Ultimate Spider-Man
## 1571                                                           Ultimate Spider-Man
## 1572                                                           Ultimate Spider-Man
## 1573                                                           Ultimate Spider-Man
## 1574                                                           Ultimate Spider-Man
## 1575                                           WRC 5: FIA World Rally Championship
## 1576                                           WRC 5: FIA World Rally Championship
## 1577                                           WRC 5: FIA World Rally Championship
## 1578                                           WRC 5: FIA World Rally Championship
## 1579                                           WRC 5: FIA World Rally Championship
## 1580                                                    WWE SmackDown vs. Raw 2011
## 1581                                                    WWE SmackDown vs. Raw 2011
## 1582                                                    WWE SmackDown vs. Raw 2011
## 1583                                                    WWE SmackDown vs. Raw 2011
## 1584                                                    WWE SmackDown vs. Raw 2011
## 1585                                                              Wheel of Fortune
## 1586                                                              Wheel of Fortune
## 1587                                                              Wheel of Fortune
## 1588                                                              Wheel of Fortune
## 1589                                                              Wheel of Fortune
## 1590                                     Winning Eleven: Pro Evolution Soccer 2007
## 1591                                     Winning Eleven: Pro Evolution Soccer 2007
## 1592                                     Winning Eleven: Pro Evolution Soccer 2007
## 1593                                     Winning Eleven: Pro Evolution Soccer 2007
## 1594                                     Winning Eleven: Pro Evolution Soccer 2007
## 1595                                                                     Wipeout 2
## 1596                                                                     Wipeout 2
## 1597                                                                     Wipeout 2
## 1598                                                                     Wipeout 2
## 1599                                                                     Wipeout 2
## 1600                                                    Wolfenstein: The New Order
## 1601                                                    Wolfenstein: The New Order
## 1602                                                    Wolfenstein: The New Order
## 1603                                                    Wolfenstein: The New Order
## 1604                                                    Wolfenstein: The New Order
## 1605                          World Series of Poker 2008: Battle for the Bracelets
## 1606                          World Series of Poker 2008: Battle for the Bracelets
## 1607                          World Series of Poker 2008: Battle for the Bracelets
## 1608                          World Series of Poker 2008: Battle for the Bracelets
## 1609                          World Series of Poker 2008: Battle for the Bracelets
## 1610                                              2010 FIFA World Cup South Africa
## 1611                                              2010 FIFA World Cup South Africa
## 1612                                              2010 FIFA World Cup South Africa
## 1613                                              2010 FIFA World Cup South Africa
## 1614                                              AC/DC LIVE: Rock Band Track Pack
## 1615                                              AC/DC LIVE: Rock Band Track Pack
## 1616                                              AC/DC LIVE: Rock Band Track Pack
## 1617                                              AC/DC LIVE: Rock Band Track Pack
## 1618                     Adventure Time: Explore the Dungeon Because I Don't Know!
## 1619                     Adventure Time: Explore the Dungeon Because I Don't Know!
## 1620                     Adventure Time: Explore the Dungeon Because I Don't Know!
## 1621                     Adventure Time: Explore the Dungeon Because I Don't Know!
## 1622                                                        All-Star Baseball 2003
## 1623                                                        All-Star Baseball 2003
## 1624                                                        All-Star Baseball 2003
## 1625                                                        All-Star Baseball 2003
## 1626                                                        All-Star Baseball 2004
## 1627                                                        All-Star Baseball 2004
## 1628                                                        All-Star Baseball 2004
## 1629                                                        All-Star Baseball 2004
## 1630                                                             Alone in the Dark
## 1631                                                             Alone in the Dark
## 1632                                                             Alone in the Dark
## 1633                                                             Alone in the Dark
## 1634                                                          Assassin's Creed III
## 1635                                                          Assassin's Creed III
## 1636                                                          Assassin's Creed III
## 1637                                                          Assassin's Creed III
## 1638                                                     Astro Boy: The Video Game
## 1639                                                     Astro Boy: The Video Game
## 1640                                                     Astro Boy: The Video Game
## 1641                                                     Astro Boy: The Video Game
## 1642                                                        Attack on Titan (KOEI)
## 1643                                                        Attack on Titan (KOEI)
## 1644                                                        Attack on Titan (KOEI)
## 1645                                                        Attack on Titan (KOEI)
## 1646                                                    Avatar: The Last Airbender
## 1647                                                    Avatar: The Last Airbender
## 1648                                                    Avatar: The Last Airbender
## 1649                                                    Avatar: The Last Airbender
## 1650                                Avatar: The Last Airbender - The Burning Earth
## 1651                                Avatar: The Last Airbender - The Burning Earth
## 1652                                Avatar: The Last Airbender - The Burning Earth
## 1653                                Avatar: The Last Airbender - The Burning Earth
## 1654                                                         Backyard NFL Football
## 1655                                                         Backyard NFL Football
## 1656                                                         Backyard NFL Football
## 1657                                                         Backyard NFL Football
## 1658                                                  Baldur's Gate: Dark Alliance
## 1659                                                  Baldur's Gate: Dark Alliance
## 1660                                                  Baldur's Gate: Dark Alliance
## 1661                                                  Baldur's Gate: Dark Alliance
## 1662                                           Barbie and Her Sisters Puppy Rescue
## 1663                                           Barbie and Her Sisters Puppy Rescue
## 1664                                           Barbie and Her Sisters Puppy Rescue
## 1665                                           Barbie and Her Sisters Puppy Rescue
## 1666                                                 Barbie as The Island Princess
## 1667                                                 Barbie as The Island Princess
## 1668                                                 Barbie as The Island Princess
## 1669                                                 Barbie as The Island Princess
## 1670                                                                      Barnyard
## 1671                                                                      Barnyard
## 1672                                                                      Barnyard
## 1673                                                                      Barnyard
## 1674                                                                 Batman Begins
## 1675                                                                 Batman Begins
## 1676                                                                 Batman Begins
## 1677                                                                 Batman Begins
## 1678                                                           Batman: Arkham City
## 1679                                                           Batman: Arkham City
## 1680                                                           Batman: Arkham City
## 1681                                                           Batman: Arkham City
## 1682                                                        Batman: Arkham Origins
## 1683                                                        Batman: Arkham Origins
## 1684                                                        Batman: Arkham Origins
## 1685                                                        Batman: Arkham Origins
## 1686                                                       Batman: Rise of Sin Tzu
## 1687                                                       Batman: Rise of Sin Tzu
## 1688                                                       Batman: Rise of Sin Tzu
## 1689                                                       Batman: Rise of Sin Tzu
## 1690                                                                Bee Movie Game
## 1691                                                                Bee Movie Game
## 1692                                                                Bee Movie Game
## 1693                                                                Bee Movie Game
## 1694                                                                   Bejeweled 3
## 1695                                                                   Bejeweled 3
## 1696                                                                   Bejeweled 3
## 1697                                                                   Bejeweled 3
## 1698                                                           Ben 10: Alien Force
## 1699                                                           Ben 10: Alien Force
## 1700                                                           Ben 10: Alien Force
## 1701                                                           Ben 10: Alien Force
## 1702                                                    Ben 10: Protector of Earth
## 1703                                                    Ben 10: Protector of Earth
## 1704                                                    Ben 10: Protector of Earth
## 1705                                                    Ben 10: Protector of Earth
## 1706                                                            Big Mutha Truckers
## 1707                                                            Big Mutha Truckers
## 1708                                                            Big Mutha Truckers
## 1709                                                            Big Mutha Truckers
## 1710                                                                      Bionicle
## 1711                                                                      Bionicle
## 1712                                                                      Bionicle
## 1713                                                                      Bionicle
## 1714                                                               Bionicle Heroes
## 1715                                                               Bionicle Heroes
## 1716                                                               Bionicle Heroes
## 1717                                                               Bionicle Heroes
## 1718                                             BlazBlue: Chrono Phantasma Extend
## 1719                                             BlazBlue: Chrono Phantasma Extend
## 1720                                             BlazBlue: Chrono Phantasma Extend
## 1721                                             BlazBlue: Chrono Phantasma Extend
## 1722                                                                     Bomberman
## 1723                                                                     Bomberman
## 1724                                                                     Bomberman
## 1725                                                                     Bomberman
## 1726                                                                 Borderlands 2
## 1727                                                                 Borderlands 2
## 1728                                                                 Borderlands 2
## 1729                                                                 Borderlands 2
## 1730                                                         CSI: Fatal Conspiracy
## 1731                                                         CSI: Fatal Conspiracy
## 1732                                                         CSI: Fatal Conspiracy
## 1733                                                         CSI: Fatal Conspiracy
## 1734                                      Cabela's Big Game Hunter 2005 Adventures
## 1735                                      Cabela's Big Game Hunter 2005 Adventures
## 1736                                      Cabela's Big Game Hunter 2005 Adventures
## 1737                                      Cabela's Big Game Hunter 2005 Adventures
## 1738                                                 Cabela's Dangerous Hunts 2009
## 1739                                                 Cabela's Dangerous Hunts 2009
## 1740                                                 Cabela's Dangerous Hunts 2009
## 1741                                                 Cabela's Dangerous Hunts 2009
## 1742                                                 Cabela's Dangerous Hunts 2011
## 1743                                                 Cabela's Dangerous Hunts 2011
## 1744                                                 Cabela's Dangerous Hunts 2011
## 1745                                                 Cabela's Dangerous Hunts 2011
## 1746                                            Cabela's Outdoor Adventures (2009)
## 1747                                            Cabela's Outdoor Adventures (2009)
## 1748                                            Cabela's Outdoor Adventures (2009)
## 1749                                            Cabela's Outdoor Adventures (2009)
## 1750                                                                Call of Duty 3
## 1751                                                                Call of Duty 3
## 1752                                                                Call of Duty 3
## 1753                                                                Call of Duty 3
## 1754                                                Call of Duty 4: Modern Warfare
## 1755                                                Call of Duty 4: Modern Warfare
## 1756                                                Call of Duty 4: Modern Warfare
## 1757                                                Call of Duty 4: Modern Warfare
## 1758                                                    Call of Duty: Black Ops II
## 1759                                                    Call of Duty: Black Ops II
## 1760                                                    Call of Duty: Black Ops II
## 1761                                                    Call of Duty: Black Ops II
## 1762                                                Call of Duty: Modern Warfare 3
## 1763                                                Call of Duty: Modern Warfare 3
## 1764                                                Call of Duty: Modern Warfare 3
## 1765                                                Call of Duty: Modern Warfare 3
## 1766                                         Captain Morgane and the Golden Turtle
## 1767                                         Captain Morgane and the Golden Turtle
## 1768                                         Captain Morgane and the Golden Turtle
## 1769                                         Captain Morgane and the Golden Turtle
## 1770                                             Cars: Mater-National Championship
## 1771                                             Cars: Mater-National Championship
## 1772                                             Cars: Mater-National Championship
## 1773                                             Cars: Mater-National Championship
## 1774                                                                      Catwoman
## 1775                                                                      Catwoman
## 1776                                                                      Catwoman
## 1777                                                                      Catwoman
## 1778                                                      Chaotic: Shadow Warriors
## 1779                                                      Chaotic: Shadow Warriors
## 1780                                                      Chaotic: Shadow Warriors
## 1781                                                      Chaotic: Shadow Warriors
## 1782                                             Charlie and the Chocolate Factory
## 1783                                             Charlie and the Chocolate Factory
## 1784                                             Charlie and the Chocolate Factory
## 1785                                             Charlie and the Chocolate Factory
## 1786                                                                       Clannad
## 1787                                                                       Clannad
## 1788                                                                       Clannad
## 1789                                                                       Clannad
## 1790                                                              Crash Nitro Kart
## 1791                                                              Crash Nitro Kart
## 1792                                                              Crash Nitro Kart
## 1793                                                              Crash Nitro Kart
## 1794                                                         Crash Tag Team Racing
## 1795                                                         Crash Tag Team Racing
## 1796                                                         Crash Tag Team Racing
## 1797                                                         Crash Tag Team Racing
## 1798                                                                        Create
## 1799                                                                        Create
## 1800                                                                        Create
## 1801                                                                        Create
## 1802                                                                Curious George
## 1803                                                                Curious George
## 1804                                                                Curious George
## 1805                                                                Curious George
## 1806                                                                       DJ Hero
## 1807                                                                       DJ Hero
## 1808                                                                       DJ Hero
## 1809                                                                       DJ Hero
## 1810                                                    Dave Mirra Freestyle BMX 2
## 1811                                                    Dave Mirra Freestyle BMX 2
## 1812                                                    Dave Mirra Freestyle BMX 2
## 1813                                                    Dave Mirra Freestyle BMX 2
## 1814                                                                Dead to Rights
## 1815                                                                Dead to Rights
## 1816                                                                Dead to Rights
## 1817                                                                Dead to Rights
## 1818                                                                      Deadpool
## 1819                                                                      Deadpool
## 1820                                                                      Deadpool
## 1821                                                                      Deadpool
## 1822                                                                      Defender
## 1823                                                                      Defender
## 1824                                                                      Defender
## 1825                                                                      Defender
## 1826                                                                       Destiny
## 1827                                                                       Destiny
## 1828                                                                       Destiny
## 1829                                                                       Destiny
## 1830                                                       Destiny: The Taken King
## 1831                                                       Destiny: The Taken King
## 1832                                                       Destiny: The Taken King
## 1833                                                       Destiny: The Taken King
## 1834                                                     Deus Ex: Human Revolution
## 1835                                                     Deus Ex: Human Revolution
## 1836                                                     Deus Ex: Human Revolution
## 1837                                                     Deus Ex: Human Revolution
## 1838                                                               Devil May Cry 4
## 1839                                                               Devil May Cry 4
## 1840                                                               Devil May Cry 4
## 1841                                                               Devil May Cry 4
## 1842                                                                Disney Sing It
## 1843                                                                Disney Sing It
## 1844                                                                Disney Sing It
## 1845                                                                Disney Sing It
## 1846                            Disney Sing It! High School Musical 3: Senior Year
## 1847                            Disney Sing It! High School Musical 3: Senior Year
## 1848                            Disney Sing It! High School Musical 3: Senior Year
## 1849                            Disney Sing It! High School Musical 3: Senior Year
## 1850                                                       Disney's Chicken Little
## 1851                                                       Disney's Chicken Little
## 1852                                                       Disney's Chicken Little
## 1853                                                       Disney's Chicken Little
## 1854                                          Disney's Donald Duck: Goin' Quackers
## 1855                                          Disney's Donald Duck: Goin' Quackers
## 1856                                          Disney's Donald Duck: Goin' Quackers
## 1857                                          Disney's Donald Duck: Goin' Quackers
## 1858                                              Disney's Extreme Skate Adventure
## 1859                                              Disney's Extreme Skate Adventure
## 1860                                              Disney's Extreme Skate Adventure
## 1861                                              Disney's Extreme Skate Adventure
## 1862                                                   Disney's Meet the Robinsons
## 1863                                                   Disney's Meet the Robinsons
## 1864                                                   Disney's Meet the Robinsons
## 1865                                                   Disney's Meet the Robinsons
## 1866                                                               Disney's Planes
## 1867                                                               Disney's Planes
## 1868                                                               Disney's Planes
## 1869                                                               Disney's Planes
## 1870                                                            DmC: Devil May Cry
## 1871                                                            DmC: Devil May Cry
## 1872                                                            DmC: Devil May Cry
## 1873                                                            DmC: Devil May Cry
## 1874                                                        Don Bradman Cricket 14
## 1875                                                        Don Bradman Cricket 14
## 1876                                                        Don Bradman Cricket 14
## 1877                                                        Don Bradman Cricket 14
## 1878                                                        Dragon Ball: XenoVerse
## 1879                                                        Dragon Ball: XenoVerse
## 1880                                                        Dragon Ball: XenoVerse
## 1881                                                        Dragon Ball: XenoVerse
## 1882                                                   Dreamworks Madagascar Kartz
## 1883                                                   Dreamworks Madagascar Kartz
## 1884                                                   Dreamworks Madagascar Kartz
## 1885                                                   Dreamworks Madagascar Kartz
## 1886                                                         Driver: San Francisco
## 1887                                                         Driver: San Francisco
## 1888                                                         Driver: San Francisco
## 1889                                                         Driver: San Francisco
## 1890                                                         DuckTales: Remastered
## 1891                                                         DuckTales: Remastered
## 1892                                                         DuckTales: Remastered
## 1893                                                         DuckTales: Remastered
## 1894                                                   Dynasty Warriors 8: Empires
## 1895                                                   Dynasty Warriors 8: Empires
## 1896                                                   Dynasty Warriors 8: Empires
## 1897                                                   Dynasty Warriors 8: Empires
## 1898                                            Ed, Edd n Eddy: The Mis-Edventures
## 1899                                            Ed, Edd n Eddy: The Mis-Edventures
## 1900                                            Ed, Edd n Eddy: The Mis-Edventures
## 1901                                            Ed, Edd n Eddy: The Mis-Edventures
## 1902                                               Epic Mickey 2: The Power of Two
## 1903                                               Epic Mickey 2: The Power of Two
## 1904                                               Epic Mickey 2: The Power of Two
## 1905                                               Epic Mickey 2: The Power of Two
## 1906                                                              FIFA Soccer 2003
## 1907                                                              FIFA Soccer 2003
## 1908                                                              FIFA Soccer 2003
## 1909                                                              FIFA Soccer 2003
## 1910                                                              FIFA Soccer 2004
## 1911                                                              FIFA Soccer 2004
## 1912                                                              FIFA Soccer 2004
## 1913                                                              FIFA Soccer 2004
## 1914                                                              FIFA Soccer 2005
## 1915                                                              FIFA Soccer 2005
## 1916                                                              FIFA Soccer 2005
## 1917                                                              FIFA Soccer 2005
## 1918                                                             Final Fantasy III
## 1919                                                             Final Fantasy III
## 1920                                                             Final Fantasy III
## 1921                                                             Final Fantasy III
## 1922                                                                  Finding Nemo
## 1923                                                                  Finding Nemo
## 1924                                                                  Finding Nemo
## 1925                                                                  Finding Nemo
## 1926                                                                 Ford Racing 3
## 1927                                                                 Ford Racing 3
## 1928                                                                 Ford Racing 3
## 1929                                                                 Ford Racing 3
## 1930                                                         From Russia With Love
## 1931                                                         From Russia With Love
## 1932                                                         From Russia With Love
## 1933                                                         From Russia With Love
## 1934                                                                          GRID
## 1935                                                                          GRID
## 1936                                                                          GRID
## 1937                                                                          GRID
## 1938                                                    Game of Thrones (Telltale)
## 1939                                                    Game of Thrones (Telltale)
## 1940                                                    Game of Thrones (Telltale)
## 1941                                                    Game of Thrones (Telltale)
## 1942                                                        GoldenEye: Rogue Agent
## 1943                                                        GoldenEye: Rogue Agent
## 1944                                                        GoldenEye: Rogue Agent
## 1945                                                        GoldenEye: Rogue Agent
## 1946                                                 Grand Theft Auto: San Andreas
## 1947                                                 Grand Theft Auto: San Andreas
## 1948                                                 Grand Theft Auto: San Andreas
## 1949                                                 Grand Theft Auto: San Andreas
## 1950                                                                 Guitar Hero 5
## 1951                                                                 Guitar Hero 5
## 1952                                                                 Guitar Hero 5
## 1953                                                                 Guitar Hero 5
## 1954                                                        Guitar Hero: Aerosmith
## 1955                                                        Guitar Hero: Aerosmith
## 1956                                                        Guitar Hero: Aerosmith
## 1957                                                        Guitar Hero: Aerosmith
## 1958                                                        Guitar Hero: Metallica
## 1959                                                        Guitar Hero: Metallica
## 1960                                                        Guitar Hero: Metallica
## 1961                                                        Guitar Hero: Metallica
## 1962                                                       Guitar Hero: Smash Hits
## 1963                                                       Guitar Hero: Smash Hits
## 1964                                                       Guitar Hero: Smash Hits
## 1965                                                       Guitar Hero: Smash Hits
## 1966                                                        Guitar Hero: Van Halen
## 1967                                                        Guitar Hero: Van Halen
## 1968                                                        Guitar Hero: Van Halen
## 1969                                                        Guitar Hero: Van Halen
## 1970                                                                           Gun
## 1971                                                                           Gun
## 1972                                                                           Gun
## 1973                                                                           Gun
## 1974                                                     Hannah Montana: The Movie
## 1975                                                     Hannah Montana: The Movie
## 1976                                                     Hannah Montana: The Movie
## 1977                                                     Hannah Montana: The Movie
## 1978                                             Harry Potter: Quidditch World Cup
## 1979                                             Harry Potter: Quidditch World Cup
## 1980                                             Harry Potter: Quidditch World Cup
## 1981                                             Harry Potter: Quidditch World Cup
## 1982                                                           Hitman: Blood Money
## 1983                                                           Hitman: Blood Money
## 1984                                                           Hitman: Blood Money
## 1985                                                           Hitman: Blood Money
## 1986                                                        Hot Wheels: Beat That!
## 1987                                                        Hot Wheels: Beat That!
## 1988                                                        Hot Wheels: Beat That!
## 1989                                                        Hot Wheels: Beat That!
## 1990                                                      How to Train Your Dragon
## 1991                                                      How to Train Your Dragon
## 1992                                                      How to Train Your Dragon
## 1993                                                      How to Train Your Dragon
## 1994                                                 IL-2 Sturmovik: Birds of Prey
## 1995                                                 IL-2 Sturmovik: Birds of Prey
## 1996                                                 IL-2 Sturmovik: Birds of Prey
## 1997                                                 IL-2 Sturmovik: Birds of Prey
## 1998                                          Indiana Jones and the Staff of Kings
## 1999                                          Indiana Jones and the Staff of Kings
## 2000                                          Indiana Jones and the Staff of Kings
## 2001                                          Indiana Jones and the Staff of Kings
## 2002                                                   James Bond 007: Blood Stone
## 2003                                                   James Bond 007: Blood Stone
## 2004                                                   James Bond 007: Blood Stone
## 2005                                                   James Bond 007: Blood Stone
## 2006                                         James Bond 007: Everything or Nothing
## 2007                                         James Bond 007: Everything or Nothing
## 2008                                         James Bond 007: Everything or Nothing
## 2009                                         James Bond 007: Everything or Nothing
## 2010                                                     James Bond 007: Nightfire
## 2011                                                     James Bond 007: Nightfire
## 2012                                                     James Bond 007: Nightfire
## 2013                                                     James Bond 007: Nightfire
## 2014                                                          Jurassic: The Hunted
## 2015                                                          Jurassic: The Hunted
## 2016                                                          Jurassic: The Hunted
## 2017                                                          Jurassic: The Hunted
## 2018                                                                  Just Dance 4
## 2019                                                                  Just Dance 4
## 2020                                                                  Just Dance 4
## 2021                                                                  Just Dance 4
## 2022                              Karaoke Revolution Presents American Idol Encore
## 2023                              Karaoke Revolution Presents American Idol Encore
## 2024                              Karaoke Revolution Presents American Idol Encore
## 2025                              Karaoke Revolution Presents American Idol Encore
## 2026                                                     Kelly Slater's Pro Surfer
## 2027                                                     Kelly Slater's Pro Surfer
## 2028                                                     Kelly Slater's Pro Surfer
## 2029                                                     Kelly Slater's Pro Surfer
## 2030                                                               Kung Fu Panda 2
## 2031                                                               Kung Fu Panda 2
## 2032                                                               Kung Fu Panda 2
## 2033                                                               Kung Fu Panda 2
## 2034                                                                LEGO Rock Band
## 2035                                                                LEGO Rock Band
## 2036                                                                LEGO Rock Band
## 2037                                                                LEGO Rock Band
## 2038                                             LEGO Star Wars: The Complete Saga
## 2039                                             LEGO Star Wars: The Complete Saga
## 2040                                             LEGO Star Wars: The Complete Saga
## 2041                                             LEGO Star Wars: The Complete Saga
## 2042                                                                 Legend of Kay
## 2043                                                                 Legend of Kay
## 2044                                                                 Legend of Kay
## 2045                                                                 Legend of Kay
## 2046                                 Legend of the Guardians: The Owls of Ga'Hoole
## 2047                                 Legend of the Guardians: The Owls of Ga'Hoole
## 2048                                 Legend of the Guardians: The Owls of Ga'Hoole
## 2049                                 Legend of the Guardians: The Owls of Ga'Hoole
## 2050                                                       Legends of Wrestling II
## 2051                                                       Legends of Wrestling II
## 2052                                                       Legends of Wrestling II
## 2053                                                       Legends of Wrestling II
## 2054                               Lemony Snicket's A Series of Unfortunate Events
## 2055                               Lemony Snicket's A Series of Unfortunate Events
## 2056                               Lemony Snicket's A Series of Unfortunate Events
## 2057                               Lemony Snicket's A Series of Unfortunate Events
## 2058                                                             MX vs. ATV Reflex
## 2059                                                             MX vs. ATV Reflex
## 2060                                                             MX vs. ATV Reflex
## 2061                                                             MX vs. ATV Reflex
## 2062                                                                 Madden NFL 12
## 2063                                                                 Madden NFL 12
## 2064                                                                 Madden NFL 12
## 2065                                                                 Madden NFL 12
## 2066                                                                 Madden NFL 15
## 2067                                                                 Madden NFL 15
## 2068                                                                 Madden NFL 15
## 2069                                                                 Madden NFL 15
## 2070                                                                 Madden NFL 16
## 2071                                                                 Madden NFL 16
## 2072                                                                 Madden NFL 16
## 2073                                                                 Madden NFL 16
## 2074                                                                 Madden NFL 17
## 2075                                                                 Madden NFL 17
## 2076                                                                 Madden NFL 17
## 2077                                                                 Madden NFL 17
## 2078                                                               Madden NFL 2003
## 2079                                                               Madden NFL 2003
## 2080                                                               Madden NFL 2003
## 2081                                                               Madden NFL 2003
## 2082                                                               Madden NFL 2004
## 2083                                                               Madden NFL 2004
## 2084                                                               Madden NFL 2004
## 2085                                                               Madden NFL 2004
## 2086                                                                 Madden NFL 25
## 2087                                                                 Madden NFL 25
## 2088                                                                 Madden NFL 25
## 2089                                                                 Madden NFL 25
## 2090                                                     Major League Baseball 2K7
## 2091                                                     Major League Baseball 2K7
## 2092                                                     Major League Baseball 2K7
## 2093                                                     Major League Baseball 2K7
## 2094                                                                  Mario Tennis
## 2095                                                                  Mario Tennis
## 2096                                                                  Mario Tennis
## 2097                                                                  Mario Tennis
## 2098                                                       Marvel Super Hero Squad
## 2099                                                       Marvel Super Hero Squad
## 2100                                                       Marvel Super Hero Squad
## 2101                                                       Marvel Super Hero Squad
## 2102                                                                 Mass Effect 3
## 2103                                                                 Mass Effect 3
## 2104                                                                 Mass Effect 3
## 2105                                                                 Mass Effect 3
## 2106                                                       Mat Hoffman's Pro BMX 2
## 2107                                                       Mat Hoffman's Pro BMX 2
## 2108                                                       Mat Hoffman's Pro BMX 2
## 2109                                                       Mat Hoffman's Pro BMX 2
## 2110                                                                     Max Payne
## 2111                                                                     Max Payne
## 2112                                                                     Max Payne
## 2113                                                                     Max Payne
## 2114                                                                Medal of Honor
## 2115                                                                Medal of Honor
## 2116                                                                Medal of Honor
## 2117                                                                Medal of Honor
## 2118                                             Metal Gear Solid V: Ground Zeroes
## 2119                                             Metal Gear Solid V: Ground Zeroes
## 2120                                             Metal Gear Solid V: Ground Zeroes
## 2121                                             Metal Gear Solid V: Ground Zeroes
## 2122                                               Minority Report: Everybody Runs
## 2123                                               Minority Report: Everybody Runs
## 2124                                               Minority Report: Everybody Runs
## 2125                                               Minority Report: Everybody Runs
## 2126                                         Mission: Impossible - Operation Surma
## 2127                                         Mission: Impossible - Operation Surma
## 2128                                         Mission: Impossible - Operation Surma
## 2129                                         Mission: Impossible - Operation Surma
## 2130                                             Monster High: New Ghoul in School
## 2131                                             Monster High: New Ghoul in School
## 2132                                             Monster High: New Ghoul in School
## 2133                                             Monster High: New Ghoul in School
## 2134                                                                 Monster House
## 2135                                                                 Monster House
## 2136                                                                 Monster House
## 2137                                                                 Monster House
## 2138                                                    Monster Jam: Urban Assault
## 2139                                                    Monster Jam: Urban Assault
## 2140                                                    Monster Jam: Urban Assault
## 2141                                                    Monster Jam: Urban Assault
## 2142                                                Mortal Kombat: Deadly Alliance
## 2143                                                Mortal Kombat: Deadly Alliance
## 2144                                                Mortal Kombat: Deadly Alliance
## 2145                                                Mortal Kombat: Deadly Alliance
## 2146                                                                     MotoGP 14
## 2147                                                                     MotoGP 14
## 2148                                                                     MotoGP 14
## 2149                                                                     MotoGP 14
## 2150                                                                     MotoGP 15
## 2151                                                                     MotoGP 15
## 2152                                                                     MotoGP 15
## 2153                                                                     MotoGP 15
## 2154                                                              MySims SkyHeroes
## 2155                                                              MySims SkyHeroes
## 2156                                                              MySims SkyHeroes
## 2157                                                              MySims SkyHeroes
## 2158                                                              NASCAR Unleashed
## 2159                                                              NASCAR Unleashed
## 2160                                                              NASCAR Unleashed
## 2161                                                              NASCAR Unleashed
## 2162                                                                      NBA 2K14
## 2163                                                                      NBA 2K14
## 2164                                                                      NBA 2K14
## 2165                                                                      NBA 2K14
## 2166                                                                      NBA 2K15
## 2167                                                                      NBA 2K15
## 2168                                                                      NBA 2K15
## 2169                                                                      NBA 2K15
## 2170                                                                      NBA 2K17
## 2171                                                                      NBA 2K17
## 2172                                                                      NBA 2K17
## 2173                                                                      NBA 2K17
## 2174                                                                       NBA 2K7
## 2175                                                                       NBA 2K7
## 2176                                                                       NBA 2K7
## 2177                                                                       NBA 2K7
## 2178                                                                   NBA Live 06
## 2179                                                                   NBA Live 06
## 2180                                                                   NBA Live 06
## 2181                                                                   NBA Live 06
## 2182                                                                   NBA Live 07
## 2183                                                                   NBA Live 07
## 2184                                                                   NBA Live 07
## 2185                                                                   NBA Live 07
## 2186                                                                   NBA Live 09
## 2187                                                                   NBA Live 09
## 2188                                                                   NBA Live 09
## 2189                                                                   NBA Live 09
## 2190                                                              NCAA Football 07
## 2191                                                              NCAA Football 07
## 2192                                                              NCAA Football 07
## 2193                                                              NCAA Football 07
## 2194                                                              NCAA Football 08
## 2195                                                              NCAA Football 08
## 2196                                                              NCAA Football 08
## 2197                                                              NCAA Football 08
## 2198                                                              NCAA Football 09
## 2199                                                              NCAA Football 09
## 2200                                                              NCAA Football 09
## 2201                                                              NCAA Football 09
## 2202                                                              NCAA Football 10
## 2203                                                              NCAA Football 10
## 2204                                                              NCAA Football 10
## 2205                                                              NCAA Football 10
## 2206                                                                          NCIS
## 2207                                                                          NCIS
## 2208                                                                          NCIS
## 2209                                                                          NCIS
## 2210                                                                        NHL 07
## 2211                                                                        NHL 07
## 2212                                                                        NHL 07
## 2213                                                                        NHL 07
## 2214                                                                        NHL 09
## 2215                                                                        NHL 09
## 2216                                                                        NHL 09
## 2217                                                                        NHL 09
## 2218                                                                        NHL 15
## 2219                                                                        NHL 15
## 2220                                                                        NHL 15
## 2221                                                                        NHL 15
## 2222                                                                        NHL 16
## 2223                                                                        NHL 16
## 2224                                                                        NHL 16
## 2225                                                                        NHL 16
## 2226                                                                      NHL 2K10
## 2227                                                                      NHL 2K10
## 2228                                                                      NHL 2K10
## 2229                                                                      NHL 2K10
## 2230                                                                       NHL 2K9
## 2231                                                                       NHL 2K9
## 2232                                                                       NHL 2K9
## 2233                                                                       NHL 2K9
## 2234                                             NPPL: Championship Paintball 2009
## 2235                                             NPPL: Championship Paintball 2009
## 2236                                             NPPL: Championship Paintball 2009
## 2237                                             NPPL: Championship Paintball 2009
## 2238                                                                  Namco Museum
## 2239                                                                  Namco Museum
## 2240                                                                  Namco Museum
## 2241                                                                  Namco Museum
## 2242                                                Namco Museum: 50th Anniversary
## 2243                                                Namco Museum: 50th Anniversary
## 2244                                                Namco Museum: 50th Anniversary
## 2245                                                Namco Museum: 50th Anniversary
## 2246                                                   Need for Speed: Hot Pursuit
## 2247                                                   Need for Speed: Hot Pursuit
## 2248                                                   Need for Speed: Hot Pursuit
## 2249                                                   Need for Speed: Hot Pursuit
## 2250                                                         Need for Speed: Shift
## 2251                                                         Need for Speed: Shift
## 2252                                                         Need for Speed: Shift
## 2253                                                         Need for Speed: Shift
## 2254                                                One Piece: Unlimited World Red
## 2255                                                One Piece: Unlimited World Red
## 2256                                                One Piece: Unlimited World Red
## 2257                                                One Piece: Unlimited World Red
## 2258                                            PAC-MAN and the Ghostly Adventures
## 2259                                            PAC-MAN and the Ghostly Adventures
## 2260                                            PAC-MAN and the Ghostly Adventures
## 2261                                            PAC-MAN and the Ghostly Adventures
## 2262                                                               Pac-Man World 2
## 2263                                                               Pac-Man World 2
## 2264                                                               Pac-Man World 2
## 2265                                                               Pac-Man World 2
## 2266                                          Pac-Man and the Ghostly Adventures 2
## 2267                                          Pac-Man and the Ghostly Adventures 2
## 2268                                          Pac-Man and the Ghostly Adventures 2
## 2269                                          Pac-Man and the Ghostly Adventures 2
## 2270                                                  Pitfall: The Lost Expedition
## 2271                                                  Pitfall: The Lost Expedition
## 2272                                                  Pitfall: The Lost Expedition
## 2273                                                  Pitfall: The Lost Expedition
## 2274                                                                     Planet 51
## 2275                                                                     Planet 51
## 2276                                                                     Planet 51
## 2277                                                                     Planet 51
## 2278                                                            Plants vs. Zombies
## 2279                                                            Plants vs. Zombies
## 2280                                                            Plants vs. Zombies
## 2281                                                            Plants vs. Zombies
## 2282                                           Prince of Persia: The Sands of Time
## 2283                                           Prince of Persia: The Sands of Time
## 2284                                           Prince of Persia: The Sands of Time
## 2285                                           Prince of Persia: The Sands of Time
## 2286                                                                 Puss in Boots
## 2287                                                                 Puss in Boots
## 2288                                                                 Puss in Boots
## 2289                                                                 Puss in Boots
## 2290                                                              Puyo Puyo Tetris
## 2291                                                              Puyo Puyo Tetris
## 2292                                                              Puyo Puyo Tetris
## 2293                                                              Puyo Puyo Tetris
## 2294                                       Puzzle Quest: Challenge of the Warlords
## 2295                                       Puzzle Quest: Challenge of the Warlords
## 2296                                       Puzzle Quest: Challenge of the Warlords
## 2297                                       Puzzle Quest: Challenge of the Warlords
## 2298                                                         Rango: The Video Game
## 2299                                                         Rango: The Video Game
## 2300                                                         Rango: The Video Game
## 2301                                                         Rango: The Video Game
## 2302                                                       Rayman 3: Hoodlum Havoc
## 2303                                                       Rayman 3: Hoodlum Havoc
## 2304                                                       Rayman 3: Hoodlum Havoc
## 2305                                                       Rayman 3: Hoodlum Havoc
## 2306                                                         Rayman Raving Rabbids
## 2307                                                         Rayman Raving Rabbids
## 2308                                                         Rayman Raving Rabbids
## 2309                                                         Rayman Raving Rabbids
## 2310                                                                 Reign of Fire
## 2311                                                                 Reign of Fire
## 2312                                                                 Reign of Fire
## 2313                                                                 Reign of Fire
## 2314                                                               Resident Evil 4
## 2315                                                               Resident Evil 4
## 2316                                                               Resident Evil 4
## 2317                                                               Resident Evil 4
## 2318                                                            Resident Evil Zero
## 2319                                                            Resident Evil Zero
## 2320                                                            Resident Evil Zero
## 2321                                                            Resident Evil Zero
## 2322                                                                           Rio
## 2323                                                                           Rio
## 2324                                                                           Rio
## 2325                                                                           Rio
## 2326                                                          Risen 3: Titan Lords
## 2327                                                          Risen 3: Titan Lords
## 2328                                                          Risen 3: Titan Lords
## 2329                                                          Risen 3: Titan Lords
## 2330                                                                        Robots
## 2331                                                                        Robots
## 2332                                                                        Robots
## 2333                                                                        Robots
## 2334                                                                     Rock Band
## 2335                                                                     Rock Band
## 2336                                                                     Rock Band
## 2337                                                                     Rock Band
## 2338                                                                   Rock Band 2
## 2339                                                                   Rock Band 2
## 2340                                                                   Rock Band 2
## 2341                                                                   Rock Band 2
## 2342                                                                   Rock Band 3
## 2343                                                                   Rock Band 3
## 2344                                                                   Rock Band 3
## 2345                                                                   Rock Band 3
## 2346                                                  Rock Band Country Track Pack
## 2347                                                  Rock Band Country Track Pack
## 2348                                                  Rock Band Country Track Pack
## 2349                                                  Rock Band Country Track Pack
## 2350                                                 Rock Band Track Pack Volume 2
## 2351                                                 Rock Band Track Pack Volume 2
## 2352                                                 Rock Band Track Pack Volume 2
## 2353                                                 Rock Band Track Pack Volume 2
## 2354                                            Rock Band Track Pack: Classic Rock
## 2355                                            Rock Band Track Pack: Classic Rock
## 2356                                            Rock Band Track Pack: Classic Rock
## 2357                                            Rock Band Track Pack: Classic Rock
## 2358                                                   Rock Band: Metal Track Pack
## 2359                                                   Rock Band: Metal Track Pack
## 2360                                                   Rock Band: Metal Track Pack
## 2361                                                   Rock Band: Metal Track Pack
## 2362                                                               Rock Revolution
## 2363                                                               Rock Revolution
## 2364                                                               Rock Revolution
## 2365                                                               Rock Revolution
## 2366                                                             Rugby Challenge 3
## 2367                                                             Rugby Challenge 3
## 2368                                                             Rugby Challenge 3
## 2369                                                             Rugby Challenge 3
## 2370                                                           Rugby League Live 3
## 2371                                                           Rugby League Live 3
## 2372                                                           Rugby League Live 3
## 2373                                                           Rugby League Live 3
## 2374                                              SBK Superbike World Championship
## 2375                                              SBK Superbike World Championship
## 2376                                              SBK Superbike World Championship
## 2377                                              SBK Superbike World Championship
## 2378                              SCORE International Baja 1000: The Official Game
## 2379                              SCORE International Baja 1000: The Official Game
## 2380                              SCORE International Baja 1000: The Official Game
## 2381                              SCORE International Baja 1000: The Official Game
## 2382                                                                         SSX 3
## 2383                                                                         SSX 3
## 2384                                                                         SSX 3
## 2385                                                                         SSX 3
## 2386                                                                   SSX On Tour
## 2387                                                                   SSX On Tour
## 2388                                                                   SSX On Tour
## 2389                                                                   SSX On Tour
## 2390                                                                    SSX Tricky
## 2391                                                                    SSX Tricky
## 2392                                                                    SSX Tricky
## 2393                                                                    SSX Tricky
## 2394                                                  Scarface: The World is Yours
## 2395                                                  Scarface: The World is Yours
## 2396                                                  Scarface: The World is Yours
## 2397                                                  Scarface: The World is Yours
## 2398                                                    Scooby-Doo! Mystery Mayhem
## 2399                                                    Scooby-Doo! Mystery Mayhem
## 2400                                                    Scooby-Doo! Mystery Mayhem
## 2401                                                    Scooby-Doo! Mystery Mayhem
## 2402                                                               Sega Rally Revo
## 2403                                                               Sega Rally Revo
## 2404                                                               Sega Rally Revo
## 2405                                                               Sega Rally Revo
## 2406                                                                    Shark Tale
## 2407                                                                    Shark Tale
## 2408                                                                    Shark Tale
## 2409                                                                    Shark Tale
## 2410                                                     Shaun White Skateboarding
## 2411                                                     Shaun White Skateboarding
## 2412                                                     Shaun White Skateboarding
## 2413                                                     Shaun White Skateboarding
## 2414                                                          Shrek: Forever After
## 2415                                                          Shrek: Forever After
## 2416                                                          Shrek: Forever After
## 2417                                                          Shrek: Forever After
## 2418                                                                  Sniper Elite
## 2419                                                                  Sniper Elite
## 2420                                                                  Sniper Elite
## 2421                                                                  Sniper Elite
## 2422                                                                Sniper Elite 3
## 2423                                                                Sniper Elite 3
## 2424                                                                Sniper Elite 3
## 2425                                                                Sniper Elite 3
## 2426                                                             Sonic Generations
## 2427                                                             Sonic Generations
## 2428                                                             Sonic Generations
## 2429                                                             Sonic Generations
## 2430                                                               Sonic Unleashed
## 2431                                                               Sonic Unleashed
## 2432                                                               Sonic Unleashed
## 2433                                                               Sonic Unleashed
## 2434                                                            Sonic the Hedgehog
## 2435                                                            Sonic the Hedgehog
## 2436                                                            Sonic the Hedgehog
## 2437                                                            Sonic the Hedgehog
## 2438                                                                  Space Chimps
## 2439                                                                  Space Chimps
## 2440                                                                  Space Chimps
## 2441                                                                  Space Chimps
## 2442                                                                Space Invaders
## 2443                                                                Space Invaders
## 2444                                                                Space Invaders
## 2445                                                                Space Invaders
## 2446                                              Spider-Man: Shattered Dimensions
## 2447                                              Spider-Man: Shattered Dimensions
## 2448                                              Spider-Man: Shattered Dimensions
## 2449                                              Spider-Man: Shattered Dimensions
## 2450                                                         Spider-Man: The Movie
## 2451                                                         Spider-Man: The Movie
## 2452                                                         Spider-Man: The Movie
## 2453                                                         Spider-Man: The Movie
## 2454                                                                  Split/Second
## 2455                                                                  Split/Second
## 2456                                                                  Split/Second
## 2457                                                                  Split/Second
## 2458                               SpongeBob SquarePants: Battle for Bikini Bottom
## 2459                               SpongeBob SquarePants: Battle for Bikini Bottom
## 2460                               SpongeBob SquarePants: Battle for Bikini Bottom
## 2461                               SpongeBob SquarePants: Battle for Bikini Bottom
## 2462                                 SpongeBob SquarePants: Lights, Camera, Pants!
## 2463                                 SpongeBob SquarePants: Lights, Camera, Pants!
## 2464                                 SpongeBob SquarePants: Lights, Camera, Pants!
## 2465                                 SpongeBob SquarePants: Lights, Camera, Pants!
## 2466                                        SpongeBob's Truth or Square (US sales)
## 2467                                        SpongeBob's Truth or Square (US sales)
## 2468                                        SpongeBob's Truth or Square (US sales)
## 2469                                        SpongeBob's Truth or Square (US sales)
## 2470                                    Star Wars Episode III: Revenge of the Sith
## 2471                                    Star Wars Episode III: Revenge of the Sith
## 2472                                    Star Wars Episode III: Revenge of the Sith
## 2473                                    Star Wars Episode III: Revenge of the Sith
## 2474                                                     Star Wars: Battlefront II
## 2475                                                     Star Wars: Battlefront II
## 2476                                                     Star Wars: Battlefront II
## 2477                                                     Star Wars: Battlefront II
## 2478                                                               Starsky & Hutch
## 2479                                                               Starsky & Hutch
## 2480                                                               Starsky & Hutch
## 2481                                                               Starsky & Hutch
## 2482                                                                   Steins;Gate
## 2483                                                                   Steins;Gate
## 2484                                                                   Steins;Gate
## 2485                                                                   Steins;Gate
## 2486                                                       Street Fighter X Tekken
## 2487                                                       Street Fighter X Tekken
## 2488                                                       Street Fighter X Tekken
## 2489                                                       Street Fighter X Tekken
## 2490                                                                          TMNT
## 2491                                                                          TMNT
## 2492                                                                          TMNT
## 2493                                                                          TMNT
## 2494                                                                   TNA iMPACT!
## 2495                                                                   TNA iMPACT!
## 2496                                                                   TNA iMPACT!
## 2497                                                                   TNA iMPACT!
## 2498                                                    Tak 2: The Staff of Dreams
## 2499                                                    Tak 2: The Staff of Dreams
## 2500                                                    Tak 2: The Staff of Dreams
## 2501                                                    Tak 2: The Staff of Dreams
## 2502                                                 Tak: The Great Juju Challenge
## 2503                                                 Tak: The Great Juju Challenge
## 2504                                                 Tak: The Great Juju Challenge
## 2505                                                 Tak: The Great Juju Challenge
## 2506                                  Teenage Mutant Ninja Turtles 2: Battle Nexus
## 2507                                  Teenage Mutant Ninja Turtles 2: Battle Nexus
## 2508                                  Teenage Mutant Ninja Turtles 2: Battle Nexus
## 2509                                  Teenage Mutant Ninja Turtles 2: Battle Nexus
## 2510                              Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 2511                              Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 2512                              Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 2513                              Teenage Mutant Ninja Turtles 3: Mutant Nightmare
## 2514                            Teenage Mutant Ninja Turtles: Mutants in Manhattan
## 2515                            Teenage Mutant Ninja Turtles: Mutants in Manhattan
## 2516                            Teenage Mutant Ninja Turtles: Mutants in Manhattan
## 2517                            Teenage Mutant Ninja Turtles: Mutants in Manhattan
## 2518                                            The Adventures of Tintin: The Game
## 2519                                            The Adventures of Tintin: The Game
## 2520                                            The Adventures of Tintin: The Game
## 2521                                            The Adventures of Tintin: The Game
## 2522                                                                 The Ant Bully
## 2523                                                                 The Ant Bully
## 2524                                                                 The Ant Bully
## 2525                                                                 The Ant Bully
## 2526                                                                      The Crew
## 2527                                                                      The Crew
## 2528                                                                      The Crew
## 2529                                                                      The Crew
## 2530                                                The Croods: Prehistoric Party!
## 2531                                                The Croods: Prehistoric Party!
## 2532                                                The Croods: Prehistoric Party!
## 2533                                                The Croods: Prehistoric Party!
## 2534                                                                    The Hobbit
## 2535                                                                    The Hobbit
## 2536                                                                    The Hobbit
## 2537                                                                    The Hobbit
## 2538                                               The Lord of the Rings: Conquest
## 2539                                               The Lord of the Rings: Conquest
## 2540                                               The Lord of the Rings: Conquest
## 2541                                               The Lord of the Rings: Conquest
## 2542                                 The Lord of the Rings: The Return of the King
## 2543                                 The Lord of the Rings: The Return of the King
## 2544                                 The Lord of the Rings: The Return of the King
## 2545                                 The Lord of the Rings: The Return of the King
## 2546                                         The Lord of the Rings: The Two Towers
## 2547                                         The Lord of the Rings: The Two Towers
## 2548                                         The Lord of the Rings: The Two Towers
## 2549                                         The Lord of the Rings: The Two Towers
## 2550                     The Penguins of Madagascar: Dr. Blowhole Returns - Again!
## 2551                     The Penguins of Madagascar: Dr. Blowhole Returns - Again!
## 2552                     The Penguins of Madagascar: Dr. Blowhole Returns - Again!
## 2553                     The Penguins of Madagascar: Dr. Blowhole Returns - Again!
## 2554                                   The Secret Saturdays: Beasts of the 5th Sun
## 2555                                   The Secret Saturdays: Beasts of the 5th Sun
## 2556                                   The Secret Saturdays: Beasts of the 5th Sun
## 2557                                   The Secret Saturdays: Beasts of the 5th Sun
## 2558                                                       The Simpsons: Road Rage
## 2559                                                       The Simpsons: Road Rage
## 2560                                                       The Simpsons: Road Rage
## 2561                                                       The Simpsons: Road Rage
## 2562                                                                      The Sims
## 2563                                                                      The Sims
## 2564                                                                      The Sims
## 2565                                                                      The Sims
## 2566                                                          The Sims 2: Castaway
## 2567                                                          The Sims 2: Castaway
## 2568                                                          The Sims 2: Castaway
## 2569                                                          The Sims 2: Castaway
## 2570                                                         The Sims: Bustin' Out
## 2571                                                         The Sims: Bustin' Out
## 2572                                                         The Sims: Bustin' Out
## 2573                                                         The Sims: Bustin' Out
## 2574                                               The SpongeBob SquarePants Movie
## 2575                                               The SpongeBob SquarePants Movie
## 2576                                               The SpongeBob SquarePants Movie
## 2577                                               The SpongeBob SquarePants Movie
## 2578                                                    The Urbz: Sims in the City
## 2579                                                    The Urbz: Sims in the City
## 2580                                                    The Urbz: Sims in the City
## 2581                                                    The Urbz: Sims in the City
## 2582                                                       Tiger Woods PGA Tour 09
## 2583                                                       Tiger Woods PGA Tour 09
## 2584                                                       Tiger Woods PGA Tour 09
## 2585                                                       Tiger Woods PGA Tour 09
## 2586                                                     Tiger Woods PGA Tour 2004
## 2587                                                     Tiger Woods PGA Tour 2004
## 2588                                                     Tiger Woods PGA Tour 2004
## 2589                                                     Tiger Woods PGA Tour 2004
## 2590                                                     Tiger Woods PGA Tour 2005
## 2591                                                     Tiger Woods PGA Tour 2005
## 2592                                                     Tiger Woods PGA Tour 2005
## 2593                                                     Tiger Woods PGA Tour 2005
## 2594                                                      Tom Clancy's Ghost Recon
## 2595                                                      Tom Clancy's Ghost Recon
## 2596                                                      Tom Clancy's Ghost Recon
## 2597                                                      Tom Clancy's Ghost Recon
## 2598                                                           Tom Clancy's HAWX 2
## 2599                                                           Tom Clancy's HAWX 2
## 2600                                                           Tom Clancy's HAWX 2
## 2601                                                           Tom Clancy's HAWX 2
## 2602                                                    Tom Clancy's Splinter Cell
## 2603                                                    Tom Clancy's Splinter Cell
## 2604                                                    Tom Clancy's Splinter Cell
## 2605                                                    Tom Clancy's Splinter Cell
## 2606                                         Tom Clancy's Splinter Cell: Blacklist
## 2607                                         Tom Clancy's Splinter Cell: Blacklist
## 2608                                         Tom Clancy's Splinter Cell: Blacklist
## 2609                                         Tom Clancy's Splinter Cell: Blacklist
## 2610                                      Tom Clancy's Splinter Cell: Chaos Theory
## 2611                                      Tom Clancy's Splinter Cell: Chaos Theory
## 2612                                      Tom Clancy's Splinter Cell: Chaos Theory
## 2613                                      Tom Clancy's Splinter Cell: Chaos Theory
## 2614                                      Tom Clancy's Splinter Cell: Double Agent
## 2615                                      Tom Clancy's Splinter Cell: Double Agent
## 2616                                      Tom Clancy's Splinter Cell: Double Agent
## 2617                                      Tom Clancy's Splinter Cell: Double Agent
## 2618                                  Tom Clancy's Splinter Cell: Pandora Tomorrow
## 2619                                  Tom Clancy's Splinter Cell: Pandora Tomorrow
## 2620                                  Tom Clancy's Splinter Cell: Pandora Tomorrow
## 2621                                  Tom Clancy's Splinter Cell: Pandora Tomorrow
## 2622                                                            Tomb Raider (2013)
## 2623                                                            Tomb Raider (2013)
## 2624                                                            Tomb Raider (2013)
## 2625                                                            Tomb Raider (2013)
## 2626                                                      Tony Hawk's Pro Skater 4
## 2627                                                      Tony Hawk's Pro Skater 4
## 2628                                                      Tony Hawk's Pro Skater 4
## 2629                                                      Tony Hawk's Pro Skater 4
## 2630                                                      Tony Hawk's Pro Skater 5
## 2631                                                      Tony Hawk's Pro Skater 5
## 2632                                                      Tony Hawk's Pro Skater 5
## 2633                                                      Tony Hawk's Pro Skater 5
## 2634                                                         Tony Hawk's Project 8
## 2635                                                         Tony Hawk's Project 8
## 2636                                                         Tony Hawk's Project 8
## 2637                                                         Tony Hawk's Project 8
## 2638                                                       Tony Hawk's Underground
## 2639                                                       Tony Hawk's Underground
## 2640                                                       Tony Hawk's Underground
## 2641                                                       Tony Hawk's Underground
## 2642                                                     Tony Hawk's Underground 2
## 2643                                                     Tony Hawk's Underground 2
## 2644                                                     Tony Hawk's Underground 2
## 2645                                                     Tony Hawk's Underground 2
## 2646                                                                    Top Spin 3
## 2647                                                                    Top Spin 3
## 2648                                                                    Top Spin 3
## 2649                                                                    Top Spin 3
## 2650                                                Transformers: Dark of the Moon
## 2651                                                Transformers: Dark of the Moon
## 2652                                                Transformers: Dark of the Moon
## 2653                                                Transformers: Dark of the Moon
## 2654                                                               Trivial Pursuit
## 2655                                                               Trivial Pursuit
## 2656                                                               Trivial Pursuit
## 2657                                                               Trivial Pursuit
## 2658                                                              Turok: Evolution
## 2659                                                              Turok: Evolution
## 2660                                                              Turok: Evolution
## 2661                                                              Turok: Evolution
## 2662                                         Ty the Tasmanian Tiger 2: Bush Rescue
## 2663                                         Ty the Tasmanian Tiger 2: Bush Rescue
## 2664                                         Ty the Tasmanian Tiger 2: Bush Rescue
## 2665                                         Ty the Tasmanian Tiger 2: Bush Rescue
## 2666                                Ty the Tasmanian Tiger 3: Night of the Quinkan
## 2667                                Ty the Tasmanian Tiger 3: Night of the Quinkan
## 2668                                Ty the Tasmanian Tiger 3: Night of the Quinkan
## 2669                                Ty the Tasmanian Tiger 3: Night of the Quinkan
## 2670                                            UEFA Euro 2008 Austria-Switzerland
## 2671                                            UEFA Euro 2008 Austria-Switzerland
## 2672                                            UEFA Euro 2008 Austria-Switzerland
## 2673                                            UEFA Euro 2008 Austria-Switzerland
## 2674                                                               Virtua Tennis 3
## 2675                                                               Virtua Tennis 3
## 2676                                                               Virtua Tennis 3
## 2677                                                               Virtua Tennis 3
## 2678                                                               Virtua Tennis 4
## 2679                                                               Virtua Tennis 4
## 2680                                                               Virtua Tennis 4
## 2681                                                               Virtua Tennis 4
## 2682                                             WRC: FIA World Rally Championship
## 2683                                             WRC: FIA World Rally Championship
## 2684                                             WRC: FIA World Rally Championship
## 2685                                             WRC: FIA World Rally Championship
## 2686                                                                      WWE 2K15
## 2687                                                                      WWE 2K15
## 2688                                                                      WWE 2K15
## 2689                                                                      WWE 2K15
## 2690                                                                      WWE 2K16
## 2691                                                                      WWE 2K16
## 2692                                                                      WWE 2K16
## 2693                                                                      WWE 2K16
## 2694                                                     Where the Wild Things Are
## 2695                                                     Where the Wild Things Are
## 2696                                                     Where the Wild Things Are
## 2697                                                     Where the Wild Things Are
## 2698                                           Winter Sports 2: The Next Challenge
## 2699                                           Winter Sports 2: The Next Challenge
## 2700                                           Winter Sports 2: The Next Challenge
## 2701                                           Winter Sports 2: The Next Challenge
## 2702                                                            WipeOut 3 The Game
## 2703                                                            WipeOut 3 The Game
## 2704                                                            WipeOut 3 The Game
## 2705                                                            WipeOut 3 The Game
## 2706                                                              World Poker Tour
## 2707                                                              World Poker Tour
## 2708                                                              World Poker Tour
## 2709                                                              World Poker Tour
## 2710                                                         World Series of Poker
## 2711                                                         World Series of Poker
## 2712                                                         World Series of Poker
## 2713                                                         World Series of Poker
## 2714                   World Series of Poker: Tournament of Champions 2007 Edition
## 2715                   World Series of Poker: Tournament of Champions 2007 Edition
## 2716                   World Series of Poker: Tournament of Champions 2007 Edition
## 2717                   World Series of Poker: Tournament of Champions 2007 Edition
## 2718                                          X-Men Legends II: Rise of Apocalypse
## 2719                                          X-Men Legends II: Rise of Apocalypse
## 2720                                          X-Men Legends II: Rise of Apocalypse
## 2721                                          X-Men Legends II: Rise of Apocalypse
## 2722                                                      X-Men Origins: Wolverine
## 2723                                                      X-Men Origins: Wolverine
## 2724                                                      X-Men Origins: Wolverine
## 2725                                                      X-Men Origins: Wolverine
## 2726                                                                X-Men: Destiny
## 2727                                                                X-Men: Destiny
## 2728                                                                X-Men: Destiny
## 2729                                                                X-Men: Destiny
## 2730                                                       X2: Wolverine's Revenge
## 2731                                                       X2: Wolverine's Revenge
## 2732                                                       X2: Wolverine's Revenge
## 2733                                                       X2: Wolverine's Revenge
## 2734                                                         Young Justice: Legacy
## 2735                                                         Young Justice: Legacy
## 2736                                                         Young Justice: Legacy
## 2737                                                         Young Justice: Legacy
## 2738                                                   Zapper: One Wicked Cricket!
## 2739                                                   Zapper: One Wicked Cricket!
## 2740                                                   Zapper: One Wicked Cricket!
## 2741                                                   Zapper: One Wicked Cricket!
## 2742                                                                     de Blob 2
## 2743                                                                     de Blob 2
## 2744                                                                     de Blob 2
## 2745                                                                     de Blob 2
## 2746                                                           2002 FIFA World Cup
## 2747                                                           2002 FIFA World Cup
## 2748                                                           2002 FIFA World Cup
## 2749                                                  428: Fuusa Sareta Shibuya de
## 2750                                                  428: Fuusa Sareta Shibuya de
## 2751                                                  428: Fuusa Sareta Shibuya de
## 2752                                                          50 Cent: Bulletproof
## 2753                                                          50 Cent: Bulletproof
## 2754                                                          50 Cent: Bulletproof
## 2755                                                       AKB1/149: Love Election
## 2756                                                       AKB1/149: Love Election
## 2757                                                       AKB1/149: Love Election
## 2758                                                       ATV Quad Power Racing 2
## 2759                                                       ATV Quad Power Racing 2
## 2760                                                       ATV Quad Power Racing 2
## 2761                                            Aegis of Earth: Protonovus Assault
## 2762                                            Aegis of Earth: Protonovus Assault
## 2763                                            Aegis of Earth: Protonovus Assault
## 2764                                                             Aggressive Inline
## 2765                                                             Aggressive Inline
## 2766                                                             Aggressive Inline
## 2767                                                    Air Conflicts: Secret Wars
## 2768                                                    Air Conflicts: Secret Wars
## 2769                                                    Air Conflicts: Secret Wars
## 2770                                              Akiba's Trip: Undead & Undressed
## 2771                                              Akiba's Trip: Undead & Undressed
## 2772                                              Akiba's Trip: Undead & Undressed
## 2773                                                        Alice: Madness Returns
## 2774                                                        Alice: Madness Returns
## 2775                                                        Alice: Madness Returns
## 2776                                                            Aliens vs Predator
## 2777                                                            Aliens vs Predator
## 2778                                                            Aliens vs Predator
## 2779                                                      Aliens: Colonial Marines
## 2780                                                      Aliens: Colonial Marines
## 2781                                                      Aliens: Colonial Marines
## 2782                                                                Alpha Protocol
## 2783                                                                Alpha Protocol
## 2784                                                                Alpha Protocol
## 2785                                                       Alvin and the Chipmunks
## 2786                                                       Alvin and the Chipmunks
## 2787                                                       Alvin and the Chipmunks
## 2788                                          Alvin and the Chipmunks: Chipwrecked
## 2789                                          Alvin and the Chipmunks: Chipwrecked
## 2790                                          Alvin and the Chipmunks: Chipwrecked
## 2791                                                                       Amagami
## 2792                                                                       Amagami
## 2793                                                                       Amagami
## 2794                                             American Chopper 2: Full Throttle
## 2795                                             American Chopper 2: Full Throttle
## 2796                                             American Chopper 2: Full Throttle
## 2797                                                           Angry Birds Trilogy
## 2798                                                           Angry Birds Trilogy
## 2799                                                           Angry Birds Trilogy
## 2800                                                           Apache: Air Assault
## 2801                                                           Apache: Air Assault
## 2802                                                           Apache: Air Assault
## 2803                                                                Arcana Heart 3
## 2804                                                                Arcana Heart 3
## 2805                                                                Arcana Heart 3
## 2806                                                             Arcania: Gothic 4
## 2807                                                             Arcania: Gothic 4
## 2808                                                             Arcania: Gothic 4
## 2809                                  Are You Smarter than a 5th Grader? Game Time
## 2810                                  Are You Smarter than a 5th Grader? Game Time
## 2811                                  Are You Smarter than a 5th Grader? Game Time
## 2812                                                                       Area 51
## 2813                                                                       Area 51
## 2814                                                                       Area 51
## 2815                                                    Army Men: Sarge's Heroes 2
## 2816                                                    Army Men: Sarge's Heroes 2
## 2817                                                    Army Men: Sarge's Heroes 2
## 2818                                                     Army of Two: The 40th Day
## 2819                                                     Army of Two: The 40th Day
## 2820                                                     Army of Two: The 40th Day
## 2821                                                Arslan: The Warriors of Legend
## 2822                                                Arslan: The Warriors of Legend
## 2823                                                Arslan: The Warriors of Legend
## 2824                                                            Ashes Cricket 2009
## 2825                                                            Ashes Cricket 2009
## 2826                                                            Ashes Cricket 2009
## 2827                                                              Assassin's Creed
## 2828                                                              Assassin's Creed
## 2829                                                              Assassin's Creed
## 2830                                                   Assassin's Creed Chronicles
## 2831                                                   Assassin's Creed Chronicles
## 2832                                                   Assassin's Creed Chronicles
## 2833                                                           Assassin's Creed II
## 2834                                                           Assassin's Creed II
## 2835                                                           Assassin's Creed II
## 2836                                                    Assassin's Creed Syndicate
## 2837                                                    Assassin's Creed Syndicate
## 2838                                                    Assassin's Creed Syndicate
## 2839                                                 Assassin's Creed: Brotherhood
## 2840                                                 Assassin's Creed: Brotherhood
## 2841                                                 Assassin's Creed: Brotherhood
## 2842                                                 Assassin's Creed: Revelations
## 2843                                                 Assassin's Creed: Revelations
## 2844                                                 Assassin's Creed: Revelations
## 2845                                                       Assassin's Creed: Rogue
## 2846                                                       Assassin's Creed: Rogue
## 2847                                                       Assassin's Creed: Rogue
## 2848                                                       Assassin's Creed: Unity
## 2849                                                       Assassin's Creed: Unity
## 2850                                                       Assassin's Creed: Unity
## 2851                          Atelier Sophie: The Alchemist of the Mysterious Book
## 2852                          Atelier Sophie: The Alchemist of the Mysterious Book
## 2853                          Atelier Sophie: The Alchemist of the Mysterious Book
## 2854                                 Avatar: The Last Airbender - Into the Inferno
## 2855                                 Avatar: The Last Airbender - Into the Inferno
## 2856                                 Avatar: The Last Airbender - Into the Inferno
## 2857                                                                       BMX XXX
## 2858                                                                       BMX XXX
## 2859                                                                       BMX XXX
## 2860                                                             Backyard Baseball
## 2861                                                             Backyard Baseball
## 2862                                                             Backyard Baseball
## 2863                                                         Backyard Baseball '09
## 2864                                                         Backyard Baseball '09
## 2865                                                         Backyard Baseball '09
## 2866                                                         Backyard Baseball '10
## 2867                                                         Backyard Baseball '10
## 2868                                                         Backyard Baseball '10
## 2869                                                     Backyard NFL Football '09
## 2870                                                     Backyard NFL Football '09
## 2871                                                     Backyard NFL Football '09
## 2872                                                     Backyard NFL Football '10
## 2873                                                     Backyard NFL Football '10
## 2874                                                     Backyard NFL Football '10
## 2875                                         Backyard Sports Football: Rookie Rush
## 2876                                         Backyard Sports Football: Rookie Rush
## 2877                                         Backyard Sports Football: Rookie Rush
## 2878                                             Backyard Sports: Sandlot Sluggers
## 2879                                             Backyard Sports: Sandlot Sluggers
## 2880                                             Backyard Sports: Sandlot Sluggers
## 2881                                                      Bad Boys: Miami Takedown
## 2882                                                      Bad Boys: Miami Takedown
## 2883                                                      Bad Boys: Miami Takedown
## 2884                                          Barbie Horse Adventures: Riding Camp
## 2885                                          Barbie Horse Adventures: Riding Camp
## 2886                                          Barbie Horse Adventures: Riding Camp
## 2887                                                         Batman: Arkham Asylum
## 2888                                                         Batman: Arkham Asylum
## 2889                                                         Batman: Arkham Asylum
## 2890                                                         Batman: Arkham Knight
## 2891                                                         Batman: Arkham Knight
## 2892                                                         Batman: Arkham Knight
## 2893                                                             Batman: Vengeance
## 2894                                                             Batman: Vengeance
## 2895                                                             Batman: Vengeance
## 2896                                                              Battle vs. Chess
## 2897                                                              Battle vs. Chess
## 2898                                                              Battle vs. Chess
## 2899                                                                    Battleborn
## 2900                                                                    Battleborn
## 2901                                                                    Battleborn
## 2902                                                  Battlefield 2: Modern Combat
## 2903                                                  Battlefield 2: Modern Combat
## 2904                                                  Battlefield 2: Modern Combat
## 2905                                                                 Battlefield 3
## 2906                                                                 Battlefield 3
## 2907                                                                 Battlefield 3
## 2908                                                    Battlefield: Bad Company 2
## 2909                                                    Battlefield: Bad Company 2
## 2910                                                    Battlefield: Bad Company 2
## 2911                                                             Beowulf: The Game
## 2912                                                             Beowulf: The Game
## 2913                                                             Beowulf: The Game
## 2914                                                            Beyond Good & Evil
## 2915                                                            Beyond Good & Evil
## 2916                                                            Beyond Good & Evil
## 2917                                                                      BioShock
## 2918                                                                      BioShock
## 2919                                                                      BioShock
## 2920                                                                    BioShock 2
## 2921                                                                    BioShock 2
## 2922                                                                    BioShock 2
## 2923                                                             BioShock Infinite
## 2924                                                             BioShock Infinite
## 2925                                                             BioShock Infinite
## 2926                                                         Bladestorm: Nightmare
## 2927                                                         Bladestorm: Nightmare
## 2928                                                         Bladestorm: Nightmare
## 2929                                                    BlazBlue: Calamity Trigger
## 2930                                                    BlazBlue: Calamity Trigger
## 2931                                                    BlazBlue: Calamity Trigger
## 2932                                              Blazblue: Continuum Shift Extend
## 2933                                              Blazblue: Continuum Shift Extend
## 2934                                              Blazblue: Continuum Shift Extend
## 2935                                                             Blitz: The League
## 2936                                                             Blitz: The League
## 2937                                                             Blitz: The League
## 2938                                                                  Blood Omen 2
## 2939                                                                  Blood Omen 2
## 2940                                                                  Blood Omen 2
## 2941                                                                    BloodRayne
## 2942                                                                    BloodRayne
## 2943                                                                    BloodRayne
## 2944                                                                          Blur
## 2945                                                                          Blur
## 2946                                                                          Blur
## 2947                                                                Bomberman Land
## 2948                                                                Bomberman Land
## 2949                                                                Bomberman Land
## 2950                                                                        Boogie
## 2951                                                                        Boogie
## 2952                                                                        Boogie
## 2953                                                                   Borderlands
## 2954                                                                   Borderlands
## 2955                                                                   Borderlands
## 2956                                                   Borderlands: The Pre-Sequel
## 2957                                                   Borderlands: The Pre-Sequel
## 2958                                                   Borderlands: The Pre-Sequel
## 2959                                                       Bratz: Forever Diamondz
## 2960                                                       Bratz: Forever Diamondz
## 2961                                                       Bratz: Forever Diamondz
## 2962                                                      Bratz: Girlz Really Rock
## 2963                                                      Bratz: Girlz Really Rock
## 2964                                                      Bratz: Girlz Really Rock
## 2965                                                            Bratz: Rock Angelz
## 2966                                                            Bratz: Rock Angelz
## 2967                                                            Bratz: Rock Angelz
## 2968                                                                         Brink
## 2969                                                                         Brink
## 2970                                                                         Brink
## 2971                                              Brothers in Arms: Hell's Highway
## 2972                                              Brothers in Arms: Hell's Highway
## 2973                                              Brothers in Arms: Hell's Highway
## 2974                                        Buffy the Vampire Slayer: Chaos Bleeds
## 2975                                        Buffy the Vampire Slayer: Chaos Bleeds
## 2976                                        Buffy the Vampire Slayer: Chaos Bleeds
## 2977                                                                   Bulletstorm
## 2978                                                                   Bulletstorm
## 2979                                                                   Bulletstorm
## 2980                                                    Bully: Scholarship Edition
## 2981                                                    Bully: Scholarship Edition
## 2982                                                    Bully: Scholarship Edition
## 2983                                                                       Burnout
## 2984                                                                       Burnout
## 2985                                                                       Burnout
## 2986                                                    Burnout 2: Point of Impact
## 2987                                                    Burnout 2: Point of Impact
## 2988                                                    Burnout 2: Point of Impact
## 2989                                            Burnout Paradise: The Ultimate Box
## 2990                                            Burnout Paradise: The Ultimate Box
## 2991                                            Burnout Paradise: The Ultimate Box
## 2992                                                               Burnout Revenge
## 2993                                                               Burnout Revenge
## 2994                                                               Burnout Revenge
## 2995                                                       Cabela's Adventure Camp
## 2996                                                       Cabela's Adventure Camp
## 2997                                                       Cabela's Adventure Camp
## 2998                                               Cabela's Big Game Hunter (2008)
## 2999                                               Cabela's Big Game Hunter (2008)
## 3000                                               Cabela's Big Game Hunter (2008)
## 3001                                                 Cabela's Big Game Hunter 2010
## 3002                                                 Cabela's Big Game Hunter 2010
## 3003                                                 Cabela's Big Game Hunter 2010
## 3004                                                 Cabela's Big Game Hunter 2012
## 3005                                                 Cabela's Big Game Hunter 2012
## 3006                                                 Cabela's Big Game Hunter 2012
## 3007                                           Cabela's Big Game Hunter: Pro Hunts
## 3008                                           Cabela's Big Game Hunter: Pro Hunts
## 3009                                           Cabela's Big Game Hunter: Pro Hunts
## 3010                                                    Cabela's Dangerous Hunts 2
## 3011                                                    Cabela's Dangerous Hunts 2
## 3012                                                    Cabela's Dangerous Hunts 2
## 3013                                                 Cabela's Legendary Adventures
## 3014                                                 Cabela's Legendary Adventures
## 3015                                                 Cabela's Legendary Adventures
## 3016                                          Cabela's Survival: Shadows of Katmai
## 3017                                          Cabela's Survival: Shadows of Katmai
## 3018                                          Cabela's Survival: Shadows of Katmai
## 3019                                                         Cabela's Trophy Bucks
## 3020                                                         Cabela's Trophy Bucks
## 3021                                                         Cabela's Trophy Bucks
## 3022                                                   Call Of Duty 2: Big Red One
## 3023                                                   Call Of Duty 2: Big Red One
## 3024                                                   Call Of Duty 2: Big Red One
## 3025                                                     Call of Duty: Finest Hour
## 3026                                                     Call of Duty: Finest Hour
## 3027                                                     Call of Duty: Finest Hour
## 3028                                                Call of Duty: Modern Warfare 2
## 3029                                                Call of Duty: Modern Warfare 2
## 3030                                                Call of Duty: Modern Warfare 2
## 3031                                                Call of Juarez: Bound in Blood
## 3032                                                Call of Juarez: Bound in Blood
## 3033                                                Call of Juarez: Bound in Blood
## 3034                                                    Call of Juarez: The Cartel
## 3035                                                    Call of Juarez: The Cartel
## 3036                                                    Call of Juarez: The Cartel
## 3037                               Carmen Sandiego: The Secret of the Stolen Drums
## 3038                               Carmen Sandiego: The Secret of the Stolen Drums
## 3039                               Carmen Sandiego: The Secret of the Stolen Drums
## 3040                                      Cartoon Network: Punch Time Explosion XL
## 3041                                      Cartoon Network: Punch Time Explosion XL
## 3042                                      Cartoon Network: Punch Time Explosion XL
## 3043                                                Castlevania: Lords of Shadow 2
## 3044                                                Castlevania: Lords of Shadow 2
## 3045                                                Castlevania: Lords of Shadow 2
## 3046                                     Champion Jockey: G1 Jockey & Gallop Racer
## 3047                                     Champion Jockey: G1 Jockey & Gallop Racer
## 3048                                     Champion Jockey: G1 Jockey & Gallop Racer
## 3049                                                                   Chaos;Child
## 3050                                                                   Chaos;Child
## 3051                                                                   Chaos;Child
## 3052                                                               Chaos;Head Noah
## 3053                                                               Chaos;Head Noah
## 3054                                                               Chaos;Head Noah
## 3055                                                                   Chessmaster
## 3056                                                                   Chessmaster
## 3057                                                                   Chessmaster
## 3058                                                                 Chicken Shoot
## 3059                                                                 Chicken Shoot
## 3060                                                                 Chicken Shoot
## 3061                                                        Clive Barker's Jericho
## 3062                                                        Clive Barker's Jericho
## 3063                                                        Clive Barker's Jericho
## 3064                        Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.
## 3065                        Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.
## 3066                        Codename: Kids Next Door: Operation V.I.D.E.O.G.A.M.E.
## 3067                                                          Colin McRae Rally 04
## 3068                                                          Colin McRae Rally 04
## 3069                                                          Colin McRae Rally 04
## 3070                                                             College Hoops 2K6
## 3071                                                             College Hoops 2K6
## 3072                                                             College Hoops 2K6
## 3073                                                             College Hoops 2K8
## 3074                                                             College Hoops 2K8
## 3075                                                             College Hoops 2K8
## 3076                                                          Conflict: Denied Ops
## 3077                                                          Conflict: Denied Ops
## 3078                                                          Conflict: Denied Ops
## 3079                                                        Conflict: Desert Storm
## 3080                                                        Conflict: Desert Storm
## 3081                                                        Conflict: Desert Storm
## 3082                                   Conflict: Desert Storm II - Back to Bagdhad
## 3083                                   Conflict: Desert Storm II - Back to Bagdhad
## 3084                                   Conflict: Desert Storm II - Back to Bagdhad
## 3085                                                                      Coraline
## 3086                                                                      Coraline
## 3087                                                                      Coraline
## 3088                                                                      Corvette
## 3089                                                                      Corvette
## 3090                                                                      Corvette
## 3091                                          Crash Bandicoot: The Wrath of Cortex
## 3092                                          Crash Bandicoot: The Wrath of Cortex
## 3093                                          Crash Bandicoot: The Wrath of Cortex
## 3094                                                                    Crazy Taxi
## 3095                                                                    Crazy Taxi
## 3096                                                                    Crazy Taxi
## 3097                                                Crouching Tiger, Hidden Dragon
## 3098                                                Crouching Tiger, Hidden Dragon
## 3099                                                Crouching Tiger, Hidden Dragon
## 3100                                                                      Crysis 2
## 3101                                                                      Crysis 2
## 3102                                                                      Crysis 2
## 3103                                                                      Crysis 3
## 3104                                                                      Crysis 3
## 3105                                                                      Crysis 3
## 3106                                                                     DJ Hero 2
## 3107                                                                     DJ Hero 2
## 3108                                                                     DJ Hero 2
## 3109                                                                     Damnation
## 3110                                                                     Damnation
## 3111                                                                     Damnation
## 3112                                                          DanceDanceRevolution
## 3113                                                          DanceDanceRevolution
## 3114                                                          DanceDanceRevolution
## 3115                                                               Dante's Inferno
## 3116                                                               Dante's Inferno
## 3117                                                               Dante's Inferno
## 3118                                                                    Dark Souls
## 3119                                                                    Dark Souls
## 3120                                                                    Dark Souls
## 3121                                                                Dark Souls III
## 3122                                                                Dark Souls III
## 3123                                                                Dark Souls III
## 3124                                                                   Dark Summit
## 3125                                                                   Dark Summit
## 3126                                                                   Dark Summit
## 3127                                                                     Dark Void
## 3128                                                                     Dark Void
## 3129                                                                     Dark Void
## 3130                                                                    Darksiders
## 3131                                                                    Darksiders
## 3132                                                                    Darksiders
## 3133                                                             Dawn of Discovery
## 3134                                                             Dawn of Discovery
## 3135                                                             Dawn of Discovery
## 3136                                                                   Dead Island
## 3137                                                                   Dead Island
## 3138                                                                   Dead Island
## 3139                                                          Dead Island: Riptide
## 3140                                                          Dead Island: Riptide
## 3141                                                          Dead Island: Riptide
## 3142                                                                 Dead Rising 2
## 3143                                                                 Dead Rising 2
## 3144                                                                 Dead Rising 2
## 3145                                                 Dead Rising 2: Off the Record
## 3146                                                 Dead Rising 2: Off the Record
## 3147                                                 Dead Rising 2: Off the Record
## 3148                                                                    Dead Space
## 3149                                                                    Dead Space
## 3150                                                                    Dead Space
## 3151                                                                  Dead Space 2
## 3152                                                                  Dead Space 2
## 3153                                                                  Dead Space 2
## 3154                                                                  Dead Space 3
## 3155                                                                  Dead Space 3
## 3156                                                                  Dead Space 3
## 3157                                                 Deadliest Catch: Sea of Chaos
## 3158                                                 Deadliest Catch: Sea of Chaos
## 3159                                                 Deadliest Catch: Sea of Chaos
## 3160                                                               Deal or No Deal
## 3161                                                               Deal or No Deal
## 3162                                                               Deal or No Deal
## 3163                                                               Def Jam Rapstar
## 3164                                                               Def Jam Rapstar
## 3165                                                               Def Jam Rapstar
## 3166                                                         Def Jam: Fight for NY
## 3167                                                         Def Jam: Fight for NY
## 3168                                                         Def Jam: Fight for NY
## 3169                                                                      Defiance
## 3170                                                                      Defiance
## 3171                                                                      Defiance
## 3172                                                       Despicable Me: The Game
## 3173                                                       Despicable Me: The Game
## 3174                                                       Despicable Me: The Game
## 3175                                                      Deus Ex: Mankind Divided
## 3176                                                      Deus Ex: Mankind Divided
## 3177                                                      Deus Ex: Mankind Divided
## 3178                                                                          DiRT
## 3179                                                                          DiRT
## 3180                                                                          DiRT
## 3181                                                                        DiRT 3
## 3182                                                                        DiRT 3
## 3183                                                                        DiRT 3
## 3184                                                                    DiRT Rally
## 3185                                                                    DiRT Rally
## 3186                                                                    DiRT Rally
## 3187                                                        Digimon Rumble Arena 2
## 3188                                                        Digimon Rumble Arena 2
## 3189                                                        Digimon Rumble Arena 2
## 3190                                                               Digimon World 4
## 3191                                                               Digimon World 4
## 3192                                                               Digimon World 4
## 3193                                                   Disney Planes Fire & Rescue
## 3194                                                   Disney Planes Fire & Rescue
## 3195                                                   Disney Planes Fire & Rescue
## 3196                                                      Disney Sing It: Pop Hits
## 3197                                                      Disney Sing It: Pop Hits
## 3198                                                      Disney Sing It: Pop Hits
## 3199                                                               Disney Universe
## 3200                                                               Disney Universe
## 3201                                                               Disney Universe
## 3202                                                  Disney's The Haunted Mansion
## 3203                                                  Disney's The Haunted Mansion
## 3204                                                  Disney's The Haunted Mansion
## 3205                            Disney's Winnie the Pooh's Rumbly Tumbly Adventure
## 3206                            Disney's Winnie the Pooh's Rumbly Tumbly Adventure
## 3207                            Disney's Winnie the Pooh's Rumbly Tumbly Adventure
## 3208                                                        Divinity: Original Sin
## 3209                                                        Divinity: Original Sin
## 3210                                                        Divinity: Original Sin
## 3211                                                                   Donkey Kong
## 3212                                                                   Donkey Kong
## 3213                                                                   Donkey Kong
## 3214                                                           Donkey Kong Country
## 3215                                                           Donkey Kong Country
## 3216                                                           Donkey Kong Country
## 3217                                                                          Doom
## 3218                                                                          Doom
## 3219                                                                          Doom
## 3220                                                                   Doom (2016)
## 3221                                                                   Doom (2016)
## 3222                                                                   Doom (2016)
## 3223                                                            Doom 3 BFG Edition
## 3224                                                            Doom 3 BFG Edition
## 3225                                                            Doom 3 BFG Edition
## 3226                               Dora The Explorer: Dora Saves the Snow Princess
## 3227                               Dora The Explorer: Dora Saves the Snow Princess
## 3228                               Dora The Explorer: Dora Saves the Snow Princess
## 3229                                                 Dora's Big Birthday Adventure
## 3230                                                 Dora's Big Birthday Adventure
## 3231                                                 Dora's Big Birthday Adventure
## 3232                                                                      Dr. Muto
## 3233                                                                      Dr. Muto
## 3234                                                                      Dr. Muto
## 3235                                                                 Dragon Age II
## 3236                                                                 Dragon Age II
## 3237                                                                 Dragon Age II
## 3238                                                 Dragon Age Origins: Awakening
## 3239                                                 Dragon Age Origins: Awakening
## 3240                                                 Dragon Age Origins: Awakening
## 3241                                                           Dragon Age: Origins
## 3242                                                           Dragon Age: Origins
## 3243                                                           Dragon Age: Origins
## 3244                                                    Dragon Ball Z: Battle of Z
## 3245                                                    Dragon Ball Z: Battle of Z
## 3246                                                    Dragon Ball Z: Battle of Z
## 3247                                                          Dragon Ball Z: Sagas
## 3248                                                          Dragon Ball Z: Sagas
## 3249                                                          Dragon Ball Z: Sagas
## 3250                                        Dragon Quest Builders: Revive Alefgard
## 3251                                        Dragon Quest Builders: Revive Alefgard
## 3252                                        Dragon Quest Builders: Revive Alefgard
## 3253                     Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 3254                     Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 3255                     Dragon Quest Heroes II: Twin Kings and the Prophecy's End
## 3256                                                                Dragon Quest X
## 3257                                                                Dragon Quest X
## 3258                                                                Dragon Quest X
## 3259                                                                        Driv3r
## 3260                                                                        Driv3r
## 3261                                                                        Driv3r
## 3262                                                                        Driven
## 3263                                                                        Driven
## 3264                                                                        Driven
## 3265                                                        Driver: Parallel Lines
## 3266                                                        Driver: Parallel Lines
## 3267                                                        Driver: Parallel Lines
## 3268                                                                  Drome Racers
## 3269                                                                  Drome Racers
## 3270                                                                  Drome Racers
## 3271                                                            Duke Nukem Forever
## 3272                                                            Duke Nukem Forever
## 3273                                                            Duke Nukem Forever
## 3274                                                             Dungeon Siege III
## 3275                                                             Dungeon Siege III
## 3276                                                             Dungeon Siege III
## 3277                                                                   Dying Light
## 3278                                                                   Dying Light
## 3279                                                                   Dying Light
## 3280                                                            Dynasty Warriors 6
## 3281                                                            Dynasty Warriors 6
## 3282                                                            Dynasty Warriors 6
## 3283                                            Dynasty Warriors 8: Xtreme Legends
## 3284                                            Dynasty Warriors 8: Xtreme Legends
## 3285                                            Dynasty Warriors 8: Xtreme Legends
## 3286                                                    Dynasty Warriors: Gundam 2
## 3287                                                    Dynasty Warriors: Gundam 2
## 3288                                                    Dynasty Warriors: Gundam 2
## 3289                                                 Dynasty Warriors: Strikeforce
## 3290                                                 Dynasty Warriors: Strikeforce
## 3291                                                 Dynasty Warriors: Strikeforce
## 3292                                                            EA Sports Active 2
## 3293                                                            EA Sports Active 2
## 3294                                                            EA Sports Active 2
## 3295                                                  Egg Mania: Eggstreme Madness
## 3296                                                  Egg Mania: Eggstreme Madness
## 3297                                                  Egg Mania: Eggstreme Madness
## 3298                                                   Enemy Territory: Quake Wars
## 3299                                                   Enemy Territory: Quake Wars
## 3300                                                   Enemy Territory: Quake Wars
## 3301                                                              Enter the Matrix
## 3302                                                              Enter the Matrix
## 3303                                                              Enter the Matrix
## 3304                                                                        Eragon
## 3305                                                                        Eragon
## 3306                                                                        Eragon
## 3307                                                                        Evolve
## 3308                                                                        Evolve
## 3309                                                                        Evolve
## 3310                                                    F.E.A.R. 2: Project Origin
## 3311                                                    F.E.A.R. 2: Project Origin
## 3312                                                    F.E.A.R. 2: Project Origin
## 3313                                                                    F.E.A.R. 3
## 3314                                                                    F.E.A.R. 3
## 3315                                                                    F.E.A.R. 3
## 3316                                                                       F1 2002
## 3317                                                                       F1 2002
## 3318                                                                       F1 2002
## 3319                                                                       F1 2010
## 3320                                                                       F1 2010
## 3321                                                                       F1 2010
## 3322                                                                       F1 2012
## 3323                                                                       F1 2012
## 3324                                                                       F1 2012
## 3325                                                                       F1 2014
## 3326                                                                       F1 2014
## 3327                                                                       F1 2014
## 3328                                                                       F1 2015
## 3329                                                                       F1 2015
## 3330                                                                       F1 2015
## 3331                                                         F1 2016 (Codemasters)
## 3332                                                         F1 2016 (Codemasters)
## 3333                                                         F1 2016 (Codemasters)
## 3334                                                                 F1 Race Stars
## 3335                                                                 F1 Race Stars
## 3336                                                                 F1 Race Stars
## 3337                                                              FIFA Soccer 2002
## 3338                                                              FIFA Soccer 2002
## 3339                                                              FIFA Soccer 2002
## 3340                                                                 FIFA Street 3
## 3341                                                                 FIFA Street 3
## 3342                                                                 FIFA Street 3
## 3343                                                                     Fallout 3
## 3344                                                                     Fallout 3
## 3345                                                                     Fallout 3
## 3346                                                                     Fallout 4
## 3347                                                                     Fallout 4
## 3348                                                                     Fallout 4
## 3349                                                            Fallout: New Vegas
## 3350                                                            Fallout: New Vegas
## 3351                                                            Fallout: New Vegas
## 3352                                            Family Game Night 4: The Game Show
## 3353                                            Family Game Night 4: The Game Show
## 3354                                            Family Game Night 4: The Game Show
## 3355                                                                   Fantastic 4
## 3356                                                                   Fantastic 4
## 3357                                                                   Fantastic 4
## 3358                                                                     Far Cry 2
## 3359                                                                     Far Cry 2
## 3360                                                                     Far Cry 2
## 3361                                                                     Far Cry 3
## 3362                                                                     Far Cry 3
## 3363                                                                     Far Cry 3
## 3364                                                               Far Cry: Primal
## 3365                                                               Far Cry: Primal
## 3366                                                               Far Cry: Primal
## 3367                                                        Farming Simulator 2013
## 3368                                                        Farming Simulator 2013
## 3369                                                        Farming Simulator 2013
## 3370                                                           Fight Night Round 2
## 3371                                                           Fight Night Round 2
## 3372                                                           Fight Night Round 2
## 3373                                                              Final Fantasy II
## 3374                                                              Final Fantasy II
## 3375                                                              Final Fantasy II
## 3376                                                          Final Fantasy Type-0
## 3377                                                          Final Fantasy Type-0
## 3378                                                          Final Fantasy Type-0
## 3379                                             Final Fantasy XIV: A Realm Reborn
## 3380                                             Final Fantasy XIV: A Realm Reborn
## 3381                                             Final Fantasy XIV: A Realm Reborn
## 3382                                                Final Fantasy XIV: Heavensward
## 3383                                                Final Fantasy XIV: Heavensward
## 3384                                                Final Fantasy XIV: Heavensward
## 3385                                                                     Fireblade
## 3386                                                                     Fireblade
## 3387                                                                     Fireblade
## 3388                                          Fist of the North Star: Ken's Rage 2
## 3389                                          Fist of the North Star: Ken's Rage 2
## 3390                                          Fist of the North Star: Ken's Rage 2
## 3391                                                          Ford Racing Off Road
## 3392                                                          Ford Racing Off Road
## 3393                                                          Ford Racing Off Road
## 3394                                                                 Freaky Flyers
## 3395                                                                 Freaky Flyers
## 3396                                                                 Freaky Flyers
## 3397                                                              Freedom Fighters
## 3398                                                              Freedom Fighters
## 3399                                                              Freedom Fighters
## 3400                                                                    Freekstyle
## 3401                                                                    Freekstyle
## 3402                                                                    Freekstyle
## 3403                                                             Freestyle Metal X
## 3404                                                             Freestyle Metal X
## 3405                                                             Freestyle Metal X
## 3406                                                                   Fritz Chess
## 3407                                                                   Fritz Chess
## 3408                                                                   Fritz Chess
## 3409                                                       Frogger: Ancient Shadow
## 3410                                                       Frogger: Ancient Shadow
## 3411                                                       Frogger: Ancient Shadow
## 3412                                                         Front Mission Evolved
## 3413                                                         Front Mission Evolved
## 3414                                                         Front Mission Evolved
## 3415                                                                          Fuel
## 3416                                                                          Fuel
## 3417                                                                          Fuel
## 3418                                                  Future Tactics: The Uprising
## 3419                                                  Future Tactics: The Uprising
## 3420                                                  Future Tactics: The Uprising
## 3421                                                                        GRID 2
## 3422                                                                        GRID 2
## 3423                                                                        GRID 2
## 3424                                                                GRID Autosport
## 3425                                                                GRID Autosport
## 3426                                                                GRID Autosport
## 3427                                                               Game of Thrones
## 3428                                                               Game of Thrones
## 3429                                                               Game of Thrones
## 3430                                                         Gauntlet: Dark Legacy
## 3431                                                         Gauntlet: Dark Legacy
## 3432                                                         Gauntlet: Dark Legacy
## 3433                                                            Get Fit with Mel B
## 3434                                                            Get Fit with Mel B
## 3435                                                            Get Fit with Mel B
## 3436                                     Ghostbusters: The Video Game (DS Version)
## 3437                                     Ghostbusters: The Video Game (DS Version)
## 3438                                     Ghostbusters: The Video Game (DS Version)
## 3439                                                                       Gladius
## 3440                                                                       Gladius
## 3441                                                                       Gladius
## 3442                                           Goblin Commander: Unleash the Horde
## 3443                                           Goblin Commander: Unleash the Horde
## 3444                                           Goblin Commander: Unleash the Horde
## 3445                                                         Goosebumps HorrorLand
## 3446                                                         Goosebumps HorrorLand
## 3447                                                         Goosebumps HorrorLand
## 3448                                                           Grand Theft Auto IV
## 3449                                                           Grand Theft Auto IV
## 3450                                                           Grand Theft Auto IV
## 3451                                                          Green Day: Rock Band
## 3452                                                          Green Day: Rock Band
## 3453                                                          Green Day: Rock Band
## 3454                                                     Greg Hastings Paintball 2
## 3455                                                     Greg Hastings Paintball 2
## 3456                                                     Greg Hastings Paintball 2
## 3457                                     Greg Hastings' Tournament Paintball Max'd
## 3458                                     Greg Hastings' Tournament Paintball Max'd
## 3459                                     Greg Hastings' Tournament Paintball Max'd
## 3460                                                Grey's Anatomy: The Video Game
## 3461                                                Grey's Anatomy: The Video Game
## 3462                                                Grey's Anatomy: The Video Game
## 3463                                               Guilty Gear XX Accent Core Plus
## 3464                                               Guilty Gear XX Accent Core Plus
## 3465                                               Guilty Gear XX Accent Core Plus
## 3466                                                 Guitar Hero: Warriors of Rock
## 3467                                                 Guitar Hero: Warriors of Rock
## 3468                                                 Guitar Hero: Warriors of Rock
## 3469                                                                   Handball 16
## 3470                                                                   Handball 16
## 3471                                                                   Handball 16
## 3472                                                                    Happy Feet
## 3473                                                                    Happy Feet
## 3474                                                                    Happy Feet
## 3475                                               Harvey Birdman: Attorney at Law
## 3476                                               Harvey Birdman: Attorney at Law
## 3477                                               Harvey Birdman: Attorney at Law
## 3478                                                      Hasbro Family Game Night
## 3479                                                      Hasbro Family Game Night
## 3480                                                      Hasbro Family Game Night
## 3481                                                    Hasbro Family Game Night 3
## 3482                                                    Hasbro Family Game Night 3
## 3483                                                    Hasbro Family Game Night 3
## 3484                                                       Heavy Fire: Afghanistan
## 3485                                                       Heavy Fire: Afghanistan
## 3486                                                       Heavy Fire: Afghanistan
## 3487                                                  Hellboy: The Science of Evil
## 3488                                                  Hellboy: The Science of Evil
## 3489                                                  Hellboy: The Science of Evil
## 3490                                                         Heroes of the Pacific
## 3491                                                         Heroes of the Pacific
## 3492                                                         Heroes of the Pacific
## 3493                                     High School Musical 3: Senior Year DANCE!
## 3494                                     High School Musical 3: Senior Year DANCE!
## 3495                                     High School Musical 3: Senior Year DANCE!
## 3496                                                     Hitman 2: Silent Assassin
## 3497                                                     Hitman 2: Silent Assassin
## 3498                                                     Hitman 2: Silent Assassin
## 3499                                                            Hitman: Absolution
## 3500                                                            Hitman: Absolution
## 3501                                                            Hitman: Absolution
## 3502                                                                     Homefront
## 3503                                                                     Homefront
## 3504                                                                     Homefront
## 3505                                                     Homefront: The Revolution
## 3506                                                     Homefront: The Revolution
## 3507                                                     Homefront: The Revolution
## 3508                                                         Hot Wheels Velocity X
## 3509                                                         Hot Wheels Velocity X
## 3510                                                         Hot Wheels Velocity X
## 3511                                             Hot Wheels: Stunt Track Challenge
## 3512                                             Hot Wheels: Stunt Track Challenge
## 3513                                             Hot Wheels: Stunt Track Challenge
## 3514                                                                          Hulk
## 3515                                                                          Hulk
## 3516                                                                          Hulk
## 3517                                                     Hunted: The Demon's Forge
## 3518                                                     Hunted: The Demon's Forge
## 3519                                                     Hunted: The Demon's Forge
## 3520                                                                       I-Ninja
## 3521                                                                       I-Ninja
## 3522                                                                       I-Ninja
## 3523                                                               Indigo Prophecy
## 3524                                                               Indigo Prophecy
## 3525                                                               Indigo Prophecy
## 3526                                                          Intellivision Lives!
## 3527                                                          Intellivision Lives!
## 3528                                                          Intellivision Lives!
## 3529                                                                     Inversion
## 3530                                                                     Inversion
## 3531                                                                     Inversion
## 3532                                                           J Stars Victory Vs.
## 3533                                                           J Stars Victory Vs.
## 3534                                                           J Stars Victory Vs.
## 3535                                         JASF: Jane's Advanced Strike Fighters
## 3536                                         JASF: Jane's Advanced Strike Fighters
## 3537                                         JASF: Jane's Advanced Strike Fighters
## 3538                                              James Bond 007: Agent Under Fire
## 3539                                              James Bond 007: Agent Under Fire
## 3540                                              James Bond 007: Agent Under Fire
## 3541                                                       James Bond 007: Legends
## 3542                                                       James Bond 007: Legends
## 3543                                                       James Bond 007: Legends
## 3544                                            Jikkyou Powerful Pro Baseball 2016
## 3545                                            Jikkyou Powerful Pro Baseball 2016
## 3546                                            Jikkyou Powerful Pro Baseball 2016
## 3547                                              Jikkyou Powerful Pro Yakyuu 2012
## 3548                                              Jikkyou Powerful Pro Yakyuu 2012
## 3549                                              Jikkyou Powerful Pro Yakyuu 2012
## 3550                                              Jikkyou Powerful Pro Yakyuu 2013
## 3551                                              Jikkyou Powerful Pro Yakyuu 2013
## 3552                                              Jikkyou Powerful Pro Yakyuu 2013
## 3553                                      Jimmie Johnson's Anything With an Engine
## 3554                                      Jimmie Johnson's Anything With an Engine
## 3555                                      Jimmie Johnson's Anything With an Engine
## 3556                                                     Jimmy Neutron: Boy Genius
## 3557                                                     Jimmy Neutron: Boy Genius
## 3558                                                     Jimmy Neutron: Boy Genius
## 3559                                                    Jonah Lomu Rugby Challenge
## 3560                                                    Jonah Lomu Rugby Challenge
## 3561                                                    Jonah Lomu Rugby Challenge
## 3562                                                       Jumper: Griffin's Story
## 3563                                                       Jumper: Griffin's Story
## 3564                                                       Jumper: Griffin's Story
## 3565                                              Jurassic Park: Operation Genesis
## 3566                                              Jurassic Park: Operation Genesis
## 3567                                              Jurassic Park: Operation Genesis
## 3568                                                                    Just Cause
## 3569                                                                    Just Cause
## 3570                                                                    Just Cause
## 3571                                                                  Just Cause 2
## 3572                                                                  Just Cause 2
## 3573                                                                  Just Cause 2
## 3574                                                                  Just Cause 3
## 3575                                                                  Just Cause 3
## 3576                                                                  Just Cause 3
## 3577                                                                  Just Dance 3
## 3578                                                                  Just Dance 3
## 3579                                                                  Just Dance 3
## 3580                                                             Just Dance Kids 2
## 3581                                                             Just Dance Kids 2
## 3582                                                             Just Dance Kids 2
## 3583                                                    Just Dance: Disney Party 2
## 3584                                                    Just Dance: Disney Party 2
## 3585                                                    Just Dance: Disney Party 2
## 3586                                             Kamen Rider: Battride War Genesis
## 3587                                             Kamen Rider: Battride War Genesis
## 3588                                             Kamen Rider: Battride War Genesis
## 3589                                                      Kane & Lynch 2: Dog Days
## 3590                                                      Kane & Lynch 2: Dog Days
## 3591                                                      Kane & Lynch 2: Dog Days
## 3592                                                      Karaoke Revolution Party
## 3593                                                      Karaoke Revolution Party
## 3594                                                      Karaoke Revolution Party
## 3595                            Karaoke Revolution Presents American Idol Encore 2
## 3596                            Karaoke Revolution Presents American Idol Encore 2
## 3597                            Karaoke Revolution Presents American Idol Encore 2
## 3598                                                                   Kill.Switch
## 3599                                                                   Kill.Switch
## 3600                                                                   Kill.Switch
## 3601                                                                   King Arthur
## 3602                                                                   King Arthur
## 3603                                                                   King Arthur
## 3604                                                 Kingdoms of Amalur: Reckoning
## 3605                                                 Kingdoms of Amalur: Reckoning
## 3606                                                 Kingdoms of Amalur: Reckoning
## 3607                                                             Kiniro no Corda 3
## 3608                                                             Kiniro no Corda 3
## 3609                                                             Kiniro no Corda 3
## 3610                                  Kung Fu Panda: Showdown of Legendary Legends
## 3611                                  Kung Fu Panda: Showdown of Legendary Legends
## 3612                                  Kung Fu Panda: Showdown of Legendary Legends
## 3613                                        LEGO Legends of Chima: Laval's Journey
## 3614                                        LEGO Legends of Chima: Laval's Journey
## 3615                                        LEGO Legends of Chima: Laval's Journey
## 3616                                                      Legacy of Kain: Defiance
## 3617                                                      Legacy of Kain: Defiance
## 3618                                                      Legacy of Kain: Defiance
## 3619                                                                     Legendary
## 3620                                                                     Legendary
## 3621                                                                     Legendary
## 3622                                                          Legends of Wrestling
## 3623                                                          Legends of Wrestling
## 3624                                                          Legends of Wrestling
## 3625                                                        Let's Dance with Mel B
## 3626                                                        Let's Dance with Mel B
## 3627                                                        Let's Dance with Mel B
## 3628                                                               Life is Strange
## 3629                                                               Life is Strange
## 3630                                                               Life is Strange
## 3631                                                  Little Battlers eXperience W
## 3632                                                  Little Battlers eXperience W
## 3633                                                  Little Battlers eXperience W
## 3634                                             Little Busters! Converted Edition
## 3635                                             Little Busters! Converted Edition
## 3636                                             Little Busters! Converted Edition
## 3637                                                    Looney Tunes: Acme Arsenal
## 3638                                                    Looney Tunes: Acme Arsenal
## 3639                                                    Looney Tunes: Acme Arsenal
## 3640                                                  Looney Tunes: Back in Action
## 3641                                                  Looney Tunes: Back in Action
## 3642                                                  Looney Tunes: Back in Action
## 3643                                                           Lords of the Fallen
## 3644                                                           Lords of the Fallen
## 3645                                                           Lords of the Fallen
## 3646                                                                 Lost Planet 2
## 3647                                                                 Lost Planet 2
## 3648                                                                 Lost Planet 2
## 3649                                                                 Lost Planet 3
## 3650                                                                 Lost Planet 3
## 3651                                                                 Lost Planet 3
## 3652                                                               Lost: Via Domus
## 3653                                                               Lost: Via Domus
## 3654                                                               Lost: Via Domus
## 3655                                                              MLB 07: The Show
## 3656                                                              MLB 07: The Show
## 3657                                                              MLB 07: The Show
## 3658                                                              MLB 08: The Show
## 3659                                                              MLB 08: The Show
## 3660                                                              MLB 08: The Show
## 3661                                                              MLB 09: The Show
## 3662                                                              MLB 09: The Show
## 3663                                                              MLB 09: The Show
## 3664                                                              MLB 10: The Show
## 3665                                                              MLB 10: The Show
## 3666                                                              MLB 10: The Show
## 3667                                                              MLB 11: The Show
## 3668                                                              MLB 11: The Show
## 3669                                                              MLB 11: The Show
## 3670                                                              MLB 14: The Show
## 3671                                                              MLB 14: The Show
## 3672                                                              MLB 14: The Show
## 3673                                                              MLB 15: The Show
## 3674                                                              MLB 15: The Show
## 3675                                                              MLB 15: The Show
## 3676                                                           MLB Power Pros 2008
## 3677                                                           MLB Power Pros 2008
## 3678                                                           MLB Power Pros 2008
## 3679                                                            MLB SlugFest 20-04
## 3680                                                            MLB SlugFest 20-04
## 3681                                                            MLB SlugFest 20-04
## 3682                                                                  MTX Mototrax
## 3683                                                                  MTX Mototrax
## 3684                                                                  MTX Mototrax
## 3685                                                             MVP Baseball 2004
## 3686                                                             MVP Baseball 2004
## 3687                                                             MVP Baseball 2004
## 3688                                                             MVP Baseball 2005
## 3689                                                             MVP Baseball 2005
## 3690                                                             MVP Baseball 2005
## 3691                                            MX 2002 Featuring Ricky Carmichael
## 3692                                            MX 2002 Featuring Ricky Carmichael
## 3693                                            MX 2002 Featuring Ricky Carmichael
## 3694                                        MX SuperFly featuring Ricky Carmichael
## 3695                                        MX SuperFly featuring Ricky Carmichael
## 3696                                        MX SuperFly featuring Ricky Carmichael
## 3697                                                                        MXGP 2
## 3698                                                                        MXGP 2
## 3699                                                                        MXGP 2
## 3700                                                               Madden NFL 2001
## 3701                                                               Madden NFL 2001
## 3702                                                               Madden NFL 2001
## 3703                                                                         Mafia
## 3704                                                                         Mafia
## 3705                                                                         Mafia
## 3706                                                                      Mafia II
## 3707                                                                      Mafia II
## 3708                                                                      Mafia II
## 3709                                                                  Man vs. Wild
## 3710                                                                  Man vs. Wild
## 3711                                                                  Man vs. Wild
## 3712                                                                     Manhunt 2
## 3713                                                                     Manhunt 2
## 3714                                                                     Manhunt 2
## 3715                                         Marvel Super Hero Squad: Comic Combat
## 3716                                         Marvel Super Hero Squad: Comic Combat
## 3717                                         Marvel Super Hero Squad: Comic Combat
## 3718                                        Marvel vs. Capcom 2: New Age of Heroes
## 3719                                        Marvel vs. Capcom 2: New Age of Heroes
## 3720                                        Marvel vs. Capcom 2: New Age of Heroes
## 3721                                                                 Mass Effect 2
## 3722                                                                 Mass Effect 2
## 3723                                                                 Mass Effect 2
## 3724                                                           Mass Effect Trilogy
## 3725                                                           Mass Effect Trilogy
## 3726                                                           Mass Effect Trilogy
## 3727                                            Max Payne 2: The Fall of Max Payne
## 3728                                            Max Payne 2: The Fall of Max Payne
## 3729                                            Max Payne 2: The Fall of Max Payne
## 3730                                                                   Max Payne 3
## 3731                                                                   Max Payne 3
## 3732                                                                   Max Payne 3
## 3733                                                      Medal of Honor: Airborne
## 3734                                                      Medal of Honor: Airborne
## 3735                                                      Medal of Honor: Airborne
## 3736                                                     Medal of Honor: Frontline
## 3737                                                     Medal of Honor: Frontline
## 3738                                                     Medal of Honor: Frontline
## 3739                                                    Medal of Honor: Rising Sun
## 3740                                                    Medal of Honor: Rising Sun
## 3741                                                    Medal of Honor: Rising Sun
## 3742                                                    Medal of Honor: Warfighter
## 3743                                                    Medal of Honor: Warfighter
## 3744                                                    Medal of Honor: Warfighter
## 3745                                               Mega Man Anniversary Collection
## 3746                                               Mega Man Anniversary Collection
## 3747                                               Mega Man Anniversary Collection
## 3748                                                Mercenaries 2: World in Flames
## 3749                                                Mercenaries 2: World in Flames
## 3750                                                Mercenaries 2: World in Flames
## 3751                                              Metal Arms: Glitch in the System
## 3752                                              Metal Arms: Glitch in the System
## 3753                                              Metal Arms: Glitch in the System
## 3754                                                   Metal Gear Solid HD Edition
## 3755                                                   Metal Gear Solid HD Edition
## 3756                                                   Metal Gear Solid HD Edition
## 3757                                                          Metal Slug Anthology
## 3758                                                          Metal Slug Anthology
## 3759                                                          Metal Slug Anthology
## 3760                                                       Midway Arcade Treasures
## 3761                                                       Midway Arcade Treasures
## 3762                                                       Midway Arcade Treasures
## 3763                                                     Midway Arcade Treasures 2
## 3764                                                     Midway Arcade Treasures 2
## 3765                                                     Midway Arcade Treasures 2
## 3766                                                     Midway Arcade Treasures 3
## 3767                                                     Midway Arcade Treasures 3
## 3768                                                     Midway Arcade Treasures 3
## 3769                                                                  Mighty No. 9
## 3770                                                                  Mighty No. 9
## 3771                                                                  Mighty No. 9
## 3772                                                              Minute to Win It
## 3773                                                              Minute to Win It
## 3774                                                              Minute to Win It
## 3775                                                                 Mirror's Edge
## 3776                                                                 Mirror's Edge
## 3777                                                                 Mirror's Edge
## 3778                                                        Mirror's Edge Catalyst
## 3779                                                        Mirror's Edge Catalyst
## 3780                                                        Mirror's Edge Catalyst
## 3781                                     Monkey Island: Special Edition Collection
## 3782                                     Monkey Island: Special Edition Collection
## 3783                                     Monkey Island: Special Edition Collection
## 3784                                                                Monopoly Party
## 3785                                                                Monopoly Party
## 3786                                                                Monopoly Party
## 3787                                                              Monopoly Streets
## 3788                                                              Monopoly Streets
## 3789                                                              Monopoly Streets
## 3790                                                            Monster Hunter Tri
## 3791                                                            Monster Hunter Tri
## 3792                                                            Monster Hunter Tri
## 3793                                              Monster Jam: Maximum Destruction
## 3794                                              Monster Jam: Maximum Destruction
## 3795                                              Monster Jam: Maximum Destruction
## 3796                                                                   Monster Lab
## 3797                                                                   Monster Lab
## 3798                                                                   Monster Lab
## 3799                                                               Mortal Kombat 3
## 3800                                                               Mortal Kombat 3
## 3801                                                               Mortal Kombat 3
## 3802                                                               Mortal Kombat X
## 3803                                                               Mortal Kombat X
## 3804                                                               Mortal Kombat X
## 3805                                                      Mortal Kombat: Deception
## 3806                                                      Mortal Kombat: Deception
## 3807                                                      Mortal Kombat: Deception
## 3808                                                                     MotoGP 08
## 3809                                                                     MotoGP 08
## 3810                                                                     MotoGP 08
## 3811                                                                        MySims
## 3812                                                                        MySims
## 3813                                                                        MySims
## 3814                                                                     NASCAR 08
## 3815                                                                     NASCAR 08
## 3816                                                                     NASCAR 08
## 3817                                                                     NASCAR 09
## 3818                                                                     NASCAR 09
## 3819                                                                     NASCAR 09
## 3820                                                NASCAR 2005: Chase for the Cup
## 3821                                                NASCAR 2005: Chase for the Cup
## 3822                                                NASCAR 2005: Chase for the Cup
## 3823                                                         NASCAR 2011: The Game
## 3824                                                         NASCAR 2011: The Game
## 3825                                                         NASCAR 2011: The Game
## 3826                                                              NASCAR Heat 2002
## 3827                                                              NASCAR Heat 2002
## 3828                                                              NASCAR Heat 2002
## 3829                                                           NASCAR Thunder 2002
## 3830                                                           NASCAR Thunder 2002
## 3831                                                           NASCAR Thunder 2002
## 3832                                                           NASCAR Thunder 2003
## 3833                                                           NASCAR Thunder 2003
## 3834                                                           NASCAR Thunder 2003
## 3835                                                                        NBA 07
## 3836                                                                        NBA 07
## 3837                                                                        NBA 07
## 3838                                                                        NBA 08
## 3839                                                                        NBA 08
## 3840                                                                        NBA 08
## 3841                                                            NBA 09: The Inside
## 3842                                                            NBA 09: The Inside
## 3843                                                            NBA 09: The Inside
## 3844                                                                       NBA 2K2
## 3845                                                                       NBA 2K2
## 3846                                                                       NBA 2K2
## 3847                                                                       NBA 2K3
## 3848                                                                       NBA 2K3
## 3849                                                                       NBA 2K3
## 3850                                                                       NBA 2K6
## 3851                                                                       NBA 2K6
## 3852                                                                       NBA 2K6
## 3853                                                                       NBA 2K8
## 3854                                                                       NBA 2K8
## 3855                                                                       NBA 2K8
## 3856                                                                       NBA 2K9
## 3857                                                                       NBA 2K9
## 3858                                                                       NBA 2K9
## 3859                                                    NBA Jam Tournament Edition
## 3860                                                    NBA Jam Tournament Edition
## 3861                                                    NBA Jam Tournament Edition
## 3862                                                                   NBA Live 10
## 3863                                                                   NBA Live 10
## 3864                                                                   NBA Live 10
## 3865                                                                 NBA Live 2002
## 3866                                                                 NBA Live 2002
## 3867                                                                 NBA Live 2002
## 3868                                                                 NBA Live 2003
## 3869                                                                 NBA Live 2003
## 3870                                                                 NBA Live 2003
## 3871                                                                 NBA Live 2004
## 3872                                                                 NBA Live 2004
## 3873                                                                 NBA Live 2004
## 3874                                                                 NBA Live 2005
## 3875                                                                 NBA Live 2005
## 3876                                                                 NBA Live 2005
## 3877                                                                 NBA Street V3
## 3878                                                                 NBA Street V3
## 3879                                                                 NBA Street V3
## 3880                                                             NBA Street Vol. 2
## 3881                                                             NBA Street Vol. 2
## 3882                                                             NBA Street Vol. 2
## 3883                                                            NCAA Basketball 09
## 3884                                                            NCAA Basketball 09
## 3885                                                            NCAA Basketball 09
## 3886                                                              NCAA Football 11
## 3887                                                              NCAA Football 11
## 3888                                                              NCAA Football 11
## 3889                                                            NCAA Football 2003
## 3890                                                            NCAA Football 2003
## 3891                                                            NCAA Football 2003
## 3892                                                            NCAA Football 2004
## 3893                                                            NCAA Football 2004
## 3894                                                            NCAA Football 2004
## 3895                                                            NCAA Football 2005
## 3896                                                            NCAA Football 2005
## 3897                                                            NCAA Football 2005
## 3898                                                         NCAA March Madness 08
## 3899                                                         NCAA March Madness 08
## 3900                                                         NCAA March Madness 08
## 3901                                                                       NFL 2K3
## 3902                                                                       NFL 2K3
## 3903                                                                       NFL 2K3
## 3904                                                               NFL Blitz 20-02
## 3905                                                               NFL Blitz 20-02
## 3906                                                               NFL Blitz 20-02
## 3907                                                               NFL Blitz 20-03
## 3908                                                               NFL Blitz 20-03
## 3909                                                               NFL Blitz 20-03
## 3910                                                                 NFL Blitz Pro
## 3911                                                                 NFL Blitz Pro
## 3912                                                                 NFL Blitz Pro
## 3913                                                                    NFL Street
## 3914                                                                    NFL Street
## 3915                                                                    NFL Street
## 3916                                                                  NFL Street 2
## 3917                                                                  NFL Street 2
## 3918                                                                  NFL Street 2
## 3919                                                                        NHL 06
## 3920                                                                        NHL 06
## 3921                                                                        NHL 06
## 3922                                                                      NHL 2002
## 3923                                                                      NHL 2002
## 3924                                                                      NHL 2002
## 3925                                                                      NHL 2003
## 3926                                                                      NHL 2003
## 3927                                                                      NHL 2003
## 3928                                                                      NHL 2004
## 3929                                                                      NHL 2004
## 3930                                                                      NHL 2004
## 3931                                                                      NHL 2005
## 3932                                                                      NHL 2005
## 3933                                                                      NHL 2005
## 3934                                                                       NHL 2K3
## 3935                                                                       NHL 2K3
## 3936                                                                       NHL 2K3
## 3937                                                                       NHL 2K6
## 3938                                                                       NHL 2K6
## 3939                                                                       NHL 2K6
## 3940                                                                       NHL 2K7
## 3941                                                                       NHL 2K7
## 3942                                                                       NHL 2K7
## 3943                                                                NHL Hitz 20-02
## 3944                                                                NHL Hitz 20-02
## 3945                                                                NHL Hitz 20-02
## 3946                                                                NHL Hitz 20-03
## 3947                                                                NHL Hitz 20-03
## 3948                                                                NHL Hitz 20-03
## 3949                                                                  NHL Hitz Pro
## 3950                                                                  NHL Hitz Pro
## 3951                                                                  NHL Hitz Pro
## 3952                                                   NatGeo Challenge! Wild Life
## 3953                                                   NatGeo Challenge! Wild Life
## 3954                                                   NatGeo Challenge! Wild Life
## 3955                                                National Geographic Challenge!
## 3956                                                National Geographic Challenge!
## 3957                                                National Geographic Challenge!
## 3958                                                              Natural Doctrine
## 3959                                                              Natural Doctrine
## 3960                                                              Natural Doctrine
## 3961                                                         Need for Speed (2015)
## 3962                                                         Need for Speed (2015)
## 3963                                                         Need for Speed (2015)
## 3964                                                 Need for Speed: Hot Pursuit 2
## 3965                                                 Need for Speed: Hot Pursuit 2
## 3966                                                 Need for Speed: Hot Pursuit 2
## 3967                                             Need for Speed: Shift 2 Unleashed
## 3968                                             Need for Speed: Shift 2 Unleashed
## 3969                                             Need for Speed: Shift 2 Unleashed
## 3970                                              Nicktoons: Attack of the Toybots
## 3971                                              Nicktoons: Attack of the Toybots
## 3972                                              Nicktoons: Attack of the Toybots
## 3973                                                                Nicktoons: MLB
## 3974                                                                Nicktoons: MLB
## 3975                                                                Nicktoons: MLB
## 3976                                                             Nicktoons: Unite!
## 3977                                                             Nicktoons: Unite!
## 3978                                                             Nicktoons: Unite!
## 3979                                Night at the Museum: Battle of the Smithsonian
## 3980                                Night at the Museum: Battle of the Smithsonian
## 3981                                Night at the Museum: Battle of the Smithsonian
## 3982                                                                Ninja Gaiden 3
## 3983                                                                Ninja Gaiden 3
## 3984                                                                Ninja Gaiden 3
## 3985                  Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden
## 3986                  Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden
## 3987                  Nobunaga's Ambition: Sphere of Influence - Sengoku Risshiden
## 3988                                                      Odin Sphere: Leifthrasir
## 3989                                                      Odin Sphere: Leifthrasir
## 3990                                                      Odin Sphere: Leifthrasir
## 3991                                                                         Okami
## 3992                                                                         Okami
## 3993                                                                         Okami
## 3994                                                      One Piece: Burning Blood
## 3995                                                      One Piece: Burning Blood
## 3996                                                      One Piece: Burning Blood
## 3997                                                  One Piece: Pirate Warriors 3
## 3998                                                  One Piece: Pirate Warriors 3
## 3999                                                  One Piece: Pirate Warriors 3
## 4000                                           Operation Flashpoint: Dragon Rising
## 4001                                           Operation Flashpoint: Dragon Rising
## 4002                                           Operation Flashpoint: Dragon Rising
## 4003                                               Operation Flashpoint: Red River
## 4004                                               Operation Flashpoint: Red River
## 4005                                               Operation Flashpoint: Red River
## 4006                                                                   Overlord II
## 4007                                                                   Overlord II
## 4008                                                                   Overlord II
## 4009                                                                     Overwatch
## 4010                                                                     Overwatch
## 4011                                                                     Overwatch
## 4012                                             PDC World Championship Darts 2008
## 4013                                             PDC World Championship Darts 2008
## 4014                                             PDC World Championship Darts 2008
## 4015                                        PDC World Championship Darts: Pro Tour
## 4016                                        PDC World Championship Darts: Pro Tour
## 4017                                        PDC World Championship Darts: Pro Tour
## 4018                                                           Pac-Man World Rally
## 4019                                                           Pac-Man World Rally
## 4020                                                           Pac-Man World Rally
## 4021                                                      Paws & Claws: Pet Resort
## 4022                                                      Paws & Claws: Pet Resort
## 4023                                                      Paws & Claws: Pet Resort
## 4024                                                        Penguins of Madagascar
## 4025                                                        Penguins of Madagascar
## 4026                                                        Penguins of Madagascar
## 4027                                                                   Petz Dogz 2
## 4028                                                                   Petz Dogz 2
## 4029                                                                   Petz Dogz 2
## 4030                                                                  Petz: Catz 2
## 4031                                                                  Petz: Catz 2
## 4032                                                                  Petz: Catz 2
## 4033                                                                Petz: Horsez 2
## 4034                                                                Petz: Horsez 2
## 4035                                                                Petz: Horsez 2
## 4036                                    Phineas and Ferb: Across the 2nd Dimension
## 4037                                    Phineas and Ferb: Across the 2nd Dimension
## 4038                                    Phineas and Ferb: Across the 2nd Dimension
## 4039                                                             Piglet's Big Game
## 4040                                                             Piglet's Big Game
## 4041                                                             Piglet's Big Game
## 4042                                                                    Pipe Mania
## 4043                                                                    Pipe Mania
## 4044                                                                    Pipe Mania
## 4045                                    Pirates of the Caribbean: Dead Man's Chest
## 4046                                    Pirates of the Caribbean: Dead Man's Chest
## 4047                                    Pirates of the Caribbean: Dead Man's Chest
## 4048                                          Plants vs. Zombies: Garden Warfare 2
## 4049                                          Plants vs. Zombies: Garden Warfare 2
## 4050                                          Plants vs. Zombies: Garden Warfare 2
## 4051                                                                Pony Friends 2
## 4052                                                                Pony Friends 2
## 4053                                                                Pony Friends 2
## 4054                                                                      Portal 2
## 4055                                                                      Portal 2
## 4056                                                                      Portal 2
## 4057                                                   Power Rangers: Dino Thunder
## 4058                                                   Power Rangers: Dino Thunder
## 4059                                                   Power Rangers: Dino Thunder
## 4060                                             Prince of Persia: The Two Thrones
## 4061                                             Prince of Persia: The Two Thrones
## 4062                                             Prince of Persia: The Two Thrones
## 4063                                              Prince of Persia: Warrior Within
## 4064                                              Prince of Persia: Warrior Within
## 4065                                              Prince of Persia: Warrior Within
## 4066                                                     Pro Evolution Soccer 2017
## 4067                                                     Pro Evolution Soccer 2017
## 4068                                                     Pro Evolution Soccer 2017
## 4069                                                        Pro Yaky? Spirits 2010
## 4070                                                        Pro Yaky? Spirits 2010
## 4071                                                        Pro Yaky? Spirits 2010
## 4072                                                        Pro Yaky? Spirits 2011
## 4073                                                        Pro Yaky? Spirits 2011
## 4074                                                        Pro Yaky? Spirits 2011
## 4075                                                        Pro Yaky? Spirits 2012
## 4076                                                        Pro Yaky? Spirits 2012
## 4077                                                        Pro Yaky? Spirits 2012
## 4078                                                        Pro Yaky? Spirits 2013
## 4079                                                        Pro Yaky? Spirits 2013
## 4080                                                        Pro Yaky? Spirits 2013
## 4081                                                        Pro Yaky? Spirits 2014
## 4082                                                        Pro Yaky? Spirits 2014
## 4083                                                        Pro Yaky? Spirits 2014
## 4084                                                   Pro Yakyuu Team o Tsukurou!
## 4085                                                   Pro Yakyuu Team o Tsukurou!
## 4086                                                   Pro Yakyuu Team o Tsukurou!
## 4087                                                                  Project CARS
## 4088                                                                  Project CARS
## 4089                                                                  Project CARS
## 4090                                                                   Putty Squad
## 4091                                                                   Putty Squad
## 4092                                                                   Putty Squad
## 4093                                                                   Puyo Puyo 7
## 4094                                                                   Puyo Puyo 7
## 4095                                                                   Puyo Puyo 7
## 4096                                        Puzzle Challenge: Crosswords and More!
## 4097                                        Puzzle Challenge: Crosswords and More!
## 4098                                        Puzzle Challenge: Crosswords and More!
## 4099                                                                      R.U.S.E.
## 4100                                                                      R.U.S.E.
## 4101                                                                      R.U.S.E.
## 4102                                                           R: Racing Evolution
## 4103                                                           R: Racing Evolution
## 4104                                                           R: Racing Evolution
## 4105                                                                          Rage
## 4106                                                                          Rage
## 4107                                                                          Rage
## 4108                                                    Rampage: Total Destruction
## 4109                                                    Rampage: Total Destruction
## 4110                                                    Rampage: Total Destruction
## 4111                                                            Rapala Pro Fishing
## 4112                                                            Rapala Pro Fishing
## 4113                                                            Rapala Pro Fishing
## 4114                                                                  Rayman Arena
## 4115                                                                  Rayman Arena
## 4116                                                                  Rayman Arena
## 4117                                                Ready 2 Rumble Boxing: Round 2
## 4118                                                Ready 2 Rumble Boxing: Round 2
## 4119                                                Ready 2 Rumble Boxing: Round 2
## 4120                                                                Red Faction II
## 4121                                                                Red Faction II
## 4122                                                                Red Faction II
## 4123                                                       Red Faction: Armageddon
## 4124                                                       Red Faction: Armageddon
## 4125                                                       Red Faction: Armageddon
## 4126                                                        Red Faction: Guerrilla
## 4127                                                        Red Faction: Guerrilla
## 4128                                                        Red Faction: Guerrilla
## 4129                                                                 RedCard 20-03
## 4130                                                                 RedCard 20-03
## 4131                                                                 RedCard 20-03
## 4132                                                                   Remember Me
## 4133                                                                   Remember Me
## 4134                                                                   Remember Me
## 4135                                                                 Resident Evil
## 4136                                                                 Resident Evil
## 4137                                                                 Resident Evil
## 4138                                                               Resident Evil 2
## 4139                                                               Resident Evil 2
## 4140                                                               Resident Evil 2
## 4141                                                               Resident Evil 5
## 4142                                                               Resident Evil 5
## 4143                                                               Resident Evil 5
## 4144                                         Resident Evil: Operation Raccoon City
## 4145                                         Resident Evil: Operation Raccoon City
## 4146                                         Resident Evil: Operation Raccoon City
## 4147                                                                   Ridge Racer
## 4148                                                                   Ridge Racer
## 4149                                                                   Ridge Racer
## 4150                                                         Ridge Racer Unbounded
## 4151                                                         Ridge Racer Unbounded
## 4152                                                         Ridge Racer Unbounded
## 4153                                                       Rise of the Tomb Raider
## 4154                                                       Rise of the Tomb Raider
## 4155                                                       Rise of the Tomb Raider
## 4156                                                          Risen 2: Dark Waters
## 4157                                                          Risen 2: Dark Waters
## 4158                                                          Risen 2: Dark Waters
## 4159                                                                      RoadKill
## 4160                                                                      RoadKill
## 4161                                                                      RoadKill
## 4162                                                           Robotech: Battlecry
## 4163                                                           Robotech: Battlecry
## 4164                                                           Robotech: Battlecry
## 4165                                                                Robotics;Notes
## 4166                                                                Robotics;Notes
## 4167                                                                Robotics;Notes
## 4168                                                Rock Band Country Track Pack 2
## 4169                                                Rock Band Country Track Pack 2
## 4170                                                Rock Band Country Track Pack 2
## 4171                                                                 Rocket League
## 4172                                                                 Rocket League
## 4173                                                                 Rocket League
## 4174                                                   Rocket Power: Beach Bandits
## 4175                                                   Rocket Power: Beach Bandits
## 4176                                                   Rocket Power: Beach Bandits
## 4177                                                                     Rocksmith
## 4178                                                                     Rocksmith
## 4179                                                                     Rocksmith
## 4180                                                                         Rocky
## 4181                                                                         Rocky
## 4182                                                                         Rocky
## 4183                                                                     Rogue Ops
## 4184                                                                     Rogue Ops
## 4185                                                                     Rogue Ops
## 4186                          Royal Palace of White Sword and The City of Gentiles
## 4187                          Royal Palace of White Sword and The City of Gentiles
## 4188                          Royal Palace of White Sword and The City of Gentiles
## 4189                                                                           SAW
## 4190                                                                           SAW
## 4191                                                                           SAW
## 4192                                    SBK 2011: FIM Superbike World Championship
## 4193                                    SBK 2011: FIM Superbike World Championship
## 4194                                    SBK 2011: FIM Superbike World Championship
## 4195                                                    SNK Arcade Classics Vol. 1
## 4196                                                    SNK Arcade Classics Vol. 1
## 4197                                                    SNK Arcade Classics Vol. 1
## 4198                                                  SRS: Street Racing Syndicate
## 4199                                                  SRS: Street Racing Syndicate
## 4200                                                  SRS: Street Racing Syndicate
## 4201                                                                           SSX
## 4202                                                                           SSX
## 4203                                                                           SSX
## 4204                                                        Sacred 2: Fallen Angel
## 4205                                                        Sacred 2: Fallen Angel
## 4206                                                        Sacred 2: Fallen Angel
## 4207                                                                      Sacred 3
## 4208                                                                      Sacred 3
## 4209                                                                      Sacred 3
## 4210                                                                  Saints Row 2
## 4211                                                                  Saints Row 2
## 4212                                                                  Saints Row 2
## 4213                                                         Saints Row: The Third
## 4214                                                         Saints Row: The Third
## 4215                                                         Saints Row: The Third
## 4216                                                     Samurai Shodown Anthology
## 4217                                                     Samurai Shodown Anthology
## 4218                                                     Samurai Shodown Anthology
## 4219                                                            Samurai Warriors 2
## 4220                                                            Samurai Warriors 2
## 4221                                                            Samurai Warriors 2
## 4222                                                            Samurai Warriors 4
## 4223                                                            Samurai Warriors 4
## 4224                                                            Samurai Warriors 4
## 4225                                                         Samurai Warriors 4-II
## 4226                                                         Samurai Warriors 4-II
## 4227                                                         Samurai Warriors 4-II
## 4228                                                   Samurai Warriors 4: Empires
## 4229                                                   Samurai Warriors 4: Empires
## 4230                                                   Samurai Warriors 4: Empires
## 4231                                                                        Scaler
## 4232                                                                        Scaler
## 4233                                                                        Scaler
## 4234                                          Scene It? Bright Lights! Big Screen!
## 4235                                          Scene It? Bright Lights! Big Screen!
## 4236                                          Scene It? Bright Lights! Big Screen!
## 4237                                                     Scooby-Doo! First Frights
## 4238                                                     Scooby-Doo! First Frights
## 4239                                                     Scooby-Doo! First Frights
## 4240                                              Scooby-Doo! Night of 100 Frights
## 4241                                              Scooby-Doo! Night of 100 Frights
## 4242                                              Scooby-Doo! Night of 100 Frights
## 4243                                              Scooby-Doo! and the Spooky Swamp
## 4244                                              Scooby-Doo! and the Spooky Swamp
## 4245                                              Scooby-Doo! and the Spooky Swamp
## 4246                                                                      Scrabble
## 4247                                                                      Scrabble
## 4248                                                                      Scrabble
## 4249                                                                  Second Sight
## 4250                                                                  Second Sight
## 4251                                                                  Second Sight
## 4252                                                Secret Files 2: Puritas Cordis
## 4253                                                Secret Files 2: Puritas Cordis
## 4254                                                Secret Files 2: Puritas Cordis
## 4255                                                        Secret Files: Tunguska
## 4256                                                        Secret Files: Tunguska
## 4257                                                        Secret Files: Tunguska
## 4258                                                              Sega Soccer Slam
## 4259                                                              Sega Soccer Slam
## 4260                                                              Sega Soccer Slam
## 4261                                     Sesame Street: Cookie's Counting Carnival
## 4262                                     Sesame Street: Cookie's Counting Carnival
## 4263                                     Sesame Street: Cookie's Counting Carnival
## 4264                                      Sesame Street: Elmo's A-to-Zoo Adventure
## 4265                                      Sesame Street: Elmo's A-to-Zoo Adventure
## 4266                                      Sesame Street: Elmo's A-to-Zoo Adventure
## 4267                                                           Shadow The Hedgehog
## 4268                                                           Shadow The Hedgehog
## 4269                                                           Shadow The Hedgehog
## 4270                             Shin Megami Tensei: Devil Summoner - Soul Hackers
## 4271                             Shin Megami Tensei: Devil Summoner - Soul Hackers
## 4272                             Shin Megami Tensei: Devil Summoner - Soul Hackers
## 4273                                                                 Shovel Knight
## 4274                                                                 Shovel Knight
## 4275                                                                 Shovel Knight
## 4276                                                                       Shrek 2
## 4277                                                                       Shrek 2
## 4278                                                                       Shrek 2
## 4279                                                             Shrek Super Party
## 4280                                                             Shrek Super Party
## 4281                                                             Shrek Super Party
## 4282                                            Shrek's Carnival Craze Party Games
## 4283                                            Shrek's Carnival Craze Party Games
## 4284                                            Shrek's Carnival Craze Party Games
## 4285                                           Sid Meier's Civilization Revolution
## 4286                                           Sid Meier's Civilization Revolution
## 4287                                           Sid Meier's Civilization Revolution
## 4288                                                          Sid Meier's Pirates!
## 4289                                                          Sid Meier's Pirates!
## 4290                                                          Sid Meier's Pirates!
## 4291                                               Silent Hill: Shattered Memories
## 4292                                               Silent Hill: Shattered Memories
## 4293                                               Silent Hill: Shattered Memories
## 4294                                                                   Singularity
## 4295                                                                   Singularity
## 4296                                                                   Singularity
## 4297                                                  Ski-Doo Snowmobile Challenge
## 4298                                                  Ski-Doo Snowmobile Challenge
## 4299                                                  Ski-Doo Snowmobile Challenge
## 4300                                                                Smashing Drive
## 4301                                                                Smashing Drive
## 4302                                                                Smashing Drive
## 4303                                                               Sniper Elite V2
## 4304                                                               Sniper Elite V2
## 4305                                                               Sniper Elite V2
## 4306                                                         Sniper: Ghost Warrior
## 4307                                                         Sniper: Ghost Warrior
## 4308                                                         Sniper: Ghost Warrior
## 4309                                                       Sniper: Ghost Warrior 2
## 4310                                                       Sniper: Ghost Warrior 2
## 4311                                                       Sniper: Ghost Warrior 2
## 4312                                                              Song of the Deep
## 4313                                                              Song of the Deep
## 4314                                                              Song of the Deep
## 4315                                                 Sonic & Sega All-Stars Racing
## 4316                                                 Sonic & Sega All-Stars Racing
## 4317                                                 Sonic & Sega All-Stars Racing
## 4318                                                                  Sonic Heroes
## 4319                                                                  Sonic Heroes
## 4320                                                                  Sonic Heroes
## 4321                                                                  Sonic Riders
## 4322                                                                  Sonic Riders
## 4323                                                                  Sonic Riders
## 4324                                                                SoulCalibur II
## 4325                                                                SoulCalibur II
## 4326                                                                SoulCalibur II
## 4327                                                South Park: The Stick of Truth
## 4328                                                South Park: The Stick of Truth
## 4329                                                South Park: The Stick of Truth
## 4330                                                        Spartan: Total Warrior
## 4331                                                        Spartan: Total Warrior
## 4332                                                        Spartan: Total Warrior
## 4333                                                             Spawn: Armageddon
## 4334                                                             Spawn: Armageddon
## 4335                                                             Spawn: Armageddon
## 4336                                                            Spec Ops: The Line
## 4337                                                            Spec Ops: The Line
## 4338                                                            Spec Ops: The Line
## 4339                                                                   Speed Kings
## 4340                                                                   Speed Kings
## 4341                                                                   Speed Kings
## 4342                                                    Speed Racer: The Videogame
## 4343                                                    Speed Racer: The Videogame
## 4344                                                    Speed Racer: The Videogame
## 4345                                                   Sphinx and the Cursed Mummy
## 4346                                                   Sphinx and the Cursed Mummy
## 4347                                                   Sphinx and the Cursed Mummy
## 4348                                                                    Spider-Man
## 4349                                                                    Spider-Man
## 4350                                                                    Spider-Man
## 4351                      SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 4352                      SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 4353                      SpongeBob SquarePants featuring Nicktoons: Globs of Doom
## 4354                          SpongeBob SquarePants: Creature from the Krusty Krab
## 4355                          SpongeBob SquarePants: Creature from the Krusty Krab
## 4356                          SpongeBob SquarePants: Creature from the Krusty Krab
## 4357                             SpongeBob SquarePants: Plankton's Robotic Revenge
## 4358                             SpongeBob SquarePants: Plankton's Robotic Revenge
## 4359                             SpongeBob SquarePants: Plankton's Robotic Revenge
## 4360                         SpongeBob SquarePants: Revenge of the Flying Dutchman
## 4361                         SpongeBob SquarePants: Revenge of the Flying Dutchman
## 4362                         SpongeBob SquarePants: Revenge of the Flying Dutchman
## 4363                                             SpongeBob's Atlantis SquarePantis
## 4364                                             SpongeBob's Atlantis SquarePantis
## 4365                                             SpongeBob's Atlantis SquarePantis
## 4366                                                   SpongeBob's Truth or Square
## 4367                                                   SpongeBob's Truth or Square
## 4368                                                   SpongeBob's Truth or Square
## 4369                                                          SpongeBob: HeroPants
## 4370                                                          SpongeBob: HeroPants
## 4371                                                          SpongeBob: HeroPants
## 4372                                                                    Spy Hunter
## 4373                                                                    Spy Hunter
## 4374                                                                    Spy Hunter
## 4375                                                          Spyro: A Hero's Tail
## 4376                                                          Spyro: A Hero's Tail
## 4377                                                          Spyro: A Hero's Tail
## 4378                                                  Stacked with Daniel Negreanu
## 4379                                                  Stacked with Daniel Negreanu
## 4380                                                  Stacked with Daniel Negreanu
## 4381                                                           Star Trek: The Game
## 4382                                                           Star Trek: The Game
## 4383                                                           Star Trek: The Game
## 4384                                                  Star Wars Battlefront (2015)
## 4385                                                  Star Wars Battlefront (2015)
## 4386                                                  Star Wars Battlefront (2015)
## 4387                                                        Star Wars: Battlefront
## 4388                                                        Star Wars: Battlefront
## 4389                                                        Star Wars: Battlefront
## 4390                                                         Star Wars: Clone Wars
## 4391                                                         Star Wars: Clone Wars
## 4392                                                         Star Wars: Clone Wars
## 4393                                                                 Steins;Gate 0
## 4394                                                                 Steins;Gate 0
## 4395                                                                 Steins;Gate 0
## 4396                                          Steins;Gate: Hiyoku Renri no Darling
## 4397                                          Steins;Gate: Hiyoku Renri no Darling
## 4398                                          Steins;Gate: Hiyoku Renri no Darling
## 4399                                                                     Stormrise
## 4400                                                                     Stormrise
## 4401                                                                     Stormrise
## 4402                                                        Street Fighter Alpha 2
## 4403                                                        Street Fighter Alpha 2
## 4404                                                        Street Fighter Alpha 2
## 4405                                                             Street Fighter IV
## 4406                                                             Street Fighter IV
## 4407                                                             Street Fighter IV
## 4408                                                                  Street Hoops
## 4409                                                                  Street Hoops
## 4410                                                                  Street Hoops
## 4411                                                          Strike Force Bowling
## 4412                                                          Strike Force Bowling
## 4413                                                          Strike Force Bowling
## 4414                                                            Stuntman: Ignition
## 4415                                                            Stuntman: Ignition
## 4416                                                            Stuntman: Ignition
## 4417                                                   Super Monkey Ball Adventure
## 4418                                                   Super Monkey Ball Adventure
## 4419                                                   Super Monkey Ball Adventure
## 4420                                                                 Supremacy MMA
## 4421                                                                 Supremacy MMA
## 4422                                                                 Supremacy MMA
## 4423                                                   Sword Art Online: Lost Song
## 4424                                                   Sword Art Online: Lost Song
## 4425                                                   Sword Art Online: Lost Song
## 4426                                                                       Syberia
## 4427                                                                       Syberia
## 4428                                                                       Syberia
## 4429                                                                     Syndicate
## 4430                                                                     Syndicate
## 4431                                                                     Syndicate
## 4432                                 TOCA Race Driver 2: Ultimate Racing Simulator
## 4433                                 TOCA Race Driver 2: Ultimate Racing Simulator
## 4434                                 TOCA Race Driver 2: Ultimate Racing Simulator
## 4435                                                            TOCA Race Driver 3
## 4436                                                            TOCA Race Driver 3
## 4437                                                            TOCA Race Driver 3
## 4438                                                     Tak and the Power of Juju
## 4439                                                     Tak and the Power of Juju
## 4440                                                     Tak and the Power of Juju
## 4441                                                            Tales of Phantasia
## 4442                                                            Tales of Phantasia
## 4443                                                            Tales of Phantasia
## 4444                                                                    Taz Wanted
## 4445                                                                    Taz Wanted
## 4446                                                                    Taz Wanted
## 4447                                                                   Teen Titans
## 4448                                                                   Teen Titans
## 4449                                                                   Teen Titans
## 4450                              Teenage Mutant Ninja Turtles: Danger of the Ooze
## 4451                              Teenage Mutant Ninja Turtles: Danger of the Ooze
## 4452                              Teenage Mutant Ninja Turtles: Danger of the Ooze
## 4453                                                                      Tekken 6
## 4454                                                                      Tekken 6
## 4455                                                                      Tekken 6
## 4456                                                       Tekken Tag Tournament 2
## 4457                                                       Tekken Tag Tournament 2
## 4458                                                       Tekken Tag Tournament 2
## 4459                                            Terminator 3: Rise of the Machines
## 4460                                            Terminator 3: Rise of the Machines
## 4461                                            Terminator 3: Rise of the Machines
## 4462                                                  Terminator 3: The Redemption
## 4463                                                  Terminator 3: The Redemption
## 4464                                                  Terminator 3: The Redemption
## 4465                                                          Test Drive Unlimited
## 4466                                                          Test Drive Unlimited
## 4467                                                          Test Drive Unlimited
## 4468                                                        Test Drive Unlimited 2
## 4469                                                        Test Drive Unlimited 2
## 4470                                                        Test Drive Unlimited 2
## 4471                                                                 Tetris Worlds
## 4472                                                                 Tetris Worlds
## 4473                                                                 Tetris Worlds
## 4474            The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 4475            The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 4476            The Adventures of Jimmy Neutron Boy Genius: Attack of the Twonkies
## 4477                        The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4478                        The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4479                        The Adventures of Jimmy Neutron Boy Genius: Jet Fusion
## 4480                                                        The Beatles: Rock Band
## 4481                                                        The Beatles: Rock Band
## 4482                                                        The Beatles: Rock Band
## 4483                                                                The Bible Game
## 4484                                                                The Bible Game
## 4485                                                                The Bible Game
## 4486                                                 The Bureau: XCOM Declassified
## 4487                                                 The Bureau: XCOM Declassified
## 4488                                                 The Bureau: XCOM Declassified
## 4489                             The Chronicles of Riddick: Assault on Dark Athena
## 4490                             The Chronicles of Riddick: Assault on Dark Athena
## 4491                             The Chronicles of Riddick: Assault on Dark Athena
## 4492                                                            The Crew: Wild Run
## 4493                                                            The Crew: Wild Run
## 4494                                                            The Crew: Wild Run
## 4495                                                            The Cursed Crusade
## 4496                                                            The Cursed Crusade
## 4497                                                            The Cursed Crusade
## 4498                                                               The Darkness II
## 4499                                                               The Darkness II
## 4500                                                               The Darkness II
## 4501                                                The Elder Scrolls IV: Oblivion
## 4502                                                The Elder Scrolls IV: Oblivion
## 4503                                                The Elder Scrolls IV: Oblivion
## 4504                                                      The Elder Scrolls Online
## 4505                                                      The Elder Scrolls Online
## 4506                                                      The Elder Scrolls Online
## 4507                                                   The Elder Scrolls V: Skyrim
## 4508                                                   The Elder Scrolls V: Skyrim
## 4509                                                   The Elder Scrolls V: Skyrim
## 4510                                       The Fairly Odd Parents: Shadow Showdown
## 4511                                       The Fairly Odd Parents: Shadow Showdown
## 4512                                       The Fairly Odd Parents: Shadow Showdown
## 4513                                   The History Channel: Battle for the Pacific
## 4514                                   The History Channel: Battle for the Pacific
## 4515                                   The History Channel: Battle for the Pacific
## 4516                                                   The Hustle: Detroit Streets
## 4517                                                   The Hustle: Detroit Streets
## 4518                                                   The Hustle: Detroit Streets
## 4519                                     The Incredible Hulk: Ultimate Destruction
## 4520                                     The Incredible Hulk: Ultimate Destruction
## 4521                                     The Incredible Hulk: Ultimate Destruction
## 4522                                                               The Incredibles
## 4523                                                               The Incredibles
## 4524                                                               The Incredibles
## 4525                                                               The Italian Job
## 4526                                                               The Italian Job
## 4527                                                               The Italian Job
## 4528                                                      The King of Fighters '95
## 4529                                                      The King of Fighters '95
## 4530                                                      The King of Fighters '95
## 4531                                                      The King of Fighters '96
## 4532                                                      The King of Fighters '96
## 4533                                                      The King of Fighters '96
## 4534                              The King of Fighters Collection: The Orochi Saga
## 4535                              The King of Fighters Collection: The Orochi Saga
## 4536                              The King of Fighters Collection: The Orochi Saga
## 4537                         The Legend of Heroes: Trails in the Sky First Chapter
## 4538                         The Legend of Heroes: Trails in the Sky First Chapter
## 4539                         The Legend of Heroes: Trails in the Sky First Chapter
## 4540                         The Legend of Heroes: Trails in the Sky Third Chapter
## 4541                         The Legend of Heroes: Trails in the Sky Third Chapter
## 4542                         The Legend of Heroes: Trails in the Sky Third Chapter
## 4543                                        The Legend of Spyro: The Eternal Night
## 4544                                        The Legend of Spyro: The Eternal Night
## 4545                                        The Legend of Spyro: The Eternal Night
## 4546                                          The Lord of the Rings: The Third Age
## 4547                                          The Lord of the Rings: The Third Age
## 4548                                          The Lord of the Rings: The Third Age
## 4549                                       The Lord of the Rings: War in the North
## 4550                                       The Lord of the Rings: War in the North
## 4551                                       The Lord of the Rings: War in the North
## 4552                                         The Mummy: Tomb of the Dragon Emperor
## 4553                                         The Mummy: Tomb of the Dragon Emperor
## 4554                                         The Mummy: Tomb of the Dragon Emperor
## 4555                                       The Naked Brothers Band: The Video Game
## 4556                                       The Naked Brothers Band: The Video Game
## 4557                                       The Naked Brothers Band: The Video Game
## 4558                                                                The Orange Box
## 4559                                                                The Orange Box
## 4560                                                                The Orange Box
## 4561                                   The Peanuts Movie: Snoopy's Grand Adventure
## 4562                                   The Peanuts Movie: Snoopy's Grand Adventure
## 4563                                   The Peanuts Movie: Snoopy's Grand Adventure
## 4564                                                             The Polar Express
## 4565                                                             The Polar Express
## 4566                                                             The Polar Express
## 4567                                                     The Rise of the Argonauts
## 4568                                                     The Rise of the Argonauts
## 4569                                                     The Rise of the Argonauts
## 4570                                                                  The Saboteur
## 4571                                                                  The Saboteur
## 4572                                                                  The Saboteur
## 4573                                                       The Simpsons: Hit & Run
## 4574                                                       The Simpsons: Hit & Run
## 4575                                                       The Simpsons: Hit & Run
## 4576                                                                    The Smurfs
## 4577                                                                    The Smurfs
## 4578                                                                    The Smurfs
## 4579                                                     The Spiderwick Chronicles
## 4580                                                     The Spiderwick Chronicles
## 4581                                                     The Spiderwick Chronicles
## 4582                                                        The Tale of Despereaux
## 4583                                                        The Tale of Despereaux
## 4584                                                        The Tale of Despereaux
## 4585                                                              The Technomancer
## 4586                                                              The Technomancer
## 4587                                                              The Technomancer
## 4588                                              The Testament of Sherlock Holmes
## 4589                                              The Testament of Sherlock Holmes
## 4590                                              The Testament of Sherlock Holmes
## 4591                                                                     The Voice
## 4592                                                                     The Voice
## 4593                                                                     The Voice
## 4594                                           The Walking Dead: Survival Instinct
## 4595                                           The Walking Dead: Survival Instinct
## 4596                                           The Walking Dead: Survival Instinct
## 4597                                                                  The Warriors
## 4598                                                                  The Warriors
## 4599                                                                  The Warriors
## 4600                                                      The Witcher 3: Wild Hunt
## 4601                                                      The Witcher 3: Wild Hunt
## 4602                                                      The Witcher 3: Wild Hunt
## 4603                                                                  The X-Factor
## 4604                                                                  The X-Factor
## 4605                                                                  The X-Factor
## 4606                                                                    Theme Park
## 4607                                                                    Theme Park
## 4608                                                                    Theme Park
## 4609                                                       Tiger Woods PGA Tour 11
## 4610                                                       Tiger Woods PGA Tour 11
## 4611                                                       Tiger Woods PGA Tour 11
## 4612                                          Tiger Woods PGA Tour 12: The Masters
## 4613                                          Tiger Woods PGA Tour 12: The Masters
## 4614                                          Tiger Woods PGA Tour 12: The Masters
## 4615                                                     Tiger Woods PGA Tour 2003
## 4616                                                     Tiger Woods PGA Tour 2003
## 4617                                                     Tiger Woods PGA Tour 2003
## 4618                                                                Time Travelers
## 4619                                                                Time Travelers
## 4620                                                                Time Travelers
## 4621                                                                     TimeShift
## 4622                                                                     TimeShift
## 4623                                                                     TimeShift
## 4624                                                               TimeSplitters 2
## 4625                                                               TimeSplitters 2
## 4626                                                               TimeSplitters 2
## 4627                                                 TimeSplitters: Future Perfect
## 4628                                                 TimeSplitters: Future Perfect
## 4629                                                 TimeSplitters: Future Perfect
## 4630                                                                     Titanfall
## 4631                                                                     Titanfall
## 4632                                                                     Titanfall
## 4633                                                    Tom Clancy's Ghost Recon 2
## 4634                                                    Tom Clancy's Ghost Recon 2
## 4635                                                    Tom Clancy's Ghost Recon 2
## 4636                                Tom Clancy's Ghost Recon Advanced Warfighter 2
## 4637                                Tom Clancy's Ghost Recon Advanced Warfighter 2
## 4638                                Tom Clancy's Ghost Recon Advanced Warfighter 2
## 4639                                      Tom Clancy's Ghost Recon: Future Soldier
## 4640                                      Tom Clancy's Ghost Recon: Future Soldier
## 4641                                      Tom Clancy's Ghost Recon: Future Soldier
## 4642                                                             Tom Clancy's HAWX
## 4643                                                             Tom Clancy's HAWX
## 4644                                                             Tom Clancy's HAWX
## 4645                                                    Tom Clancy's Rainbow Six 3
## 4646                                                    Tom Clancy's Rainbow Six 3
## 4647                                                    Tom Clancy's Rainbow Six 3
## 4648                                            Tom Clancy's Rainbow Six: Lockdown
## 4649                                            Tom Clancy's Rainbow Six: Lockdown
## 4650                                            Tom Clancy's Rainbow Six: Lockdown
## 4651                                               Tom Clancy's Rainbow Six: Siege
## 4652                                               Tom Clancy's Rainbow Six: Siege
## 4653                                               Tom Clancy's Rainbow Six: Siege
## 4654                                               Tom Clancy's Rainbow Six: Vegas
## 4655                                               Tom Clancy's Rainbow Six: Vegas
## 4656                                               Tom Clancy's Rainbow Six: Vegas
## 4657                                             Tom Clancy's Rainbow Six: Vegas 2
## 4658                                             Tom Clancy's Rainbow Six: Vegas 2
## 4659                                             Tom Clancy's Rainbow Six: Vegas 2
## 4660                                                     Tom Clancy's The Division
## 4661                                                     Tom Clancy's The Division
## 4662                                                     Tom Clancy's The Division
## 4663                                          Tom and Jerry in War of the Whiskers
## 4664                                          Tom and Jerry in War of the Whiskers
## 4665                                          Tom and Jerry in War of the Whiskers
## 4666                                                                   Tomb Raider
## 4667                                                                   Tomb Raider
## 4668                                                                   Tomb Raider
## 4669                                                Tony Hawk's American Wasteland
## 4670                                                Tony Hawk's American Wasteland
## 4671                                                Tony Hawk's American Wasteland
## 4672                                                        Tony Hawk's Pro Skater
## 4673                                                        Tony Hawk's Pro Skater
## 4674                                                        Tony Hawk's Pro Skater
## 4675                                                      Tony Hawk's Pro Skater 2
## 4676                                                      Tony Hawk's Pro Skater 2
## 4677                                                      Tony Hawk's Pro Skater 2
## 4678                                                               Tony Hawk: RIDE
## 4679                                                               Tony Hawk: RIDE
## 4680                                                               Tony Hawk: RIDE
## 4681                                                              Tony Hawk: Shred
## 4682                                                              Tony Hawk: Shred
## 4683                                                              Tony Hawk: Shred
## 4684                                                         Top Gun: Combat Zones
## 4685                                                         Top Gun: Combat Zones
## 4686                                                         Top Gun: Combat Zones
## 4687                                                                    Top Spin 4
## 4688                                                                    Top Spin 4
## 4689                                                                    Top Spin 4
## 4690                                                              Tornado Outbreak
## 4691                                                              Tornado Outbreak
## 4692                                                              Tornado Outbreak
## 4693                                                  Totally Spies! Totally Party
## 4694                                                  Totally Spies! Totally Party
## 4695                                                  Totally Spies! Totally Party
## 4696                                                                    Toukiden 2
## 4697                                                                    Toukiden 2
## 4698                                                                    Toukiden 2
## 4699                                                               Toukiden Kiwami
## 4700                                                               Toukiden Kiwami
## 4701                                                               Toukiden Kiwami
## 4702                                                              TrackMania Turbo
## 4703                                                              TrackMania Turbo
## 4704                                                              TrackMania Turbo
## 4705                                               Transformers: Fall of Cybertron
## 4706                                               Transformers: Fall of Cybertron
## 4707                                               Transformers: Fall of Cybertron
## 4708                                                           Transformers: Prime
## 4709                                                           Transformers: Prime
## 4710                                                           Transformers: Prime
## 4711                Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 4712                Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 4713                Transformers: War for Cybertron (XBox 360, PS3, & PC Versions)
## 4714                                                                 Trials Fusion
## 4715                                                                 Trials Fusion
## 4716                                                                 Trials Fusion
## 4717                                                                   Trigger Man
## 4718                                                                   Trigger Man
## 4719                                                                   Trigger Man
## 4720                                                                     Tropico 5
## 4721                                                                     Tropico 5
## 4722                                                                     Tropico 5
## 4723                                                     True Crime: New York City
## 4724                                                     True Crime: New York City
## 4725                                                     True Crime: New York City
## 4726                                                     True Crime: Streets of LA
## 4727                                                     True Crime: Streets of LA
## 4728                                                     True Crime: Streets of LA
## 4729                                                                 Truth or Lies
## 4730                                                                 Truth or Lies
## 4731                                                                 Truth or Lies
## 4732                                                                         Turok
## 4733                                                                         Turok
## 4734                                                                         Turok
## 4735                                                                 Two Worlds II
## 4736                                                                 Two Worlds II
## 4737                                                                 Two Worlds II
## 4738                                                        Ty the Tasmanian Tiger
## 4739                                                        Ty the Tasmanian Tiger
## 4740                                                        Ty the Tasmanian Tiger
## 4741                             UFC Personal Trainer: The Ultimate Fitness System
## 4742                             UFC Personal Trainer: The Ultimate Fitness System
## 4743                             UFC Personal Trainer: The Ultimate Fitness System
## 4744                                                           UFC Undisputed 2010
## 4745                                                           UFC Undisputed 2010
## 4746                                                           UFC Undisputed 2010
## 4747                                                Ultimate Board Game Collection
## 4748                                                Ultimate Board Game Collection
## 4749                                                Ultimate Board Game Collection
## 4750                                                  Ultimate Marvel vs. Capcom 3
## 4751                                                  Ultimate Marvel vs. Capcom 3
## 4752                                                  Ultimate Marvel vs. Capcom 3
## 4753                                                         Unreal Tournament III
## 4754                                                         Unreal Tournament III
## 4755                                                         Unreal Tournament III
## 4756                                              Utawarerumono: Futari no Hakuoro
## 4757                                              Utawarerumono: Futari no Hakuoro
## 4758                                              Utawarerumono: Futari no Hakuoro
## 4759                                              Utawarerumono: Itsuwari no Kamen
## 4760                                              Utawarerumono: Itsuwari no Kamen
## 4761                                              Utawarerumono: Itsuwari no Kamen
## 4762                                                                     V-Rally 3
## 4763                                                                     V-Rally 3
## 4764                                                                     V-Rally 3
## 4765                                                     Valentino Rossi: The Game
## 4766                                                     Valentino Rossi: The Game
## 4767                                                     Valentino Rossi: The Game
## 4768                                                                   Van Helsing
## 4769                                                                   Van Helsing
## 4770                                                                   Van Helsing
## 4771                                                                      Venetica
## 4772                                                                      Venetica
## 4773                                                                      Venetica
## 4774                                                                          Vexx
## 4775                                                                          Vexx
## 4776                                                                          Vexx
## 4777                                                            Virtua Tennis 2009
## 4778                                                            Virtua Tennis 2009
## 4779                                                            Virtua Tennis 2009
## 4780                                           WRC 2: FIA World Rally Championship
## 4781                                           WRC 2: FIA World Rally Championship
## 4782                                           WRC 2: FIA World Rally Championship
## 4783                                                               WTA Tour Tennis
## 4784                                                               WTA Tour Tennis
## 4785                                                               WTA Tour Tennis
## 4786                                                                       WWE '12
## 4787                                                                       WWE '12
## 4788                                                                       WWE '12
## 4789                                                                       WWE '13
## 4790                                                                       WWE '13
## 4791                                                                       WWE '13
## 4792                                                    WWE SmackDown vs. RAW 2007
## 4793                                                    WWE SmackDown vs. RAW 2007
## 4794                                                    WWE SmackDown vs. RAW 2007
## 4795                                 Wakeboarding Unleashed Featuring Shaun Murray
## 4796                                 Wakeboarding Unleashed Featuring Shaun Murray
## 4797                                 Wakeboarding Unleashed Featuring Shaun Murray
## 4798                                               Wallace & Gromit in Project Zoo
## 4799                                               Wallace & Gromit in Project Zoo
## 4800                                               Wallace & Gromit in Project Zoo
## 4801                                                Warhammer 40,000: Space Marine
## 4802                                                Warhammer 40,000: Space Marine
## 4803                                                Warhammer 40,000: Space Marine
## 4804                                                               Warriors Orochi
## 4805                                                               Warriors Orochi
## 4806                                                               Warriors Orochi
## 4807                                                             Warriors Orochi 2
## 4808                                                             Warriors Orochi 2
## 4809                                                             Warriors Orochi 2
## 4810                                                                   Wasteland 2
## 4811                                                                   Wasteland 2
## 4812                                                                   Wasteland 2
## 4813                                                            Winter Sports 2011
## 4814                                                            Winter Sports 2011
## 4815                                                            Winter Sports 2011
## 4816                                         Winter Sports 3: The Great Tournament
## 4817                                         Winter Sports 3: The Great Tournament
## 4818                                         Winter Sports 3: The Great Tournament
## 4819                                                                  Winter Stars
## 4820                                                                  Winter Stars
## 4821                                                                  Winter Stars
## 4822                                                                   Wolfenstein
## 4823                                                                   Wolfenstein
## 4824                                                                   Wolfenstein
## 4825                                                    Wolfenstein: The Old Blood
## 4826                                                    Wolfenstein: The Old Blood
## 4827                                                    Wolfenstein: The Old Blood
## 4828                                                      World Championship Poker
## 4829                                                      World Championship Poker
## 4830                                                      World Championship Poker
## 4831                          World Championship Poker 2: Featuring Howard Lederer
## 4832                          World Championship Poker 2: Featuring Howard Lederer
## 4833                          World Championship Poker 2: Featuring Howard Lederer
## 4834                     World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 4835                     World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 4836                     World Soccer Winning Eleven 2010: Aoki Samurai no Chousen
## 4837                                                                  World of Zoo
## 4838                                                                  World of Zoo
## 4839                                                                  World of Zoo
## 4840                                                                      Worms 3D
## 4841                                                                      Worms 3D
## 4842                                                                      Worms 3D
## 4843                                                Wreckless: ThE YaKuza MisSiOns
## 4844                                                Wreckless: ThE YaKuza MisSiOns
## 4845                                                Wreckless: ThE YaKuza MisSiOns
## 4846                                                                 X-Men Legends
## 4847                                                                 X-Men Legends
## 4848                                                                 X-Men Legends
## 4849                                    X-Men Origins: Wolverine - Uncaged Edition
## 4850                                    X-Men Origins: Wolverine - Uncaged Edition
## 4851                                    X-Men Origins: Wolverine - Uncaged Edition
## 4852                                                         X-Men: Next Dimension
## 4853                                                         X-Men: Next Dimension
## 4854                                                         X-Men: Next Dimension
## 4855                                                                        XCOM 2
## 4856                                                                        XCOM 2
## 4857                                                                        XCOM 2
## 4858                                                           XCOM: Enemy Unknown
## 4859                                                           XCOM: Enemy Unknown
## 4860                                                           XCOM: Enemy Unknown
## 4861                                            XGRA: Extreme G Racing Association
## 4862                                            XGRA: Extreme G Racing Association
## 4863                                            XGRA: Extreme G Racing Association
## 4864                                                                          XIII
## 4865                                                                          XIII
## 4866                                                                          XIII
## 4867                                                              Yoru no Nai Kuni
## 4868                                                              Yoru no Nai Kuni
## 4869                                                              Yoru no Nai Kuni
## 4870                                                                 Zumba Fitness
## 4871                                                                 Zumba Fitness
## 4872                                                                 Zumba Fitness
## 4873                                                                 [Prototype 2]
## 4874                                                                 [Prototype 2]
## 4875                                                                 [Prototype 2]
## 4876                                                  007: The World is not Enough
## 4877                                                  007: The World is not Enough
## 4878                                                             11eyes: CrossOver
## 4879                                                             11eyes: CrossOver
## 4880                                              18 Wheeler: American Pro Trucker
## 4881                                              18 Wheeler: American Pro Trucker
## 4882                                                              187: Ride or Die
## 4883                                                              187: Ride or Die
## 4884                    2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 4885                    2 in 1 Combo Pack: Sonic Heroes / Super Monkey Ball Deluxe
## 4886                                                    2014 FIFA World Cup Brazil
## 4887                                                    2014 FIFA World Cup Brazil
## 4888                                                                    25 to Life
## 4889                                                                    25 to Life
## 4890                                             3rd Super Robot Wars Z Jigoku Hen
## 4891                                             3rd Super Robot Wars Z Jigoku Hen
## 4892                                           3rd Super Robot Wars Z: Tengoku-Hen
## 4893                                           3rd Super Robot Wars Z: Tengoku-Hen
## 4894                                                                     4x4 EVO 2
## 4895                                                                     4x4 EVO 2
## 4896                                                    50 Cent: Blood on the Sand
## 4897                                                    50 Cent: Blood on the Sand
## 4898                                                              50 Classic Games
## 4899                                                              50 Classic Games
## 4900                                                                 7 Days to Die
## 4901                                                                 7 Days to Die
## 4902                                                7 Wonders of the Ancient World
## 4903                                                7 Wonders of the Ancient World
## 4904                                                                  A Bug's Life
## 4905                                                                  A Bug's Life
## 4906                                        AKB1/48: Idol to Guam de Koishitara...
## 4907                                        AKB1/48: Idol to Guam de Koishitara...
## 4908                                                       AMF Bowling Pinbusters!
## 4909                                                       AMF Bowling Pinbusters!
## 4910                                                                ATV Quad Kings
## 4911                                                                ATV Quad Kings
## 4912                                                        ATV: Quad Power Racing
## 4913                                                        ATV: Quad Power Racing
## 4914                                                   Abunai: Koi no Sousa Shitsu
## 4915                                                   Abunai: Koi no Sousa Shitsu
## 4916                                               Accel World: Ginyoku no Kakusei
## 4917                                               Accel World: Ginyoku no Kakusei
## 4918                                                Accel World: Kasoku no Chouten
## 4919                                                Accel World: Kasoku no Chouten
## 4920                                                   Ace Combat: Assault Horizon
## 4921                                                   Ace Combat: Assault Horizon
## 4922                                                          Activision Anthology
## 4923                                                          Activision Anthology
## 4924                                    Adventure Time: The Secret of the Nameless
## 4925                                    Adventure Time: The Secret of the Nameless
## 4926                            Adventure Time: The Secret of the Nameless Kingdom
## 4927                            Adventure Time: The Secret of the Nameless Kingdom
## 4928                                                                     Aeon Flux
## 4929                                                                     Aeon Flux
## 4930                                                                  Afro Samurai
## 4931                                                                  Afro Samurai
## 4932                                              Agatha Christie: The ABC Murders
## 4933                                              Agatha Christie: The ABC Murders
## 4934                                                          AirForce Delta Storm
## 4935                                                          AirForce Delta Storm
## 4936                                                      Akatsuki no Goei Trinity
## 4937                                                      Akatsuki no Goei Trinity
## 4938                                                                     Alan Wake
## 4939                                                                     Alan Wake
## 4940                                                                         Alias
## 4941                                                                         Alias
## 4942                                                           Alice in Wonderland
## 4943                                                           Alice in Wonderland
## 4944                                                                 Alien Hominid
## 4945                                                                 Alien Hominid
## 4946                                                                Alien Syndrome
## 4947                                                                Alien Syndrome
## 4948                                                           Aliens in the Attic
## 4949                                                           Aliens in the Attic
## 4950                                            Aliens versus Predator: Extinction
## 4951                                            Aliens versus Predator: Extinction
## 4952                                           All Kamen Rider: Rider Generation 2
## 4953                                           All Kamen Rider: Rider Generation 2
## 4954                                                          All Star Cheer Squad
## 4955                                                          All Star Cheer Squad
## 4956                                                          All-Pro Football 2K8
## 4957                                                          All-Pro Football 2K8
## 4958                                                        All-Star Baseball 2002
## 4959                                                        All-Star Baseball 2002
## 4960                                                        All-Star Baseball 2005
## 4961                                                        All-Star Baseball 2005
## 4962                                                                    Alter Echo
## 4963                                                                    Alter Echo
## 4964                                       Alvin and the Chipmunks: The Squeakquel
## 4965                                       Alvin and the Chipmunks: The Squeakquel
## 4966                                                      America's Next Top Model
## 4967                                                      America's Next Top Model
## 4968                                                              American Chopper
## 4969                                                              American Chopper
## 4970                                                                 American Idol
## 4971                                                                 American Idol
## 4972                                                                 Amnesia Later
## 4973                                                                 Amnesia Later
## 4974                                                                Anarchy Reigns
## 4975                                                                Anarchy Reigns
## 4976                                                               And1 Streetball
## 4977                                                               And1 Streetball
## 4978                                                       Animal Planet: Vet Life
## 4979                                                       Animal Planet: Vet Life
## 4980                                                           Antz Extreme Racing
## 4981                                                           Antz Extreme Racing
## 4982                                                                    Ape Escape
## 4983                                                                    Ape Escape
## 4984                                                  Aquaman: Battle for Atlantis
## 4985                                                  Aquaman: Battle for Atlantis
## 4986                                             Ar Nosurge: Ode to an Unborn Star
## 4987                                             Ar Nosurge: Ode to an Unborn Star
## 4988                                       Arabians Lost: The Engagement on Desert
## 4989                                       Arabians Lost: The Engagement on Desert
## 4990                                        Archer Maclean Presents: Pool Paradise
## 4991                                        Archer Maclean Presents: Pool Paradise
## 4992                                                                   Arctic Tale
## 4993                                                                   Arctic Tale
## 4994                                                                Arctic Thunder
## 4995                                                                Arctic Thunder
## 4996                             Are You Smarter Than a 5th Grader? Back to School
## 4997                             Are You Smarter Than a 5th Grader? Back to School
## 4998                             Are You Smarter than a 5th Grader? Make the Grade
## 4999                             Are You Smarter than a 5th Grader? Make the Grade
## 5000                                                                Arena Football
## 5001                                                                Arena Football
## 5002                                                                Armored Core 4
## 5003                                                                Armored Core 4
## 5004                                                                Armored Core V
## 5005                                                                Armored Core V
## 5006                                                      Armored Core: For Answer
## 5007                                                      Armored Core: For Answer
## 5008                                                 Armorines: Project S.W.A.R.M.
## 5009                                                 Armorines: Project S.W.A.R.M.
## 5010                                                         Army Men: Green Rogue
## 5011                                                         Army Men: Green Rogue
## 5012                                                                 Army Men: RTS
## 5013                                                                 Army Men: RTS
## 5014                                                      Army Men: Sarge's Heroes
## 5015                                                      Army Men: Sarge's Heroes
## 5016                                                         Army Men: Sarge's War
## 5017                                                         Army Men: Sarge's War
## 5018                                              Army Men: Soldiers of Misfortune
## 5019                                              Army Men: Soldiers of Misfortune
## 5020                                                                   Army of Two
## 5021                                                                   Army of Two
## 5022                                               Army of Two: The Devil's Cartel
## 5023                                               Army of Two: The Devil's Cartel
## 5024                                                   Around the World in 80 Days
## 5025                                                   Around the World in 80 Days
## 5026                                                                 Assetto Corsa
## 5027                                                                 Assetto Corsa
## 5028                                                                     Asteroids
## 5029                                                                     Asteroids
## 5030                                                                 Asura's Wrath
## 5031                                                                 Asura's Wrath
## 5032                                                               Atari Anthology
## 5033                                                               Atari Anthology
## 5034                                         Atelier Ayesha: The Alchemist of Dusk
## 5035                                         Atelier Ayesha: The Alchemist of Dusk
## 5036                              Atelier Escha & Logy: Alchemists of the Dusk Sky
## 5037                              Atelier Escha & Logy: Alchemists of the Dusk Sky
## 5038                                         Atelier Meruru: Alchemist of Arland 3
## 5039                                         Atelier Meruru: Alchemist of Arland 3
## 5040                                           Atelier Rorona: Alchemist of Arland
## 5041                                           Atelier Rorona: Alchemist of Arland
## 5042                                      Atelier Totori: The Adventurer of Arland
## 5043                                      Atelier Totori: The Adventurer of Arland
## 5044                                                       Attack of the Movies 3D
## 5045                                                       Attack of the Movies 3D
## 5046                                                               Auto Modellista
## 5047                                                               Auto Modellista
## 5048                                                                   Backbreaker
## 5049                                                                   Backbreaker
## 5050                                                               Backyard Hockey
## 5051                                                               Backyard Hockey
## 5052                                                       Backyard NBA Basketball
## 5053                                                       Backyard NBA Basketball
## 5054                                                    Backyard NFL Football 2006
## 5055                                                    Backyard NFL Football 2006
## 5056                             Backyard Wrestling 2: There Goes the Neighborhood
## 5057                             Backyard Wrestling 2: There Goes the Neighborhood
## 5058                                    Backyard Wrestling: Don't Try This at Home
## 5059                                    Backyard Wrestling: Don't Try This at Home
## 5060                                                         Baja: Edge of Control
## 5061                                                         Baja: Edge of Control
## 5062                                                    Bakumatsu Rock: Ultra Soul
## 5063                                                    Bakumatsu Rock: Ultra Soul
## 5064                                               Baldur's Gate: Dark Alliance II
## 5065                                               Baldur's Gate: Dark Alliance II
## 5066                                                                   Balloon Pop
## 5067                                                                   Balloon Pop
## 5068                                                                 Balls of Fury
## 5069                                                                 Balls of Fury
## 5070                                                                 Banjo-Kazooie
## 5071                                                                 Banjo-Kazooie
## 5072                                    Barbie Horse Adventures: Wild Horse Rescue
## 5073                                    Barbie Horse Adventures: Wild Horse Rescue
## 5074                                               Barbie and the Three Musketeers
## 5075                                               Barbie and the Three Musketeers
## 5076                                                   Barbie: Groom and Glam Pups
## 5077                                                   Barbie: Groom and Glam Pups
## 5078                                                     Barbie: Jet, Set & Style!
## 5079                                                     Barbie: Jet, Set & Style!
## 5080                                                                       Baroque
## 5081                                                                       Baroque
## 5082                                                                      Baseball
## 5083                                                                      Baseball
## 5084                                                      Bass Pro Shops: The Hunt
## 5085                                                      Bass Pro Shops: The Hunt
## 5086                                                    Bass Pro Shops: The Strike
## 5087                                                    Bass Pro Shops: The Strike
## 5088                                            Batman Beyond: Return of the Joker
## 5089                                            Batman Beyond: Return of the Joker
## 5090                                                Batman: A Telltale Game Series
## 5091                                                Batman: A Telltale Game Series
## 5092                                              Batman: Arkham Origins Blackgate
## 5093                                              Batman: Arkham Origins Blackgate
## 5094                                                         Batman: Dark Tomorrow
## 5095                                                         Batman: Dark Tomorrow
## 5096                                  Batman: The Brave and the Bold the Videogame
## 5097                                  Batman: The Brave and the Bold the Videogame
## 5098                                                          Battle Engine Aquila
## 5099                                                          Battle Engine Aquila
## 5100                                                               Battle Fantasia
## 5101                                                               Battle Fantasia
## 5102                                                          Battle Stadium D.O.N
## 5103                                                          Battle Stadium D.O.N
## 5104                                                      Battlefield: Bad Company
## 5105                                                      Battlefield: Bad Company
## 5106                                                          Battlestar Galactica
## 5107                                                          Battlestar Galactica
## 5108                                                        Battlestations: Midway
## 5109                                                        Battlestations: Midway
## 5110                                                       Battlestations: Pacific
## 5111                                                       Battlestations: Pacific
## 5112                                                                    Battlezone
## 5113                                                                    Battlezone
## 5114                                                                     Bayonetta
## 5115                                                                     Bayonetta
## 5116                                                                     BeatMania
## 5117                                                                     BeatMania
## 5118                                                                  Beijing 2008
## 5119                                                                  Beijing 2008
## 5120                                                               Bejeweled Twist
## 5121                                                               Bejeweled Twist
## 5122                                                            Ben 10 Omniverse 2
## 5123                                                            Ben 10 Omniverse 2
## 5124                            Big Idea's VeggieTales: LarryBoy and the Bad Apple
## 5125                            Big Idea's VeggieTales: LarryBoy and the Bad Apple
## 5126                                                             Big League Sports
## 5127                                                             Big League Sports
## 5128                                                     Big League Sports: Summer
## 5129                                                     Big League Sports: Summer
## 5130                                                          Big Mutha Truckers 2
## 5131                                                          Big Mutha Truckers 2
## 5132                                                     Bigfoot: Collision Course
## 5133                                                     Bigfoot: Collision Course
## 5134                                                          Biker Mice From Mars
## 5135                                                          Biker Mice From Mars
## 5136                                                                 Binary Domain
## 5137                                                                 Binary Domain
## 5138                                                                    Bio FREAKS
## 5139                                                                    Bio FREAKS
## 5140                                                       BioShock The Collection
## 5141                                                       BioShock The Collection
## 5142                                                  Biohazard: Revival Selection
## 5143                                                  Biohazard: Revival Selection
## 5144                                                               Bionic Commando
## 5145                                                               Bionic Commando
## 5146                                                                Birds of Steel
## 5147                                                                Birds of Steel
## 5148                                                                         Black
## 5149                                                                         Black
## 5150                                                               Black & Bruised
## 5151                                                               Black & Bruised
## 5152                                                            Blacksite: Area 51
## 5153                                                            Blacksite: Area 51
## 5154                                                   Blade Arcus from Shining EX
## 5155                                                   Blade Arcus from Shining EX
## 5156                                                                      Blade II
## 5157                                                                      Blade II
## 5158                                                                Blades of Time
## 5159                                                                Blades of Time
## 5160                                            Bladestorm: The Hundred Years' War
## 5161                                            Bladestorm: The Hundred Years' War
## 5162                                                    BlazBlue: Chrono Phantasma
## 5163                                                    BlazBlue: Chrono Phantasma
## 5164                                                     BlazBlue: Continuum Shift
## 5165                                                     BlazBlue: Continuum Shift
## 5166                                                  BlazBlue: Continuum Shift II
## 5167                                                  BlazBlue: Continuum Shift II
## 5168                                     Blazing Angels 2: Secret Missions of WWII
## 5169                                     Blazing Angels 2: Secret Missions of WWII
## 5170                                                          Blitz: The League II
## 5171                                                          Blitz: The League II
## 5172                                                                    Blood Bowl
## 5173                                                                    Blood Bowl
## 5174                                                                   Blood Drive
## 5175                                                                   Blood Drive
## 5176                                                                  BloodRayne 2
## 5177                                                                  BloodRayne 2
## 5178                                                                       BlowOut
## 5179                                                                       BlowOut
## 5180                                                                     Bodycount
## 5181                                                                     Bodycount
## 5182                                                                      Bookworm
## 5183                                                                      Bookworm
## 5184                                          Borderlands: The Handsome Collection
## 5185                                          Borderlands: The Handsome Collection
## 5186                                                             Bottom of the 9th
## 5187                                                             Bottom of the 9th
## 5188                                                                Bound By Flame
## 5189                                                                Bound By Flame
## 5190                                                                        Boxing
## 5191                                                                        Boxing
## 5192                                                                    Bratz Kidz
## 5193                                                                    Bratz Kidz
## 5194                                                              Bratz: The Movie
## 5195                                                              Bratz: The Movie
## 5196                                                       Brave: A Warrior's Tale
## 5197                                                       Brave: A Warrior's Tale
## 5198                                                         Brave: The Video Game
## 5199                                                         Brave: The Video Game
## 5200                                                             Breath of Fire II
## 5201                                                             Breath of Fire II
## 5202                                                            Breath of Fire III
## 5203                                                            Breath of Fire III
## 5204                                                          Britney's Dance Beat
## 5205                                                          Britney's Dance Beat
## 5206                                           Broken Sword 5: The Serpent's Curse
## 5207                                           Broken Sword 5: The Serpent's Curse
## 5208                                             Brothers In Arms: Earned in Blood
## 5209                                             Brothers In Arms: Earned in Blood
## 5210                                             Brothers In Arms: Road to Hill 30
## 5211                                             Brothers In Arms: Road to Hill 30
## 5212                                                   Brothers in Arms: Furious 4
## 5213                                                   Brothers in Arms: Furious 4
## 5214                                                  Brothers: A Tale of Two Sons
## 5215                                                  Brothers: A Tale of Two Sons
## 5216                                                 Brunswick Circuit Pro Bowling
## 5217                                                 Brunswick Circuit Pro Bowling
## 5218                                                                 Brutal Legend
## 5219                                                                 Brutal Legend
## 5220                                                                 Burger Island
## 5221                                                                 Burger Island
## 5222                                                           Burnout 3: Takedown
## 5223                                                           Burnout 3: Takedown
## 5224                                                               Burnout Legends
## 5225                                                               Burnout Legends
## 5226                                                              Burnout Paradise
## 5227                                                              Burnout Paradise
## 5228                                                               Bust-A-Move '99
## 5229                                                               Bust-A-Move '99
## 5230                                                  Bust-A-Move 2 Arcade Edition
## 5231                                                  Bust-A-Move 2 Arcade Edition
## 5232                                                                 Busy Scissors
## 5233                                                                 Busy Scissors
## 5234                                                                 CID The Dummy
## 5235                                                                 CID The Dummy
## 5236                                                            CSI: Deadly Intent
## 5237                                                            CSI: Deadly Intent
## 5238                                                            CSI: Hard Evidence
## 5239                                                            CSI: Hard Evidence
## 5240                                                       Cabela's African Safari
## 5241                                                       Cabela's African Safari
## 5242                                                    Cabela's Alaskan Adventure
## 5243                                                    Cabela's Alaskan Adventure
## 5244                                                      Cabela's Big Game Hunter
## 5245                                                      Cabela's Big Game Hunter
## 5246                                                      Cabela's Dangerous Hunts
## 5247                                                      Cabela's Dangerous Hunts
## 5248                                                Cabela's Deer Hunt 2005 Season
## 5249                                                Cabela's Deer Hunt 2005 Season
## 5250                                               Cabela's Deer Hunt: 2004 Season
## 5251                                               Cabela's Deer Hunt: 2004 Season
## 5252                                                   Cabela's Outdoor Adventures
## 5253                                                   Cabela's Outdoor Adventures
## 5254                                                 Cake Mania: Baker's Challenge
## 5255                                                 Cake Mania: Baker's Challenge
## 5256                                                                Call of Duty 2
## 5257                                                                Call of Duty 2
## 5258                                          Call of Duty: Modern Warfare Trilogy
## 5259                                          Call of Duty: Modern Warfare Trilogy
## 5260                                                                Call of Juarez
## 5261                                                                Call of Juarez
## 5262                                                  Candace Kane's Candy Factory
## 5263                                                  Candace Kane's Candy Factory
## 5264                                                    Capcom Classics Collection
## 5265                                                    Capcom Classics Collection
## 5266                                                     Capcom Fighting Evolution
## 5267                                                     Capcom Fighting Evolution
## 5268                                                           Capcom vs. SNK 2 EO
## 5269                                                           Capcom vs. SNK 2 EO
## 5270                                                                Carnival Games
## 5271                                                                Carnival Games
## 5272                                                      Carol Vorderman's Sudoku
## 5273                                                      Carol Vorderman's Sudoku
## 5274                                                                        Casper
## 5275                                                                        Casper
## 5276                                      Casper's Scare School: Spooky Sports Day
## 5277                                      Casper's Scare School: Spooky Sports Day
## 5278                                                     Casper: Spirit Dimensions
## 5279                                                     Casper: Spirit Dimensions
## 5280                                                                   Castlevania
## 5281                                                                   Castlevania
## 5282                                                Castlevania: Curse of Darkness
## 5283                                                Castlevania: Curse of Darkness
## 5284                                                  Castlevania: Lords of Shadow
## 5285                                                  Castlevania: Lords of Shadow
## 5286                                        Castlevania: Lords of Shadow - Reverie
## 5287                                        Castlevania: Lords of Shadow - Reverie
## 5288                                                Cate West: The Vanishing Files
## 5289                                                Cate West: The Vanishing Files
## 5290                                                                     Catherine
## 5291                                                                     Catherine
## 5292                                                                          Catz
## 5293                                                                          Catz
## 5294                                                                    Cel Damage
## 5295                                                                    Cel Damage
## 5296                                                                     Centipede
## 5297                                                                     Centipede
## 5298                                                        Centipede: Infestation
## 5299                                                        Centipede: Infestation
## 5300                                                 Challenge Me: Brain Puzzles 2
## 5301                                                 Challenge Me: Brain Puzzles 2
## 5302                                                    Chaos;Head - Love Chu*Chu!
## 5303                                                    Chaos;Head - Love Chu*Chu!
## 5304                                              Chessmaster: The Art of Learning
## 5305                                              Chessmaster: The Art of Learning
## 5306                                                   Chevrolet Camaro: Wild Ride
## 5307                                                   Chevrolet Camaro: Wild Ride
## 5308                                                               Chicken Blaster
## 5309                                                               Chicken Blaster
## 5310                                                                 Child of Eden
## 5311                                                                 Child of Eden
## 5312                                                                Child of Light
## 5313                                                                Child of Light
## 5314                                                                Chrono Trigger
## 5315                                                                Chrono Trigger
## 5316                                                       Chrysler Classic Racing
## 5317                                                       Chrysler Classic Racing
## 5318                                                 Chuck E. Cheese's Party Games
## 5319                                                 Chuck E. Cheese's Party Games
## 5320                                                        Clash of Elementalists
## 5321                                                        Clash of Elementalists
## 5322                                                           Clash of the Titans
## 5323                                                           Clash of the Titans
## 5324                                                                  Classic Road
## 5325                                                                  Classic Road
## 5326                               Clover no Kuni no Alice: Wonderful Wonder World
## 5327                               Clover no Kuni no Alice: Wonderful Wonder World
## 5328                                                             Cocoto Kart Racer
## 5329                                                             Cocoto Kart Racer
## 5330                                 Code Geass: Hangyaku no Lelouch - Lost Colors
## 5331                                 Code Geass: Hangyaku no Lelouch - Lost Colors
## 5332                                                Code Lyoko: Quest for Infinity
## 5333                                                Code Lyoko: Quest for Infinity
## 5334                                                                     Cold Fear
## 5335                                                                     Cold Fear
## 5336                                                         Colin McRae Rally 2.0
## 5337                                                         Colin McRae Rally 2.0
## 5338                                                        Colin McRae Rally 2005
## 5339                                                        Colin McRae Rally 2005
## 5340                                                           Colin McRae Rally 3
## 5341                                                           Colin McRae Rally 3
## 5342                                                             College Hoops 2K7
## 5343                                                             College Hoops 2K7
## 5344                                               Combat Elite: WWII Paratroopers
## 5345                                               Combat Elite: WWII Paratroopers
## 5346                                                             Command & Conquer
## 5347                                                             Command & Conquer
## 5348                                             Command & Conquer 3: Kane's Wrath
## 5349                                             Command & Conquer 3: Kane's Wrath
## 5350                                            Command & Conquer 3: Tiberium Wars
## 5351                                            Command & Conquer 3: Tiberium Wars
## 5352                                                  Command & Conquer: Red Alert
## 5353                                                  Command & Conquer: Red Alert
## 5354                                                Command & Conquer: Red Alert 3
## 5355                                                Command & Conquer: Red Alert 3
## 5356                                                                      Commando
## 5357                                                                      Commando
## 5358                                                   Commandos 2: Men of Courage
## 5359                                                   Commandos 2: Men of Courage
## 5360                                                       Commandos: Strike Force
## 5361                                                       Commandos: Strike Force
## 5362                                                                         Conan
## 5363                                                                         Conan
## 5364                                    Conception II: Children of the Seven Stars
## 5365                                    Conception II: Children of the Seven Stars
## 5366                                                        Condemned 2: Bloodshot
## 5367                                                        Condemned 2: Bloodshot
## 5368                                                       Conflict: Global Terror
## 5369                                                       Conflict: Global Terror
## 5370                                                             Conflict: Vietnam
## 5371                                                             Conflict: Vietnam
## 5372                                                                   Constantine
## 5373                                                                   Constantine
## 5374                                                            Cool Boarders 2001
## 5375                                                            Cool Boarders 2001
## 5376                                   Corpse Party: Blood Covered - Repeated Fear
## 5377                                   Corpse Party: Blood Covered - Repeated Fear
## 5378                                                           Countdown: The Game
## 5379                                                           Countdown: The Game
## 5380                                                                Crash 'N' Burn
## 5381                                                                Crash 'N' Burn
## 5382                                                             Crash: Twinsanity
## 5383                                                             Crash: Twinsanity
## 5384                                                                Crazy Machines
## 5385                                                                Crazy Machines
## 5386                                                   Criminal Girls: Invite Only
## 5387                                                   Criminal Girls: Invite Only
## 5388                                                                      Culdcept
## 5389                                                                      Culdcept
## 5390                                                                   Custom Robo
## 5391                                                                   Custom Robo
## 5392                                                                    CyberTiger
## 5393                                                                    CyberTiger
## 5394                                                            DC Universe Online
## 5395                                                            DC Universe Online
## 5396                                           Dakar 2: The World's Ultimate Rally
## 5397                                           Dakar 2: The World's Ultimate Rally
## 5398                                                             Dance on Broadway
## 5399                                                             Dance on Broadway
## 5400                                                        Dance! It's Your Stage
## 5401                                                        Dance! It's Your Stage
## 5402                                                        Dancing With The Stars
## 5403                                                        Dancing With The Stars
## 5404                                                                Dancing on Ice
## 5405                                                                Dancing on Ice
## 5406                                             Dancing with the Stars: We Dance!
## 5407                                             Dancing with the Stars: We Dance!
## 5408                                                Danganronpa 2: Goodbye Despair
## 5409                                                Danganronpa 2: Goodbye Despair
## 5410                                              Danganronpa: Trigger Happy Havoc
## 5411                                              Danganronpa: Trigger Happy Havoc
## 5412                                                                   Dark Sector
## 5413                                                                   Dark Sector
## 5414                                                                     Darkwatch
## 5415                                                                     Darkwatch
## 5416                                                      Dave Mirra BMX Challenge
## 5417                                                      Dave Mirra BMX Challenge
## 5418                                             Dead Island Definitive Collection
## 5419                                             Dead Island Definitive Collection
## 5420                                                                   Dead Rising
## 5421                                                                   Dead Rising
## 5422                                                                 Dead or Alive
## 5423                                                                 Dead or Alive
## 5424                                                               Dead or Alive 2
## 5425                                                               Dead or Alive 2
## 5426                                                             Dead to Rights II
## 5427                                                             Dead to Rights II
## 5428                                                   Dead to Rights: Retribution
## 5429                                                   Dead to Rights: Retribution
## 5430                                             Deadliest Warrior: Ancient Combat
## 5431                                             Deadliest Warrior: Ancient Combat
## 5432                                                            Deadly Premonition
## 5433                                                            Deadly Premonition
## 5434                                                      Deception IV: Blood Ties
## 5435                                                      Deception IV: Blood Ties
## 5436                                                         Deepak Chopra's Leela
## 5437                                                         Deepak Chopra's Leela
## 5438                                                                    Deer Drive
## 5439                                                                    Deer Drive
## 5440                                                                  Def Jam Icon
## 5441                                                                  Def Jam Icon
## 5442                                                              Def Jam Vendetta
## 5443                                                              Def Jam Vendetta
## 5444                                                          Defendin' De Penguin
## 5445                                                          Defendin' De Penguin
## 5446                                                  Delta Force: Black Hawk Down
## 5447                                                  Delta Force: Black Hawk Down
## 5448                                                 Dengeki Bunko Fighting Climax
## 5449                                                 Dengeki Bunko Fighting Climax
## 5450                                                                Derby Stallion
## 5451                                                                Derby Stallion
## 5452                                                       Destiny: The Collection
## 5453                                                       Destiny: The Collection
## 5454                                                           Destroy All Humans!
## 5455                                                           Destroy All Humans!
## 5456                                         Destroy All Humans! Path of the Furon
## 5457                                         Destroy All Humans! Path of the Furon
## 5458                                             Detana TwinBee Yahho! Deluxe Pack
## 5459                                             Detana TwinBee Yahho! Deluxe Pack
## 5460                                        Detective Conan: Prelude from the Past
## 5461                                        Detective Conan: Prelude from the Past
## 5462                                                   Devil May Cry HD Collection
## 5463                                                   Devil May Cry HD Collection
## 5464                                                                 DiRT Showdown
## 5465                                                                 DiRT Showdown
## 5466                                                                        Diablo
## 5467                                                                        Diablo
## 5468                                                   Diabolik Lovers: More Blood
## 5469                                                   Diabolik Lovers: More Blood
## 5470                                                                       Dig Dug
## 5471                                                                       Dig Dug
## 5472                                                       Digimon All-Star Rumble
## 5473                                                       Digimon All-Star Rumble
## 5474                                                   Digimon Story: Cyber Sleuth
## 5475                                                   Digimon Story: Cyber Sleuth
## 5476                                                    Diner Dash: Sizzle & Serve
## 5477                                                    Diner Dash: Sizzle & Serve
## 5478                                               Dinotopia: The Sunstone Odyssey
## 5479                                               Dinotopia: The Sunstone Odyssey
## 5480                                              Disgaea 4: A Promise Unforgotten
## 5481                                              Disgaea 4: A Promise Unforgotten
## 5482                                            Disney Princess: Enchanted Journey
## 5483                                            Disney Princess: Enchanted Journey
## 5484                                        Disney Princess: Enchanting Storybooks
## 5485                                        Disney Princess: Enchanting Storybooks
## 5486                                                   Disney Sing It: Family Hits
## 5487                                                   Disney Sing It: Family Hits
## 5488                                                    Disney Sing It: Party Hits
## 5489                                                    Disney Sing It: Party Hits
## 5490                                                        Disney Sports Football
## 5491                                                        Disney Sports Football
## 5492                                                   Disney Sports Skateboarding
## 5493                                                   Disney Sports Skateboarding
## 5494                                                          Disney Sports Soccer
## 5495                                                          Disney Sports Soccer
## 5496                               Disney TH!NK Fast: The Ultimate Trivia Showdown
## 5497                               Disney TH!NK Fast: The Ultimate Trivia Showdown
## 5498                                                                Disney Tangled
## 5499                                                                Disney Tangled
## 5500                                                              Disney's Aladdin
## 5501                                                              Disney's Aladdin
## 5502                                            Disney's Atlantis: The Lost Empire
## 5503                                            Disney's Atlantis: The Lost Empire
## 5504                                        Disney's Chicken Little: Ace In Action
## 5505                                        Disney's Chicken Little: Ace In Action
## 5506                                                            Disney's DuckTales
## 5507                                                            Disney's DuckTales
## 5508                                               Disney's PK: Out of the Shadows
## 5509                                               Disney's PK: Out of the Shadows
## 5510                                                                Disney's Party
## 5511                                                                Disney's Party
## 5512                                                       Disney's Tarzan Untamed
## 5513                                                       Disney's Tarzan Untamed
## 5514                                                        Disney's The Lion King
## 5515                                                        Disney's The Lion King
## 5516                                                      Disney's Treasure Planet
## 5517                                                      Disney's Treasure Planet
## 5518                                                      Diva Girls: Divas on Ice
## 5519                                                      Diva Girls: Divas on Ice
## 5520                                                     Divinity II: Ego Draconis
## 5521                                                     Divinity II: Ego Draconis
## 5522                                           Dodge Racing: Charger vs Challenger
## 5523                                           Dodge Racing: Charger vs Challenger
## 5524                                                                          Dogz
## 5525                                                                          Dogz
## 5526                                                               Dokapon Kingdom
## 5527                                                               Dokapon Kingdom
## 5528                                                               Don King Boxing
## 5529                                                               Don King Boxing
## 5530                                                   Donkey Kong Country Returns
## 5531                                                   Donkey Kong Country Returns
## 5532                                                       Donkey Kong Jungle Beat
## 5533                                                       Donkey Kong Jungle Beat
## 5534                                                                        Doom 3
## 5535                                                                        Doom 3
## 5536                                                        Doom II: Hell on Earth
## 5537                                                        Doom II: Hell on Earth
## 5538                             Dora the Explorer: Dora Saves the Crystal Kingdom
## 5539                             Dora the Explorer: Dora Saves the Crystal Kingdom
## 5540                                    Dora the Explorer: Dora Saves the Mermaids
## 5541                                    Dora the Explorer: Dora Saves the Mermaids
## 5542                               Dora the Explorer: Journey to the Purple Planet
## 5543                               Dora the Explorer: Journey to the Purple Planet
## 5544                                                                     Dr. Mario
## 5545                                                                     Dr. Mario
## 5546                                                 Dr. Seuss' The Cat in the Hat
## 5547                                                 Dr. Seuss' The Cat in the Hat
## 5548                                                        Dragon Ball Z: Budokai
## 5549                                                        Dragon Ball Z: Budokai
## 5550                                                      Dragon Ball Z: Budokai 2
## 5551                                                      Dragon Ball Z: Budokai 2
## 5552                                            Dragon Ball Z: Budokai Tenkaichi 2
## 5553                                            Dragon Ball Z: Budokai Tenkaichi 2
## 5554                                            Dragon Ball Z: Budokai Tenkaichi 3
## 5555                                            Dragon Ball Z: Budokai Tenkaichi 3
## 5556                                                    Dragon Ball Z: Burst Limit
## 5557                                                    Dragon Ball Z: Burst Limit
## 5558                                  Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 5559                                  Dragon Ball Z: Idainaru Dragon Ball Densetsu
## 5560                                             Dragon Ball Z: Ultimate Tenkaichi
## 5561                                             Dragon Ball Z: Ultimate Tenkaichi
## 5562                                                     Dragon Ball: Raging Blast
## 5563                                                     Dragon Ball: Raging Blast
## 5564                                                   Dragon Ball: Raging Blast 2
## 5565                                                   Dragon Ball: Raging Blast 2
## 5566                Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 5567                Dragon Quest Heroes: The World's Tree Woe and the Blight Below
## 5568                                                       Dragon Quest Monsters 2
## 5569                                                       Dragon Quest Monsters 2
## 5570                                            Dragon Quest V: Tenkuu no Hanayome
## 5571                                            Dragon Quest V: Tenkuu no Hanayome
## 5572                                            Dragon Quest VII: Warriors of Eden
## 5573                                            Dragon Quest VII: Warriors of Eden
## 5574                                 Dragon Quest VIII: Journey of the Cursed King
## 5575                                 Dragon Quest VIII: Journey of the Cursed King
## 5576                                           Dragon Slayer: The Legend of Heroes
## 5577                                           Dragon Slayer: The Legend of Heroes
## 5578                                                            Dragon Warrior III
## 5579                                                            Dragon Warrior III
## 5580                                                                Dragon's Crown
## 5581                                                                Dragon's Crown
## 5582                                                                Dragon's Dogma
## 5583                                                                Dragon's Dogma
## 5584                                                         Dragon's Dogma Online
## 5585                                                         Dragon's Dogma Online
## 5586                                          Dragon's Lair 3D: Return to the Lair
## 5587                                          Dragon's Lair 3D: Return to the Lair
## 5588                                               Drawn to Life: The Next Chapter
## 5589                                               Drawn to Life: The Next Chapter
## 5590                                                                  Dream C Club
## 5591                                                                  Dream C Club
## 5592                                                              Dream Pinball 3D
## 5593                                                              Dream Pinball 3D
## 5594                                                                   Dream Salon
## 5595                                                                   Dream Salon
## 5596                                                                    Dunamis 15
## 5597                                                                    Dunamis 15
## 5598                                    Dungeon Explorer: Warriors of Ancient Arts
## 5599                                    Dungeon Explorer: Warriors of Ancient Arts
## 5600                     Dungeon Travelers 2: The Royal Library & The Monster Seal
## 5601                     Dungeon Travelers 2: The Royal Library & The Monster Seal
## 5602                                                              Dynasty Warriors
## 5603                                                              Dynasty Warriors
## 5604                                                            Dynasty Warriors 3
## 5605                                                            Dynasty Warriors 3
## 5606                                                            Dynasty Warriors 4
## 5607                                                            Dynasty Warriors 4
## 5608                                                            Dynasty Warriors 5
## 5609                                                            Dynasty Warriors 5
## 5610                                                    Dynasty Warriors 5 Empires
## 5611                                                    Dynasty Warriors 5 Empires
## 5612                                                    Dynasty Warriors 6 Empires
## 5613                                                    Dynasty Warriors 6 Empires
## 5614                                                            Dynasty Warriors 7
## 5615                                                            Dynasty Warriors 7
## 5616                                                            Dynasty Warriors 8
## 5617                                                            Dynasty Warriors 8
## 5618                                                       Dynasty Warriors Gundam
## 5619                                                       Dynasty Warriors Gundam
## 5620                                                    Dynasty Warriors: Gundam 3
## 5621                                                    Dynasty Warriors: Gundam 3
## 5622                                               Dynasty Warriors: Gundam Reborn
## 5623                                               Dynasty Warriors: Gundam Reborn
## 5624                                                                 E.X. Troopers
## 5625                                                                 E.X. Troopers
## 5626                                                                 EA Playground
## 5627                                                                 EA Playground
## 5628                                                                 EA Sports MMA
## 5629                                                                 EA Sports MMA
## 5630                                                                 EA Sports UFC
## 5631                                                                 EA Sports UFC
## 5632                                                               EA Sports UFC 2
## 5633                                                               EA Sports UFC 2
## 5634                                                       ECW Hardcore Revolution
## 5635                                                       ECW Hardcore Revolution
## 5636                                                        ESPN College Hoops 2K5
## 5637                                                        ESPN College Hoops 2K5
## 5638                                         ESPN International Winter Sports 2002
## 5639                                         ESPN International Winter Sports 2002
## 5640                                                             ESPN MLB Baseball
## 5641                                                             ESPN MLB Baseball
## 5642                                                       ESPN MLS ExtraTime 2002
## 5643                                                       ESPN MLS ExtraTime 2002
## 5644                                                                  ESPN NBA 2K5
## 5645                                                                  ESPN NBA 2K5
## 5646                                                          ESPN NBA 2Night 2002
## 5647                                                          ESPN NBA 2Night 2002
## 5648                                                           ESPN NBA Basketball
## 5649                                                           ESPN NBA Basketball
## 5650                                                                  ESPN NFL 2K5
## 5651                                                                  ESPN NFL 2K5
## 5652                                                             ESPN NFL Football
## 5653                                                             ESPN NFL Football
## 5654                                                       ESPN NFL Primetime 2002
## 5655                                                       ESPN NFL Primetime 2002
## 5656                                                                  ESPN NHL 2K5
## 5657                                                                  ESPN NHL 2K5
## 5658                                                               ESPN NHL Hockey
## 5659                                                               ESPN NHL Hockey
## 5660                                        ESPN Winter X Games: Snowboarding 2002
## 5661                                        ESPN Winter X Games: Snowboarding 2002
## 5662                                                    ESPN X Games Skateboarding
## 5663                                                    ESPN X Games Skateboarding
## 5664                                                      Earth Defense Force 2025
## 5665                                                      Earth Defense Force 2025
## 5666                             Earth Defense Force 2: Invaders from Planet Space
## 5667                             Earth Defense Force 2: Invaders from Planet Space
## 5668                                        Earth Defense Force: Insect Armageddon
## 5669                                        Earth Defense Force: Insect Armageddon
## 5670                                           Eat Lead: The Return of Matt Hazard
## 5671                                           Eat Lead: The Return of Matt Hazard
## 5672                                         El Shaddai: Ascension of the Metatron
## 5673                                         El Shaddai: Ascension of the Metatron
## 5674                                                             Elf Bowling 1 & 2
## 5675                                                             Elf Bowling 1 & 2
## 5676                                                                Emergency 2012
## 5677                                                                Emergency 2012
## 5678                                                                Enchanted Arms
## 5679                                                                Enchanted Arms
## 5680                                                     Enchanted Arms (JP sales)
## 5681                                                     Enchanted Arms (JP sales)
## 5682                                                                   Enemy Front
## 5683                                                                   Enemy Front
## 5684                                                 Enslaved: Odyssey to the West
## 5685                                                 Enslaved: Odyssey to the West
## 5686                                                            Escape Dead Island
## 5687                                                            Escape Dead Island
## 5688                                                             Escape The Museum
## 5689                                                             Escape The Museum
## 5690                                                                Eternal Sonata
## 5691                                                                Eternal Sonata
## 5692                                          Etrian Odyssey II: Heroes of Lagaard
## 5693                                          Etrian Odyssey II: Heroes of Lagaard
## 5694                                                                Evangelion: Jo
## 5695                                                                Evangelion: Jo
## 5696                                              Evil Dead: Fistfull of Boomstick
## 5697                                              Evil Dead: Fistfull of Boomstick
## 5698                                                       Evil Dead: Regeneration
## 5699                                                       Evil Dead: Regeneration
## 5700                                                       Evolution Skateboarding
## 5701                                                       Evolution Skateboarding
## 5702                                      Exist Archive: The Other Side of the Sky
## 5703                                      Exist Archive: The Other Side of the Sky
## 5704                                                                      Exstetra
## 5705                                                                      Exstetra
## 5706                                                                        EyePet
## 5707                                                                        EyePet
## 5708                                                                      F.E.A.R.
## 5709                                                                      F.E.A.R.
## 5710                                                                       F1 2001
## 5711                                                                       F1 2001
## 5712                                                                       F1 2009
## 5713                                                                       F1 2009
## 5714                                                                       F1 2013
## 5715                                                                       F1 2013
## 5716                                                                   FIFA Soccer
## 5717                                                                   FIFA Soccer
## 5718                                                                      FabStyle
## 5719                                                                      FabStyle
## 5720                                                                         Fable
## 5721                                                                         Fable
## 5722                                                                     Fable III
## 5723                                                                     Fable III
## 5724                                                                   FaceBreaker
## 5725                                                                   FaceBreaker
## 5726                                                              Fairytale Fights
## 5727                                                              Fairytale Fights
## 5728                                                 Fallout: Brotherhood of Steel
## 5729                                                 Fallout: Brotherhood of Steel
## 5730                                                     Family Feud: 2010 Edition
## 5731                                                     Family Feud: 2010 Edition
## 5732                                                     Family Feud: 2012 Edition
## 5733                                                     Family Feud: 2012 Edition
## 5734                                                               Family Fortunes
## 5735                                                               Family Fortunes
## 5736                                            Family Guy: Back to the Multiverse
## 5737                                            Family Guy: Back to the Multiverse
## 5738                                                       Fantasia: Music Evolved
## 5739                                                       Fantasia: Music Evolved
## 5740                                               Far East of Eden II: Manji Maru
## 5741                                               Far East of Eden II: Manji Maru
## 5742                                                                 Farm Frenzy 3
## 5743                                                                 Farm Frenzy 3
## 5744                                                      Fast & Furious: Showdown
## 5745                                                      Fast & Furious: Showdown
## 5746                                                               Fast Food Panic
## 5747                                                               Fast Food Panic
## 5748                                                                   Fatal Frame
## 5749                                                                   Fatal Frame
## 5750                                                  Fate/Stay Night [Réalta Nua]
## 5751                                                  Fate/Stay Night [Réalta Nua]
## 5752                                              Ferrari Challenge Trofeo Pirelli
## 5753                                              Ferrari Challenge Trofeo Pirelli
## 5754                                                                    Fight Club
## 5755                                                                    Fight Club
## 5756                                                              Fight Night 2004
## 5757                                                              Fight Night 2004
## 5758                                                          Fight Night Champion
## 5759                                                          Fight Night Champion
## 5760                                                           Fight Night Round 4
## 5761                                                           Fight Night Round 4
## 5762                                                                 Final Fantasy
## 5763                                                                 Final Fantasy
## 5764                              Final Fantasy Crystal Chronicles: Echoes of Time
## 5765                              Final Fantasy Crystal Chronicles: Echoes of Time
## 5766                                                              Final Fantasy IV
## 5767                                                              Final Fantasy IV
## 5768                                                               Final Fantasy V
## 5769                                                               Final Fantasy V
## 5770                                             Final Fantasy X / X-2 HD Remaster
## 5771                                             Final Fantasy X / X-2 HD Remaster
## 5772                                                              Final Fantasy XI
## 5773                                                              Final Fantasy XI
## 5774                                   Final Fantasy XI: Vana'diel Collection 2008
## 5775                                   Final Fantasy XI: Vana'diel Collection 2008
## 5776                                        Final Fantasy XI: Wings of the Goddess
## 5777                                        Final Fantasy XI: Wings of the Goddess
## 5778                                                            Final Fantasy XIII
## 5779                                                            Final Fantasy XIII
## 5780                                                          Final Fantasy XIII-2
## 5781                                                          Final Fantasy XIII-2
## 5782                                                       Final Fight: Streetwise
## 5783                                                       Final Fight: Streetwise
## 5784                                            Fist of the North Star: Ken's Rage
## 5785                                            Fist of the North Star: Ken's Rage
## 5786                                                                    Fit in Six
## 5787                                                                    Fit in Six
## 5788                                                                       FlatOut
## 5789                                                                       FlatOut
## 5790                                                                     FlatOut 2
## 5791                                                                     FlatOut 2
## 5792                                                     FlatOut: Ultimate Carnage
## 5793                                                     FlatOut: Ultimate Carnage
## 5794                                                                  Flushed Away
## 5795                                                                  Flushed Away
## 5796                                                         Football Manager 2012
## 5797                                                         Football Manager 2012
## 5798                                                         Football Manager 2014
## 5799                                                         Football Manager 2014
## 5800                                                Ford Mustang: The Legend Lives
## 5801                                                Ford Mustang: The Legend Lives
## 5802                                                                 Ford Racing 2
## 5803                                                                 Ford Racing 2
## 5804                                                                Ford vs. Chevy
## 5805                                                                Ford vs. Chevy
## 5806                                                 Forgotten Realms: Demon Stone
## 5807                                                 Forgotten Realms: Demon Stone
## 5808                                                               Forza Horizon 2
## 5809                                                               Forza Horizon 2
## 5810                                                                      Fracture
## 5811                                                                      Fracture
## 5812                                                                       Frogger
## 5813                                                                       Frogger
## 5814                                                                Frogger Beyond
## 5815                                                                Frogger Beyond
## 5816                                              Frogger's Adventures: The Rescue
## 5817                                              Frogger's Adventures: The Rescue
## 5818                                                         Frogger: Helmet Chaos
## 5819                                                         Frogger: Helmet Chaos
## 5820                                  From TV Animation One Piece: Grand Battle! 3
## 5821                                  From TV Animation One Piece: Grand Battle! 3
## 5822                                                                 Front Mission
## 5823                                                                 Front Mission
## 5824                                                       Frontlines: Fuel of War
## 5825                                                       Frontlines: Fuel of War
## 5826                                                          Frozen: Olaf's Quest
## 5827                                                          Frozen: Olaf's Quest
## 5828                                                      Full Auto 2: Battlelines
## 5829                                                      Full Auto 2: Battlelines
## 5830                                                         Full Spectrum Warrior
## 5831                                                         Full Spectrum Warrior
## 5832                                            Full Spectrum Warrior: Ten Hammers
## 5833                                            Full Spectrum Warrior: Ten Hammers
## 5834                                                              Fuse (Insomniac)
## 5835                                                              Fuse (Insomniac)
## 5836                                                                      Futurama
## 5837                                                                      Futurama
## 5838                                                              Gauntlet Legends
## 5839                                                              Gauntlet Legends
## 5840                                                       Gauntlet: Seven Sorrows
## 5841                                                       Gauntlet: Seven Sorrows
## 5842                                                                  Gears of War
## 5843                                                                  Gears of War
## 5844                                                                  Gem Smashers
## 5845                                                                  Gem Smashers
## 5846                                                       Geometry Wars: Galaxies
## 5847                                                       Geometry Wars: Galaxies
## 5848                            George of the Jungle and the Search for the Secret
## 5849                            George of the Jungle and the Search for the Secret
## 5850                                                  Germany's Next Topmodel 2011
## 5851                                                  Germany's Next Topmodel 2011
## 5852                                                              Get Up and Dance
## 5853                                                              Get Up and Dance
## 5854                                                       Gex 3: Deep Cover Gecko
## 5855                                                       Gex 3: Deep Cover Gecko
## 5856                                       Ghost in the Shell: Stand Alone Complex
## 5857                                       Ghost in the Shell: Stand Alone Complex
## 5858                                                           Ghostbusters (2016)
## 5859                                                           Ghostbusters (2016)
## 5860                                                 Gladiator: Sword of Vengeance
## 5861                                                 Gladiator: Sword of Vengeance
## 5862                                                                        Glover
## 5863                                                                        Glover
## 5864                                            Go Diego Go! Great Dinosaur Rescue
## 5865                                            Go Diego Go! Great Dinosaur Rescue
## 5866                                                                   God Eater 2
## 5867                                                                   God Eater 2
## 5868                                                       God Eater 2: Rage Burst
## 5869                                                       God Eater 2: Rage Burst
## 5870                                                        God Eater Resurrection
## 5871                                                        God Eater Resurrection
## 5872                                                         God of War Collection
## 5873                                                         God of War Collection
## 5874                                                                God of War III
## 5875                                                                God of War III
## 5876                                          Godzilla: Destroy All Monsters Melee
## 5877                                          Godzilla: Destroy All Monsters Melee
## 5878                                                      Godzilla: Save the Earth
## 5879                                                      Godzilla: Save the Earth
## 5880                                                       Golden Axe: Beast Rider
## 5881                                                       Golden Axe: Beast Rider
## 5882                                                          GoldenEye 007 (2010)
## 5883                                                          GoldenEye 007 (2010)
## 5884                                                       Goldeneye 007: Reloaded
## 5885                                                       Goldeneye 007: Reloaded
## 5886                                                                          Golf
## 5887                                                                          Golf
## 5888                                                 Gormiti: The Lords of Nature!
## 5889                                                 Gormiti: The Lords of Nature!
## 5890                    Gotouchi Tetsudou: Gotouchi Chara to Nihon Zenkoku no Tabi
## 5891                    Gotouchi Tetsudou: Gotouchi Chara to Nihon Zenkoku no Tabi
## 5892                                                          Grand Ages: Medieval
## 5893                                                          Grand Ages: Medieval
## 5894                                                                 Grand Kingdom
## 5895                                                                 Grand Kingdom
## 5896                                                           Grand Slam Tennis 2
## 5897                                                           Grand Slam Tennis 2
## 5898                                                              Grand Theft Auto
## 5899                                                              Grand Theft Auto
## 5900                                                          Grand Theft Auto III
## 5901                                                          Grand Theft Auto III
## 5902                                              Grand Theft Auto: Chinatown Wars
## 5903                                              Grand Theft Auto: Chinatown Wars
## 5904                                        Grand Theft Auto: Liberty City Stories
## 5905                                        Grand Theft Auto: Liberty City Stories
## 5906                                                   Grand Theft Auto: Vice City
## 5907                                                   Grand Theft Auto: Vice City
## 5908                                           Grand Theft Auto: Vice City Stories
## 5909                                           Grand Theft Auto: Vice City Stories
## 5910                                                                       Grandia
## 5911                                                                       Grandia
## 5912                                                                    Grandia II
## 5913                                                                    Grandia II
## 5914                                                                   Gray Matter
## 5915                                                                   Gray Matter
## 5916                                                                        Grease
## 5917                                                                        Grease
## 5918                                                                  Grease Dance
## 5919                                                                  Grease Dance
## 5920                                                                Gretzky NHL 06
## 5921                                                                Gretzky NHL 06
## 5922                                                 Grooverider: Slot Car Thunder
## 5923                                                 Grooverider: Slot Car Thunder
## 5924                                                    Guilty Gear XX Accent Core
## 5925                                                    Guilty Gear XX Accent Core
## 5926                                                   Guilty Gear Xrd -Revelator-
## 5927                                                   Guilty Gear Xrd -Revelator-
## 5928                                                         Guilty Gear Xrd: Sign
## 5929                                                         Guilty Gear Xrd: Sign
## 5930                                         Guinness World Records: The Videogame
## 5931                                         Guinness World Records: The Videogame
## 5932                                                                Guitar Hero II
## 5933                                                                Guitar Hero II
## 5934                                                         Gummy Bears Mini Golf
## 5935                                                         Gummy Bears Mini Golf
## 5936                                                                Gundam Breaker
## 5937                                                                Gundam Breaker
## 5938                                                              Gundam Breaker 2
## 5939                                                              Gundam Breaker 2
## 5940                                                              Gundam Breaker 3
## 5941                                                              Gundam Breaker 3
## 5942                                                             Hail to the Chimp
## 5943                                                             Hail to the Chimp
## 5944                                                                     Half-Life
## 5945                                                                     Half-Life
## 5946                                                                   Half-Life 2
## 5947                                                                   Half-Life 2
## 5948                                                                        Halo 2
## 5949                                                                        Halo 2
## 5950                                                          Halo: Combat Evolved
## 5951                                                          Halo: Combat Evolved
## 5952                                          Hannah Montana: Spotlight World Tour
## 5953                                          Hannah Montana: Spotlight World Tour
## 5954                    Hannspree Ten Kate Honda: SBK Superbike World Championship
## 5955                    Hannspree Ten Kate Honda: SBK Superbike World Championship
## 5956                                                  Harukanaru Toki no Naka de 6
## 5957                                                  Harukanaru Toki no Naka de 6
## 5958                                                  Harvest Moon: Magical Melody
## 5959                                                  Harvest Moon: Magical Melody
## 5960                                           Harvest Moon: The Tale of Two Towns
## 5961                                           Harvest Moon: The Tale of Two Towns
## 5962                                             Hasbro Family Game Night Fun Pack
## 5963                                             Hasbro Family Game Night Fun Pack
## 5964                                              Hatsune Miku: Project Diva F 2nd
## 5965                                              Hatsune Miku: Project Diva F 2nd
## 5966                                                  Hatsune Miku: Project Diva X
## 5967                                                  Hatsune Miku: Project Diva X
## 5968                                                  Hatsune Miku: Project Diva f
## 5969                                                  Hatsune Miku: Project Diva f
## 5970                                                        Headhunter: Redemption
## 5971                                                        Headhunter: Redemption
## 5972                                                        Heart no Kuni no Alice
## 5973                                                        Heart no Kuni no Alice
## 5974                                                                    Heatseeker
## 5975                                                                    Heatseeker
## 5976                                                      Hell's Kitchen: The Game
## 5977                                                      Hell's Kitchen: The Game
## 5978                                                    Hello Kitty: Roller Rescue
## 5979                                                    Hello Kitty: Roller Rescue
## 5980                                                            Heroes over Europe
## 5981                                                            Heroes over Europe
## 5982                     Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 5983                     Hidden Mysteries: Titanic - Secrets of the Fateful Voyage
## 5984                                          High Heat Major League Baseball 2004
## 5985                                          High Heat Major League Baseball 2004
## 5986                                                           High Rollers Casino
## 5987                                                           High Rollers Casino
## 5988                                                 High School Musical: Sing It!
## 5989                                                 High School Musical: Sing It!
## 5990                                                 Higurashi no Naku Koro ni Iki
## 5991                                                 Higurashi no Naku Koro ni Iki
## 5992                                            History Civil War: Secret Missions
## 5993                                            History Civil War: Secret Missions
## 5994                                                                 Hitman (2016)
## 5995                                                                 Hitman (2016)
## 5996                                                             Hitman: Contracts
## 5997                                                             Hitman: Contracts
## 5998                                                            Hitman: HD Trilogy
## 5999                                                            Hitman: HD Trilogy
## 6000                                                               Honda ATV Fever
## 6001                                                               Honda ATV Fever
## 6002                                            Horrid Henry: Missions of Mischief
## 6003                                            Horrid Henry: Missions of Mischief
## 6004                                                         Horse Life Adventures
## 6005                                                         Horse Life Adventures
## 6006                                            Hot Shots Golf: World Invitational
## 6007                                            Hot Shots Golf: World Invitational
## 6008                                                       Hot Wheels Turbo Racing
## 6009                                                       Hot Wheels Turbo Racing
## 6010                                                         Hot Wheels World Race
## 6011                                                         Hot Wheels World Race
## 6012                                                    Hot Wheels: Battle Force 5
## 6013                                                    Hot Wheels: Battle Force 5
## 6014                                                      Hot Wheels: Track Attack
## 6015                                                      Hot Wheels: Track Attack
## 6016                                                                Hotel for Dogs
## 6017                                                                Hotel for Dogs
## 6018                                                               Hummer Badlands
## 6019                                                               Hummer Badlands
## 6020                                                         Hunter: The Reckoning
## 6021                                                         Hunter: The Reckoning
## 6022                                                                 Hydro Thunder
## 6023                                                                 Hydro Thunder
## 6024                                                       Hyperdimension Neptunia
## 6025                                                       Hyperdimension Neptunia
## 6026                                               Hyperdimension Neptunia Victory
## 6027                                               Hyperdimension Neptunia Victory
## 6028                                                   Hyperdimension Neptunia mk2
## 6029                                                   Hyperdimension Neptunia mk2
## 6030                                                               Hyrule Warriors
## 6031                                                               Hyrule Warriors
## 6032                                             Hysteria Hospital: Emergency Ward
## 6033                                             Hysteria Hospital: Emergency Ward
## 6034                                                             I Am In The Movie
## 6035                                                             I Am In The Movie
## 6036                                          I'm A Celebrity: Get Me Out of Here!
## 6037                                          I'm A Celebrity: Get Me Out of Here!
## 6038                                                                           ICO
## 6039                                                                           ICO
## 6040                                           IHRA Drag Racing: Sportsman Edition
## 6041                                           IHRA Drag Racing: Sportsman Edition
## 6042                                            IHRA Professional Drag Racing 2005
## 6043                                            IHRA Professional Drag Racing 2005
## 6044                                                                    Ice Hockey
## 6045                                                                    Ice Hockey
## 6046                                                                Igor: The Game
## 6047                                                                Igor: The Game
## 6048                                                     Imagine: Fashion Designer
## 6049                                                     Imagine: Fashion Designer
## 6050                                                            Impossible Mission
## 6051                                                            Impossible Mission
## 6052                                                              Inazuma Eleven 3
## 6053                                                              Inazuma Eleven 3
## 6054                                                      Indianapolis 500 Legends
## 6055                                                      Indianapolis 500 Legends
## 6056                                                                IndyCar Series
## 6057                                                                IndyCar Series
## 6058                                           Infinite Stratos 2: Ignition Hearts
## 6059                                           Infinite Stratos 2: Ignition Hearts
## 6060                                                    International Cricket 2010
## 6061                                                    International Cricket 2010
## 6062                                            Iron Chef America: Supreme Cuisine
## 6063                                            Iron Chef America: Supreme Cuisine
## 6064                                                                 Ivy the Kiwi?
## 6065                                                                 Ivy the Kiwi?
## 6066                                                              Jackass the Game
## 6067                                                              Jackass the Game
## 6068                                             Jak and Daxter: The Lost Frontier
## 6069                                             Jak and Daxter: The Lost Frontier
## 6070                                                   Jambo! Safari Animal Rescue
## 6071                                                   Jambo! Safari Animal Rescue
## 6072                                                    James Cameron's Dark Angel
## 6073                                                    James Cameron's Dark Angel
## 6074                                                                Jaws Unleashed
## 6075                                                                Jaws Unleashed
## 6076                                                       Jaws: Ultimate Predator
## 6077                                                       Jaws: Ultimate Predator
## 6078                                                              Jenga World Tour
## 6079                                                              Jenga World Tour
## 6080                                                Jeremy McGrath Supercross 2000
## 6081                                                Jeremy McGrath Supercross 2000
## 6082                                               Jeremy McGrath Supercross World
## 6083                                               Jeremy McGrath Supercross World
## 6084                                                Jewel Master: Cradle Of Rome 2
## 6085                                                Jewel Master: Cradle Of Rome 2
## 6086                                             Jewel Quest 5: The Sleepless Star
## 6087                                             Jewel Quest 5: The Sleepless Star
## 6088                                                 Jikkyou Powerful Major League
## 6089                                                 Jikkyou Powerful Major League
## 6090                                            Jikkyou Powerful Major League 2009
## 6091                                            Jikkyou Powerful Major League 2009
## 6092                                                Jikkyou Powerful Pro Yakyuu 10
## 6093                                                Jikkyou Powerful Pro Yakyuu 10
## 6094                                                Jikkyou Powerful Pro Yakyuu 11
## 6095                                                Jikkyou Powerful Pro Yakyuu 11
## 6096                                                Jikkyou Powerful Pro Yakyuu 12
## 6097                                                Jikkyou Powerful Pro Yakyuu 12
## 6098                                      Jikkyou Powerful Pro Yakyuu 12 Ketteiban
## 6099                                      Jikkyou Powerful Pro Yakyuu 12 Ketteiban
## 6100                                                Jikkyou Powerful Pro Yakyuu 15
## 6101                                                Jikkyou Powerful Pro Yakyuu 15
## 6102                                              Jikkyou Powerful Pro Yakyuu 2010
## 6103                                              Jikkyou Powerful Pro Yakyuu 2010
## 6104                                              Jikkyou Powerful Pro Yakyuu 2011
## 6105                                              Jikkyou Powerful Pro Yakyuu 2011
## 6106                                    Jikkyou Powerful Pro Yakyuu 2011 Ketteiban
## 6107                                    Jikkyou Powerful Pro Yakyuu 2011 Ketteiban
## 6108                                              Jikkyou Powerful Pro Yakyuu 2014
## 6109                                              Jikkyou Powerful Pro Yakyuu 2014
## 6110                                                 Jikkyou Powerful Pro Yakyuu 9
## 6111                                                 Jikkyou Powerful Pro Yakyuu 9
## 6112                                       Jillian Michaels Fitness Ultimatum 2010
## 6113                                       Jillian Michaels Fitness Ultimatum 2010
## 6114                                     JoJo's Bizarre Adventure: All Star Battle
## 6115                                     JoJo's Bizarre Adventure: All Star Battle
## 6116                                      JoJo's Bizarre Adventure: Eyes of Heaven
## 6117                                      JoJo's Bizarre Adventure: Eyes of Heaven
## 6118                                                    John Daly's ProStroke Golf
## 6119                                                    John Daly's ProStroke Golf
## 6120                                                   Judge Dredd: Dredd Vs Death
## 6121                                                   Judge Dredd: Dredd Vs Death
## 6122                                                                        Juiced
## 6123                                                                        Juiced
## 6124                                                      Just Dance: Disney Party
## 6125                                                      Just Dance: Disney Party
## 6126                                                         Justice League Heroes
## 6127                                                         Justice League Heroes
## 6128                                                  Kamen Rider: Battride War II
## 6129                                                  Kamen Rider: Battride War II
## 6130                                                    Kamen Rider: Dragon Knight
## 6131                                                    Kamen Rider: Dragon Knight
## 6132                                                        Kane & Lynch: Dead Men
## 6133                                                        Kane & Lynch: Dead Men
## 6134                                                      Kao the Kangaroo Round 2
## 6135                                                      Kao the Kangaroo Round 2
## 6136                                             Karaoke Revolution Glee: Volume 3
## 6137                                             Karaoke Revolution Glee: Volume 3
## 6138                               Katekyoo Hitman Reborn! Kindan no Yami no Delta
## 6139                               Katekyoo Hitman Reborn! Kindan no Yami no Delta
## 6140                                                Ken to Mahou to Gakuen Mono. 3
## 6141                                                Ken to Mahou to Gakuen Mono. 3
## 6142                         Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui V
## 6143                         Kidou Senshi Gundam: Giren no Yabou - Axis no Kyoui V
## 6144                                                                Killer is Dead
## 6145                                                                Killer is Dead
## 6146                                                                       Killer7
## 6147                                                                       Killer7
## 6148                                                                Kingdom Hearts
## 6149                                                                Kingdom Hearts
## 6150                                                             Kingdom Hearts II
## 6151                                                             Kingdom Hearts II
## 6152                                                              Knights Contract
## 6153                                                              Knights Contract
## 6154                                                      Knights in the Nightmare
## 6155                                                      Knights in the Nightmare
## 6156                                                           Knockout Kings 2000
## 6157                                                           Knockout Kings 2000
## 6158                                                           Knockout Kings 2001
## 6159                                                           Knockout Kings 2001
## 6160                                                           Knockout Kings 2002
## 6161                                                           Knockout Kings 2002
## 6162                                             Kung Fu Panda: Legendary Warriors
## 6163                                             Kung Fu Panda: Legendary Warriors
## 6164                                             Kuroko's Basketball: Miracle Game
## 6165                                             Kuroko's Basketball: Miracle Game
## 6166                                     Kyokugen Dasshutsu ADV: Zennin Shiboudesu
## 6167                                     Kyokugen Dasshutsu ADV: Zennin Shiboudesu
## 6168                                                                    L.A. Noire
## 6169                                                                    L.A. Noire
## 6170                                                                     L.A. Rush
## 6171                                                                     L.A. Rush
## 6172                                                          LEGO City Undercover
## 6173                                                          LEGO City Undercover
## 6174                                                 LEGO Ninjago: Shadow of Ronin
## 6175                                                 LEGO Ninjago: Shadow of Ronin
## 6176                                                                   LEGO Racers
## 6177                                                                   LEGO Racers
## 6178                                                             LEGO Soccer Mania
## 6179                                                             LEGO Soccer Mania
## 6180                                           Lara Croft and the Temple of Osiris
## 6181                                           Lara Croft and the Temple of Osiris
## 6182                                                       Last Escort: Club Katze
## 6183                                                       Last Escort: Club Katze
## 6184                                                                   Left 4 Dead
## 6185                                                                   Left 4 Dead
## 6186                                                                 Left 4 Dead 2
## 6187                                                                 Left 4 Dead 2
## 6188                                                     Legend of Kay Anniversary
## 6189                                                     Legend of Kay Anniversary
## 6190                                                          Legend of the Dragon
## 6191                                                          Legend of the Dragon
## 6192                                                       Legends of WrestleMania
## 6193                                                       Legends of WrestleMania
## 6194                                           Leisure Suit Larry: Box Office Bust
## 6195                                           Leisure Suit Larry: Box Office Bust
## 6196                                           Leisure Suit Larry: Magna Cum Laude
## 6197                                           Leisure Suit Larry: Magna Cum Laude
## 6198                                                          Let's Play Ballerina
## 6199                                                          Let's Play Ballerina
## 6200                                                             Let's Play Garden
## 6201                                                             Let's Play Garden
## 6202                                         Lightning Returns: Final Fantasy XIII
## 6203                                         Lightning Returns: Final Fantasy XIII
## 6204                                                         Line Rider 2: Unbound
## 6205                                                         Line Rider 2: Unbound
## 6206                                      Little League World Series Baseball 2008
## 6207                                      Little League World Series Baseball 2008
## 6208                                      Little League World Series Baseball 2009
## 6209                                      Little League World Series Baseball 2009
## 6210                                      Little League World Series Baseball 2010
## 6211                                      Little League World Series Baseball 2010
## 6212                              Little League World Series Baseball: Double Play
## 6213                              Little League World Series Baseball: Double Play
## 6214                                                               LittleBigPlanet
## 6215                                                               LittleBigPlanet
## 6216                                                             LittleBigPlanet 3
## 6217                                                             LittleBigPlanet 3
## 6218                                                             Littlest Pet Shop
## 6219                                                             Littlest Pet Shop
## 6220                                                                   Lode Runner
## 6221                                                                   Lode Runner
## 6222                                                             Lollipop Chainsaw
## 6223                                                             Lollipop Chainsaw
## 6224                     London 2012: The Official Video Game of the Olympic Games
## 6225                     London 2012: The Official Video Game of the Olympic Games
## 6226                                                            Lord of Apocalypse
## 6227                                                            Lord of Apocalypse
## 6228                                                                Lost Dimension
## 6229                                                                Lost Dimension
## 6230                                                                   Lost Heroes
## 6231                                                                   Lost Heroes
## 6232                                                Lost Planet: Extreme Condition
## 6233                                                Lost Planet: Extreme Condition
## 6234                                              Lucha Libre AAA: Heroes del Ring
## 6235                                              Lucha Libre AAA: Heroes del Ring
## 6236                                             Lunar: Silver Star Story Complete
## 6237                                             Lunar: Silver Star Story Complete
## 6238                                                    Luxor: Pharaoh's Challenge
## 6239                                                    Luxor: Pharaoh's Challenge
## 6240                                                             M&M's Kart Racing
## 6241                                                             M&M's Kart Racing
## 6242                                                              MLB 06: The Show
## 6243                                                              MLB 06: The Show
## 6244                                                              MLB 12: The Show
## 6245                                                              MLB 12: The Show
## 6246                                                              MLB 13: The Show
## 6247                                                              MLB 13: The Show
## 6248                                                              MLB 16: The Show
## 6249                                                              MLB 16: The Show
## 6250                                                      MLB Front Office Manager
## 6251                                                      MLB Front Office Manager
## 6252                                                                MLB Power Pros
## 6253                                                                MLB Power Pros
## 6254                                                            MLB SlugFest 20-03
## 6255                                                            MLB SlugFest 20-03
## 6256                                                             MLB SlugFest 2006
## 6257                                                             MLB SlugFest 2006
## 6258                                                           MLB SlugFest Loaded
## 6259                                                           MLB SlugFest Loaded
## 6260                                                      MTV Celebrity Deathmatch
## 6261                                                      MTV Celebrity Deathmatch
## 6262                                      MTV Music Generator 3: This Is the Remix
## 6263                                      MTV Music Generator 3: This Is the Remix
## 6264                                                          MVP 06 NCAA Baseball
## 6265                                                          MVP 06 NCAA Baseball
## 6266                                                             MVP Baseball 2003
## 6267                                                             MVP Baseball 2003
## 6268                                                                  MX Unleashed
## 6269                                                                  MX Unleashed
## 6270                                          MX World Tour Featuring Jamie Little
## 6271                                          MX World Tour Featuring Jamie Little
## 6272                                                         MX vs. ATV Supercross
## 6273                                                         MX vs. ATV Supercross
## 6274                                                  MX vs. ATV Supercross Encore
## 6275                                                  MX vs. ATV Supercross Encore
## 6276                                                          MX vs. ATV Unleashed
## 6277                                                          MX vs. ATV Unleashed
## 6278                                                             MX vs. ATV: Alive
## 6279                                                             MX vs. ATV: Alive
## 6280                                                   Mace Griffin: Bounty Hunter
## 6281                                                   Mace Griffin: Bounty Hunter
## 6282                                                                Mad Max (2015)
## 6283                                                                Mad Max (2015)
## 6284                                                               Madden NFL 2000
## 6285                                                               Madden NFL 2000
## 6286                                                                 Madden NFL 99
## 6287                                                                 Madden NFL 99
## 6288                                            Majesty 2: The Fantasy Kingdom Sim
## 6289                                            Majesty 2: The Fantasy Kingdom Sim
## 6290                                                Majin and the Forsaken Kingdom
## 6291                                                Majin and the Forsaken Kingdom
## 6292                                                    Major League Baseball 2K13
## 6293                                                    Major League Baseball 2K13
## 6294                                                     Major League Baseball 2K5
## 6295                                                     Major League Baseball 2K5
## 6296                                                 Making History: The Great War
## 6297                                                 Making History: The Great War
## 6298                                                                        Malice
## 6299                                                                        Malice
## 6300                                                                       Manhunt
## 6301                                                                       Manhunt
## 6302                                                           Margot's Word Brain
## 6303                                                           Margot's Word Brain
## 6304                                Mario & Sonic at the London 2012 Olympic Games
## 6305                                Mario & Sonic at the London 2012 Olympic Games
## 6306                                            Mario & Sonic at the Olympic Games
## 6307                                            Mario & Sonic at the Olympic Games
## 6308                                     Mario & Sonic at the Olympic Winter Games
## 6309                                     Mario & Sonic at the Olympic Winter Games
## 6310                                   Mario & Sonic at the Rio 2016 Olympic Games
## 6311                                   Mario & Sonic at the Rio 2016 Olympic Games
## 6312                                                                   Mario Bros.
## 6313                                                                   Mario Bros.
## 6314                                                                    Mario Golf
## 6315                                                                    Mario Golf
## 6316                                          Mario vs. Donkey Kong: Tipping Stars
## 6317                                          Mario vs. Donkey Kong: Tipping Stars
## 6318                                             Marvel Avengers: Battle for Earth
## 6319                                             Marvel Avengers: Battle for Earth
## 6320                                                           Marvel Super Heroes
## 6321                                                           Marvel Super Heroes
## 6322                                       Marvel vs. Capcom 3: Fate of Two Worlds
## 6323                                       Marvel vs. Capcom 3: Fate of Two Worlds
## 6324                                      Marvel vs. Capcom: Clash of Super Heroes
## 6325                                      Marvel vs. Capcom: Clash of Super Heroes
## 6326                            Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 6327                            Mary-Kate and Ashley: Sweet 16 - Licenced to Drive
## 6328                                                                   Mass Effect
## 6329                                                                   Mass Effect
## 6330                                                         Mat Hoffman's Pro BMX
## 6331                                                         Mat Hoffman's Pro BMX
## 6332                                                        Max & the Magic Marker
## 6333                                                        Max & the Magic Marker
## 6334                                                                     Mayhem 3D
## 6335                                                                     Mayhem 3D
## 6336                                                                       McDROID
## 6337                                                                       McDROID
## 6338                                                       Medal of Honor Heroes 2
## 6339                                                       Medal of Honor Heroes 2
## 6340                                                   Medal of Honor: Underground
## 6341                                                   Medal of Honor: Underground
## 6342                                                      Medal of Honor: Vanguard
## 6343                                                      Medal of Honor: Vanguard
## 6344                                    Mega Man 8 Anniversary Collector's Edition
## 6345                                    Mega Man 8 Anniversary Collector's Edition
## 6346                                                    Mega Man Legacy Collection
## 6347                                                    Mega Man Legacy Collection
## 6348                                                         Mega Man X Collection
## 6349                                                         Mega Man X Collection
## 6350                                                                   Mega Man X4
## 6351                                                                   Mega Man X4
## 6352                                                   Mega Man X: Command Mission
## 6353                                                   Mega Man X: Command Mission
## 6354                                                   Megamind: The Blue Defender
## 6355                                                   Megamind: The Blue Defender
## 6356                                                   Megamind: Ultimate Showdown
## 6357                                                   Megamind: Ultimate Showdown
## 6358                                                 Men in Black II: Alien Escape
## 6359                                                 Men in Black II: Alien Escape
## 6360                                        Mercenaries: Playground of Destruction
## 6361                                        Mercenaries: Playground of Destruction
## 6362                                                     Merv Griffin's Crosswords
## 6363                                                     Merv Griffin's Crosswords
## 6364                                                Metal Gear Rising: Revengeance
## 6365                                                Metal Gear Rising: Revengeance
## 6366                                                              Metal Gear Solid
## 6367                                                              Metal Gear Solid
## 6368                                                 Metal Gear Solid 2: Substance
## 6369                                                 Metal Gear Solid 2: Substance
## 6370                                                              Metal Slug 4 & 5
## 6371                                                              Metal Slug 4 & 5
## 6372                                                                    Metro 2033
## 6373                                                                    Metro 2033
## 6374                                                             Micro Machines V4
## 6375                                                             Micro Machines V4
## 6376                                                  Midnight Club 3: DUB Edition
## 6377                                                  Midnight Club 3: DUB Edition
## 6378                                            Midnight Club 3: DUB Edition Remix
## 6379                                            Midnight Club 3: DUB Edition Remix
## 6380                                                              Midnight Club II
## 6381                                                              Midnight Club II
## 6382                                                    Midnight Club: Los Angeles
## 6383                                                    Midnight Club: Los Angeles
## 6384                                                  Midnight Club: Street Racing
## 6385                                                  Midnight Club: Street Racing
## 6386                            Midnight Mysteries: The Edgar Allan Poe Conspiracy
## 6387                            Midnight Mysteries: The Edgar Allan Poe Conspiracy
## 6388                                   Military History: Commander - Europe at War
## 6389                                   Military History: Commander - Europe at War
## 6390                                                                      MindJack
## 6391                                                                      MindJack
## 6392                                                               Missile Command
## 6393                                                               Missile Command
## 6394                                                           Mission: Impossible
## 6395                                                           Mission: Impossible
## 6396                                                            Mobile Suit Gundam
## 6397                                                            Mobile Suit Gundam
## 6398                                                              ModNation Racers
## 6399                                                              ModNation Racers
## 6400                                                                         Mojo!
## 6401                                                                         Mojo!
## 6402                                                         Momotarou Dentetsu 11
## 6403                                                         Momotarou Dentetsu 11
## 6404                                                         Momotarou Dentetsu 16
## 6405                                                         Momotarou Dentetsu 16
## 6406                                                 Monster 4x4: Masters of Metal
## 6407                                                 Monster 4x4: Masters of Metal
## 6408                                                        Monster High 13 Wishes
## 6409                                                        Monster High 13 Wishes
## 6410                                                    Monster High: Ghoul Spirit
## 6411                                                    Monster High: Ghoul Spirit
## 6412                                                      Monster Hunter Freedom 2
## 6413                                                      Monster Hunter Freedom 2
## 6414                                                Monster Hunter Frontier Online
## 6415                                                Monster Hunter Frontier Online
## 6416                                                              Monster Hunter G
## 6417                                                              Monster Hunter G
## 6418                                              Monster Mayhem: Build and Battle
## 6419                                              Monster Mayhem: Build and Battle
## 6420                                                                Monsters, Inc.
## 6421                                                                Monsters, Inc.
## 6422                                                                          Moon
## 6423                                                                          Moon
## 6424                                                               Mortal Kombat 4
## 6425                                                               Mortal Kombat 4
## 6426                                           Mortal Kombat Mythologies: Sub-Zero
## 6427                                           Mortal Kombat Mythologies: Sub-Zero
## 6428                                                         Mortal Kombat Trilogy
## 6429                                                         Mortal Kombat Trilogy
## 6430                                                 Mortal Kombat vs. DC Universe
## 6431                                                 Mortal Kombat vs. DC Universe
## 6432                                                     Mortal Kombat: Armageddon
## 6433                                                     Mortal Kombat: Armageddon
## 6434                                                  Mortal Kombat: Shaolin Monks
## 6435                                                  Mortal Kombat: Shaolin Monks
## 6436                                             Moshi Monsters: Katsuma Unleashed
## 6437                                             Moshi Monsters: Katsuma Unleashed
## 6438                                          Moshi Monsters: Moshlings Theme Park
## 6439                                          Moshi Monsters: Moshlings Theme Park
## 6440                                                      MotionSports: Adrenaline
## 6441                                                      MotionSports: Adrenaline
## 6442                                                                  MotoGP 09/10
## 6443                                                                  MotoGP 09/10
## 6444                                                                  MotoGP 10/11
## 6445                                                                  MotoGP 10/11
## 6446                                                             Motocross Mania 3
## 6447                                                             Motocross Mania 3
## 6448                                                       MotorStorm: Arctic Edge
## 6449                                                       MotorStorm: Arctic Edge
## 6450                                                      Ms. Pac-Man Maze Madness
## 6451                                                      Ms. Pac-Man Maze Madness
## 6452                                                          Muppets Party Cruise
## 6453                                                          Muppets Party Cruise
## 6454                                                     Muramasa: The Demon Blade
## 6455                                                     Muramasa: The Demon Blade
## 6456                                                          My Baby: First Steps
## 6457                                                          My Baby: First Steps
## 6458                                                              My Ballet Studio
## 6459                                                              My Ballet Studio
## 6460                                                        My Fitness Coach: Club
## 6461                                                        My Fitness Coach: Club
## 6462                                                                 My Horse & Me
## 6463                                                                 My Horse & Me
## 6464                                                My Horse & Me: Riding for Gold
## 6465                                                My Horse & Me: Riding for Gold
## 6466                                                              My Spanish Coach
## 6467                                                              My Spanish Coach
## 6468                                                                 My Word Coach
## 6469                                                                 My Word Coach
## 6470                                                                 MySims Agents
## 6471                                                                 MySims Agents
## 6472                                                                MySims Kingdom
## 6473                                                                MySims Kingdom
## 6474                                                                  MySims Party
## 6475                                                                  MySims Party
## 6476                                                                 MySims Racing
## 6477                                                                 MySims Racing
## 6478                                                               Myst III: Exile
## 6479                                                               Myst III: Exile
## 6480                                                           Myst IV: Revelation
## 6481                                                           Myst IV: Revelation
## 6482                                          Mystery Dungeon: Shiren the Wanderer
## 6483                                          Mystery Dungeon: Shiren the Wanderer
## 6484                                                                 Mystic Heroes
## 6485                                                                 Mystic Heroes
## 6486                                                                            N+
## 6487                                                                            N+
## 6488                                                                          NARC
## 6489                                                                          NARC
## 6490                                                                    NASCAR '14
## 6491                                                                    NASCAR '14
## 6492                                                 NASCAR 06: Total Team Control
## 6493                                                 NASCAR 06: Total Team Control
## 6494                                                                     NASCAR 07
## 6495                                                                     NASCAR 07
## 6496                                                                   NASCAR 2000
## 6497                                                                   NASCAR 2000
## 6498                                                                   NASCAR 2001
## 6499                                                                   NASCAR 2001
## 6500                                                                     NASCAR 99
## 6501                                                                     NASCAR 99
## 6502                                                         NASCAR Heat Evolution
## 6503                                                         NASCAR Heat Evolution
## 6504                                                  NASCAR The Game: Inside Line
## 6505                                                  NASCAR The Game: Inside Line
## 6506                                                           NASCAR Thunder 2004
## 6507                                                           NASCAR Thunder 2004
## 6508                                                       NASCAR: Dirt to Daytona
## 6509                                                       NASCAR: Dirt to Daytona
## 6510                                                                        NBA 06
## 6511                                                                        NBA 06
## 6512                                                                   NBA Ballers
## 6513                                                                   NBA Ballers
## 6514                                                       NBA Ballers: Chosen One
## 6515                                                       NBA Ballers: Chosen One
## 6516                                                           NBA Ballers: Phenom
## 6517                                                           NBA Ballers: Phenom
## 6518                                                                  NBA Hangtime
## 6519                                                                  NBA Hangtime
## 6520                                                                     NBA Hoopz
## 6521                                                                     NBA Hoopz
## 6522                                                                   NBA Live 14
## 6523                                                                   NBA Live 14
## 6524                                                                   NBA Live 15
## 6525                                                                   NBA Live 15
## 6526                                                                   NBA Live 16
## 6527                                                                   NBA Live 16
## 6528                                                                 NBA Live 2000
## 6529                                                                 NBA Live 2000
## 6530                                                                 NBA Live 2001
## 6531                                                                 NBA Live 2001
## 6532                                                                   NBA Live 99
## 6533                                                                   NBA Live 99
## 6534                                                             NBA ShootOut 2001
## 6535                                                             NBA ShootOut 2001
## 6536                                                      NBA Showtime: NBA on NBC
## 6537                                                      NBA Showtime: NBA on NBC
## 6538                                                             NBA Starting Five
## 6539                                                             NBA Starting Five
## 6540                                                                    NBA Street
## 6541                                                                    NBA Street
## 6542                                                          NBA Street Homecourt
## 6543                                                          NBA Street Homecourt
## 6544                                                          NBA in the Zone 2000
## 6545                                                          NBA in the Zone 2000
## 6546                                                            NCAA Basketball 10
## 6547                                                            NCAA Basketball 10
## 6548                                                   NCAA College Basketball 2K3
## 6549                                                   NCAA College Basketball 2K3
## 6550                                                          NCAA Final Four 2001
## 6551                                                          NCAA Final Four 2001
## 6552                                                              NCAA Football 06
## 6553                                                              NCAA Football 06
## 6554                                                              NCAA Football 12
## 6555                                                              NCAA Football 12
## 6556                                                              NCAA Football 13
## 6557                                                              NCAA Football 13
## 6558                                                              NCAA Football 14
## 6559                                                              NCAA Football 14
## 6560                                                         NCAA GameBreaker 2001
## 6561                                                         NCAA GameBreaker 2001
## 6562                                                         NCAA March Madness 06
## 6563                                                         NCAA March Madness 06
## 6564                                                         NCAA March Madness 07
## 6565                                                         NCAA March Madness 07
## 6566                                                       NCAA March Madness 2004
## 6567                                                       NCAA March Madness 2004
## 6568                                                       NCAA March Madness 2005
## 6569                                                       NCAA March Madness 2005
## 6570                                                                       NFL 2K2
## 6571                                                                       NFL 2K2
## 6572                                                                     NFL Blitz
## 6573                                                                     NFL Blitz
## 6574                                                                NFL Blitz 2000
## 6575                                                                NFL Blitz 2000
## 6576                                                                NFL Blitz 2001
## 6577                                                                NFL Blitz 2001
## 6578                                                              NFL GameDay 2001
## 6579                                                              NFL GameDay 2001
## 6580                                                              NFL GameDay 2002
## 6581                                                              NFL GameDay 2002
## 6582                                                                NFL Head Coach
## 6583                                                                NFL Head Coach
## 6584                                                             NFL Head Coach 09
## 6585                                                             NFL Head Coach 09
## 6586                                                     NFL Quarterback Club 2002
## 6587                                                     NFL Quarterback Club 2002
## 6588                                                                      NFL Tour
## 6589                                                                      NFL Tour
## 6590                                                                        NHL 08
## 6591                                                                        NHL 08
## 6592                                                                        NHL 10
## 6593                                                                        NHL 10
## 6594                                                                        NHL 11
## 6595                                                                        NHL 11
## 6596                                                                        NHL 12
## 6597                                                                        NHL 12
## 6598                                                                        NHL 13
## 6599                                                                        NHL 13
## 6600                                                                        NHL 14
## 6601                                                                        NHL 14
## 6602                                                                        NHL 17
## 6603                                                                        NHL 17
## 6604                                                                      NHL 2001
## 6605                                                                      NHL 2001
## 6606                                                                       NHL 2K8
## 6607                                                                       NHL 2K8
## 6608                                                                        NHL 99
## 6609                                                                        NHL 99
## 6610                                                              NHL Breakaway 98
## 6611                                                              NHL Breakaway 98
## 6612                                                              NHL FaceOff 2001
## 6613                                                              NHL FaceOff 2001
## 6614                                                                    NHL Legacy
## 6615                                                                    NHL Legacy
## 6616                               NHRA Drag Racing: Countdown to the Championship
## 6617                               NHRA Drag Racing: Countdown to the Championship
## 6618                           NTRA Breeders' Cup World Thoroughbred Championships
## 6619                           NTRA Breeders' Cup World Thoroughbred Championships
## 6620                                                   Napoleon Dynamite: The Game
## 6621                                                   Napoleon Dynamite: The Game
## 6622                                      Naruto Shippuden: Ultimate Ninja Storm 2
## 6623                                      Naruto Shippuden: Ultimate Ninja Storm 2
## 6624                                      Naruto Shippuden: Ultimate Ninja Storm 3
## 6625                                      Naruto Shippuden: Ultimate Ninja Storm 3
## 6626                                      Naruto Shippuden: Ultimate Ninja Storm 4
## 6627                                      Naruto Shippuden: Ultimate Ninja Storm 4
## 6628                            Naruto Shippuden: Ultimate Ninja Storm Generations
## 6629                            Naruto Shippuden: Ultimate Ninja Storm Generations
## 6630                             Naruto Shippuden: Ultimate Ninja Storm Revolution
## 6631                             Naruto Shippuden: Ultimate Ninja Storm Revolution
## 6632                                         Natsuiro High School: Seishun Hakusho
## 6633                                         Natsuiro High School: Seishun Hakusho
## 6634                                                                  Naughty Bear
## 6635                                                                  Naughty Bear
## 6636                                           Need for Speed Carbon: Own the City
## 6637                                           Need for Speed Carbon: Own the City
## 6638                                                         Need for Speed: Nitro
## 6639                                                         Need for Speed: Nitro
## 6640                                             Need for Speed: Porsche Unleashed
## 6641                                             Need for Speed: Porsche Unleashed
## 6642                                                       Neon Genesis Evangelion
## 6643                                                       Neon Genesis Evangelion
## 6644                                                      Neopets Puzzle Adventure
## 6645                                                      Neopets Puzzle Adventure
## 6646                                                                     NeverDead
## 6647                                                                     NeverDead
## 6648                                                            New Carnival Games
## 6649                                                            New Carnival Games
## 6650                                               Ni Hao, Kai-lan: Super Game Day
## 6651                                               Ni Hao, Kai-lan: Super Game Day
## 6652                                                         NiGHTS into dreams...
## 6653                                                         NiGHTS into dreams...
## 6654                                                             NickToons: Racing
## 6655                                                             NickToons: Racing
## 6656                                                             Nickelodeon Dance
## 6657                                                             Nickelodeon Dance
## 6658                                                       Nickelodeon Party Blast
## 6659                                                       Nickelodeon Party Blast
## 6660                                          Nicktoons: Battle for Volcano Island
## 6661                                          Nicktoons: Battle for Volcano Island
## 6662                                                                          NieR
## 6663                                                                          NieR
## 6664                                                           Nightmare Creatures
## 6665                                                           Nightmare Creatures
## 6666                                                            Ninja Gaiden Sigma
## 6667                                                            Ninja Gaiden Sigma
## 6668                                                          Ninja Gaiden Sigma 2
## 6669                                                          Ninja Gaiden Sigma 2
## 6670                                                                  Ninja Reflex
## 6671                                                                  Ninja Reflex
## 6672                                    Nitroplus Blasterz: Heroines Infinite Duel
## 6673                                    Nitroplus Blasterz: Heroines Infinite Duel
## 6674                                              No More Heroes: Heroes' Paradise
## 6675                                              No More Heroes: Heroes' Paradise
## 6676                                                     Nobunaga no Yabou: Souzou
## 6677                                                     Nobunaga no Yabou: Souzou
## 6678                                                   Nobunaga no Yabou: Tenshoki
## 6679                                                   Nobunaga no Yabou: Tenshoki
## 6680                                      Nobunaga's Ambition: Sphere of Influence
## 6681                                      Nobunaga's Ambition: Sphere of Influence
## 6682                                                              Nodame Cantabile
## 6683                                                              Nodame Cantabile
## 6684                                                                       Obscure
## 6685                                                                       Obscure
## 6686                                                        Obscure: The Aftermath
## 6687                                                        Obscure: The Aftermath
## 6688                                                     Oddworld: Munch's Oddysee
## 6689                                                     Oddworld: Munch's Oddysee
## 6690                                                             Ojyousama Express
## 6691                                                             Ojyousama Express
## 6692                                                     Omerta: City of Gangsters
## 6693                                                     Omerta: City of Gangsters
## 6694                                                  One Piece: Pirate Warriors 2
## 6695                                                  One Piece: Pirate Warriors 2
## 6696                                     One Piece: Romance Dawn - Bouken no Yoake
## 6697                                     One Piece: Romance Dawn - Bouken no Yoake
## 6698                                                          Onechanbara Z Kagura
## 6699                                                          Onechanbara Z Kagura
## 6700                                                                    Order Up!!
## 6701                                                                    Order Up!!
## 6702                                                    OutRun 2006: Coast 2 Coast
## 6703                                                    OutRun 2006: Coast 2 Coast
## 6704                                                                   Outlaw Golf
## 6705                                                                   Outlaw Golf
## 6706                                                                 Outlaw Golf 2
## 6707                                                                 Outlaw Golf 2
## 6708                                                                 Outlaw Tennis
## 6709                                                                 Outlaw Tennis
## 6710                                              Over the Hedge: Hammy Goes Nuts!
## 6711                                              Over the Hedge: Hammy Goes Nuts!
## 6712                                                                      Overlord
## 6713                                                                      Overlord
## 6714                                                         PBR: Out of the Chute
## 6715                                                         PBR: Out of the Chute
## 6716                                                            PaRappa The Rapper
## 6717                                                            PaRappa The Rapper
## 6718                                                                       Pac-Man
## 6719                                                                       Pac-Man
## 6720                                                                 Pac-Man Fever
## 6721                                                                 Pac-Man Fever
## 6722                                                  Painkiller: Hell & Damnation
## 6723                                                  Painkiller: Hell & Damnation
## 6724                                                                      Parodius
## 6725                                                                      Parodius
## 6726                                                         Paws & Claws: Pet Vet
## 6727                                                         Paws & Claws: Pet Vet
## 6728                                                                  Penny Racers
## 6729                                                                  Penny Racers
## 6730                                                      Peppa Pig: Fun and Games
## 6731                                                      Peppa Pig: Fun and Games
## 6732                                                           Peppa Pig: The Game
## 6733                                                           Peppa Pig: The Game
## 6734                                                 Persona 2: Eternal Punishment
## 6735                                                 Persona 2: Eternal Punishment
## 6736                                                              Persona 4: Arena
## 6737                                                              Persona 4: Arena
## 6738                                                      Persona 4: Arena Ultimax
## 6739                                                      Persona 4: Arena Ultimax
## 6740                                                                     Persona 5
## 6741                                                                     Persona 5
## 6742                                                     Petz Rescue: Wildlife Vet
## 6743                                                     Petz Rescue: Wildlife Vet
## 6744                                                         Petz: Hamsterz Life 2
## 6745                                                         Petz: Hamsterz Life 2
## 6746                              Phantasy Star Online 2 Episode 4: Deluxe Package
## 6747                              Phantasy Star Online 2 Episode 4: Deluxe Package
## 6748                                           Phantasy Star Online Episode I & II
## 6749                                           Phantasy Star Online Episode I & II
## 6750                                                        Phantasy Star Universe
## 6751                                                        Phantasy Star Universe
## 6752                                                                     PhotoKano
## 6753                                                                     PhotoKano
## 6754                                                                    Pictionary
## 6755                                                                    Pictionary
## 6756                                                  Pictionary: Ultimate Edition
## 6757                                                  Pictionary: Ultimate Edition
## 6758                                                                  Pimp My Ride
## 6759                                                                  Pimp My Ride
## 6760                                                   Pimp My Ride: Street Racing
## 6761                                                   Pimp My Ride: Street Racing
## 6762                                              Pirates: The Legend of Black Kat
## 6763                                              Pirates: The Legend of Black Kat
## 6764                                           PlayStation All-Stars Battle Royale
## 6765                                           PlayStation All-Stars Battle Royale
## 6766                                                          Playboy: The Mansion
## 6767                                                          Playboy: The Mansion
## 6768                                                                Pocket Fighter
## 6769                                                                Pocket Fighter
## 6770                                                              Polaris SnoCross
## 6771                                                              Polaris SnoCross
## 6772                                                                PopStar Guitar
## 6773                                                                PopStar Guitar
## 6774                                                                        Popeye
## 6775                                                                        Popeye
## 6776                                                                 Port Royale 3
## 6777                                                                 Port Royale 3
## 6778                                              Power Gig: Rise of the SixString
## 6779                                              Power Gig: Rise of the SixString
## 6780                                                         Power Rangers Samurai
## 6781                                                         Power Rangers Samurai
## 6782                                                  Power Rangers: Super Legends
## 6783                                                  Power Rangers: Super Legends
## 6784                                                     Power Rangers: Time Force
## 6785                                                     Power Rangers: Time Force
## 6786                                                                    Powerdrome
## 6787                                                                    Powerdrome
## 6788                                                     Predator: Concrete Jungle
## 6789                                                     Predator: Concrete Jungle
## 6790                                                  Press Your Luck 2010 Edition
## 6791                                                  Press Your Luck 2010 Edition
## 6792                                                                          Prey
## 6793                                                                          Prey
## 6794                                                              Prince of Persia
## 6795                                                              Prince of Persia
## 6796                                                Prince of Persia: Rival Swords
## 6797                                                Prince of Persia: Rival Swords
## 6798                                            Princess Isabella: A Witch's Curse
## 6799                                            Princess Isabella: A Witch's Curse
## 6800                                                  Prison Break: The Conspiracy
## 6801                                                  Prison Break: The Conspiracy
## 6802                                                     Pro Baseball Spirits 2015
## 6803                                                     Pro Baseball Spirits 2015
## 6804                                                      Pro Cycling Manager 2016
## 6805                                                      Pro Cycling Manager 2016
## 6806                                                               Pro Race Driver
## 6807                                                               Pro Race Driver
## 6808                                                           Pro Yaky? Spirits 4
## 6809                                                           Pro Yaky? Spirits 4
## 6810                                                           Pro Yaky? Spirits 5
## 6811                                                           Pro Yaky? Spirits 5
## 6812                                                           Pro Yaky? Spirits 6
## 6813                                                           Pro Yaky? Spirits 6
## 6814                                                     Pro Yakyuu Family Stadium
## 6815                                                     Pro Yakyuu Family Stadium
## 6816                                                Pro Yakyuu Spirits 5 Kanzenban
## 6817                                                Pro Yakyuu Spirits 5 Kanzenban
## 6818                                                 Pro Yakyuu Team o Tsukurou! 2
## 6819                                                 Pro Yakyuu Team o Tsukurou! 2
## 6820                                                      Professional Farmer 2016
## 6821                                                      Professional Farmer 2016
## 6822                                               Professor Heinz Wolff's Gravity
## 6823                                               Professor Heinz Wolff's Gravity
## 6824                                                               Project Setsuna
## 6825                                                               Project Setsuna
## 6826                                                            Project: Snowblind
## 6827                                                            Project: Snowblind
## 6828                                              Psi-Ops: The Mindgate Conspiracy
## 6829                                              Psi-Ops: The Mindgate Conspiracy
## 6830                                              Psycho-Pass: Mandatory Happiness
## 6831                                              Psycho-Pass: Mandatory Happiness
## 6832                                                                   Psychonauts
## 6833                                                                   Psychonauts
## 6834                                                            Pump It Up: Exceed
## 6835                                                            Pump It Up: Exceed
## 6836                                                                          Pure
## 6837                                                                          Pure
## 6838                                                                   Pure Futbol
## 6839                                                                   Pure Futbol
## 6840                                                                     Purr Pals
## 6841                                                                     Purr Pals
## 6842                                                                Puyo Pop Fever
## 6843                                                                Puyo Pop Fever
## 6844                                                   Puyo Puyo! 15th Anniversary
## 6845                                                   Puyo Puyo! 15th Anniversary
## 6846                                                  Puyo Puyo!! 20th Anniversary
## 6847                                                  Puyo Puyo!! 20th Anniversary
## 6848                                                             Puzzle Chronicles
## 6849                                                             Puzzle Chronicles
## 6850                                                               Puzzle Kingdoms
## 6851                                                               Puzzle Kingdoms
## 6852                                                            Puzzler Collection
## 6853                                                            Puzzler Collection
## 6854                                                                        Q*bert
## 6855                                                                        Q*bert
## 6856                                                                       Quake 4
## 6857                                                                       Quake 4
## 6858                                                                      Quake II
## 6859                                                                      Quake II
## 6860                                                                Quantum Theory
## 6861                                                                Quantum Theory
## 6862                                                            RLH: Run Like Hell
## 6863                                                            RLH: Run Like Hell
## 6864                                                               Rabbids Go Home
## 6865                                                               Rabbids Go Home
## 6866                                     Rabbids Invasion: The Interactive TV Show
## 6867                                     Rabbids Invasion: The Interactive TV Show
## 6868                                                                Racquet Sports
## 6869                                                                Racquet Sports
## 6870                                                              Ragnarok Odyssey
## 6871                                                              Ragnarok Odyssey
## 6872                                               Rally Fusion: Race of Champions
## 6873                                               Rally Fusion: Race of Champions
## 6874                                                     Rampage 2: Universal Tour
## 6875                                                     Rampage 2: Universal Tour
## 6876                                                            Rampage World Tour
## 6877                                                            Rampage World Tour
## 6878                                                    Rapala Fishing Frenzy 2009
## 6879                                                    Rapala Fishing Frenzy 2009
## 6880                                                    Rapala Tournament Fishing!
## 6881                                                    Rapala Tournament Fishing!
## 6882                                                                   Rat Attack!
## 6883                                                                   Rat Attack!
## 6884                                                    Ratchet & Clank Collection
## 6885                                                    Ratchet & Clank Collection
## 6886                                         Ratchet & Clank: Full Frontal Assault
## 6887                                         Ratchet & Clank: Full Frontal Assault
## 6888                                                 Ratchet & Clank: Size Matters
## 6889                                                 Ratchet & Clank: Size Matters
## 6890                                          Raven Squad: Operation Hidden Dagger
## 6891                                          Raven Squad: Operation Hidden Dagger
## 6892                                                    Rayman 2: The Great Escape
## 6893                                                    Rayman 2: The Great Escape
## 6894                                                       Rayman Raving Rabbids 2
## 6895                                                       Rayman Raving Rabbids 2
## 6896                                               Rayman Raving Rabbids: TV Party
## 6897                                               Rayman Raving Rabbids: TV Party
## 6898                                                       Razor Freestyle Scooter
## 6899                                                       Razor Freestyle Scooter
## 6900                                                                       Re-Volt
## 6901                                                                       Re-Volt
## 6902                                                    Reader Rabbit Kindergarten
## 6903                                                    Reader Rabbit Kindergarten
## 6904                                                         Ready 2 Rumble Boxing
## 6905                                                         Ready 2 Rumble Boxing
## 6906                                                               Real World Golf
## 6907                                                               Real World Golf
## 6908                                                                Rec Room Games
## 6909                                                                Rec Room Games
## 6910                                                         Record of Agarest War
## 6911                                                         Record of Agarest War
## 6912                                                    Record of Agarest War Zero
## 6913                                                    Record of Agarest War Zero
## 6914                                                           Red Dead Redemption
## 6915                                                           Red Dead Redemption
## 6916                                         Red Dead Redemption: Undead Nightmare
## 6917                                         Red Dead Redemption: Undead Nightmare
## 6918                                                             Red Dead Revolver
## 6919                                                             Red Dead Revolver
## 6920                                                       Red Ninja: End of Honor
## 6921                                                       Red Ninja: End of Honor
## 6922                                              Resident Evil - Code: Veronica X
## 6923                                              Resident Evil - Code: Veronica X
## 6924                                                      Resident Evil 3: Nemesis
## 6925                                                      Resident Evil 3: Nemesis
## 6926                                                            Resident Evil 4 HD
## 6927                                                            Resident Evil 4 HD
## 6928                                                  Resident Evil Director's Cut
## 6929                                                  Resident Evil Director's Cut
## 6930                                                             Resonance of Fate
## 6931                                                             Resonance of Fate
## 6932                                                 Rhapsody: A Musical Adventure
## 6933                                                 Rhapsody: A Musical Adventure
## 6934                                                                 Rhythm Heaven
## 6935                                                                 Rhythm Heaven
## 6936                                                                   Ribbit King
## 6937                                                                   Ribbit King
## 6938                                                                  Ride to Hell
## 6939                                                                  Ride to Hell
## 6940                                                                         Risen
## 6941                                                                         Risen
## 6942                                                     Riven: The Sequel to Myst
## 6943                                                     Riven: The Sequel to Myst
## 6944                                                    Riviera: The Promised Land
## 6945                                                    Riviera: The Promised Land
## 6946                                                          Road Rash: Jailbreak
## 6947                                                          Road Rash: Jailbreak
## 6948                                         Robert Ludlum's The Bourne Conspiracy
## 6949                                         Robert Ludlum's The Bourne Conspiracy
## 6950                                             Robin Hood: Defender of the Crown
## 6951                                             Robin Hood: Defender of the Crown
## 6952                                                            Robotech: Invasion
## 6953                                                            Robotech: Invasion
## 6954                                                                   Rock Band 4
## 6955                                                                   Rock Band 4
## 6956                                                 Rock Band Track Pack Volume 1
## 6957                                                 Rock Band Track Pack Volume 1
## 6958                                                                    Rock Blast
## 6959                                                                    Rock Blast
## 6960                                                              Rock of the Dead
## 6961                                                              Rock of the Dead
## 6962 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 6963 Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City
## 6964                                          Rockstar Games presents Table Tennis
## 6965                                          Rockstar Games presents Table Tennis
## 6966                                                                Rocky: Legends
## 6967                                                                Rocky: Legends
## 6968                                                         Rodea the Sky Soldier
## 6969                                                         Rodea the Sky Soldier
## 6970                                                                 Rogue Trooper
## 6971                                                                 Rogue Trooper
## 6972                                                                 Rogue Warrior
## 6973                                                                 Rogue Warrior
## 6974                                                          RollerCoaster Tycoon
## 6975                                                          RollerCoaster Tycoon
## 6976                                              Romance of the Three Kingdoms 13
## 6977                                              Romance of the Three Kingdoms 13
## 6978                                              Romance of the Three Kingdoms II
## 6979                                              Romance of the Three Kingdoms II
## 6980                                Romance of the Three Kingdoms IV: Wall of Fire
## 6981                                Romance of the Three Kingdoms IV: Wall of Fire
## 6982                                             Romance of the Three Kingdoms XII
## 6983                                             Romance of the Three Kingdoms XII
## 6984                                                                Romancing SaGa
## 6985                                                                Romancing SaGa
## 6986                                                      Rooms: The Main Building
## 6987                                                      Rooms: The Main Building
## 6988                                                         Rory McIlroy PGA Tour
## 6989                                                         Rory McIlroy PGA Tour
## 6990                                                                 Rubik's World
## 6991                                                                 Rubik's World
## 6992                                                Rudolph the Red-Nosed Reindeer
## 6993                                                Rudolph the Red-Nosed Reindeer
## 6994                                                                      Rugby 06
## 6995                                                                      Rugby 06
## 6996                                                                    Rugby 2005
## 6997                                                                    Rugby 2005
## 6998                                                             Rugby League Live
## 6999                                                             Rugby League Live
## 7000                                                          Rugby World Cup 2011
## 7001                                                          Rugby World Cup 2011
## 7002                                                   Rugrats in Paris: The Movie
## 7003                                                   Rugrats in Paris: The Movie
## 7004                                                         Rugrats: Royal Ransom
## 7005                                                         Rugrats: Royal Ransom
## 7006                                                      Runaway: A Twist of Fate
## 7007                                                      Runaway: A Twist of Fate
## 7008                                                Rune Factory: Tides of Destiny
## 7009                                                Rune Factory: Tides of Destiny
## 7010                                                                     S.C.A.R.S
## 7011                                                                     S.C.A.R.S
## 7012                                           SBK X: Superbike World Championship
## 7013                                           SBK X: Superbike World Championship
## 7014                                                   SD Gundam G Generation Wars
## 7015                                                   SD Gundam G Generation Wars
## 7016                                                  SD Gundam G Generation World
## 7017                                                  SD Gundam G Generation World
## 7018                                                      SD Gundam: Gashapon Wars
## 7019                                                      SD Gundam: Gashapon Wars
## 7020                                   SNK vs. Capcom: The Match of the Millennium
## 7021                                   SNK vs. Capcom: The Match of the Millennium
## 7022                                                      SWAT: Global Strike Team
## 7023                                                      SWAT: Global Strike Team
## 7024                                                                  SX Superstar
## 7025                                                                  SX Superstar
## 7026                                      Saban's Power Rangers: Lightspeed Rescue
## 7027                                      Saban's Power Rangers: Lightspeed Rescue
## 7028                                                     Safari Adventures: Africa
## 7029                                                     Safari Adventures: Africa
## 7030                                    SafeCracker: The Ultimate Puzzle Adventure
## 7031                                    SafeCracker: The Ultimate Puzzle Adventure
## 7032                                                   Saint Seiya: Soldiers' Soul
## 7033                                                   Saint Seiya: Soldiers' Soul
## 7034                                                                   Sakura Wars
## 7035                                                                   Sakura Wars
## 7036                                                 Sakura Wars: So Long, My Love
## 7037                                                 Sakura Wars: So Long, My Love
## 7038                                                   Sakura-Sou no Pet na Kanojo
## 7039                                                   Sakura-Sou no Pet na Kanojo
## 7040                                                                Salt Lake 2002
## 7041                                                                Salt Lake 2002
## 7042                                               Samurai Jack: The Shadow of Aku
## 7043                                               Samurai Jack: The Shadow of Aku
## 7044                                                               Samurai Shodown
## 7045                                                               Samurai Shodown
## 7046                                                              Samurai Warriors
## 7047                                                              Samurai Warriors
## 7048                                                   Samurai Warriors 2: Empires
## 7049                                                   Samurai Warriors 2: Empires
## 7050                                                 Samurai Warriors Chronicles 3
## 7051                                                 Samurai Warriors Chronicles 3
## 7052                                            San Francisco Rush: Extreme Racing
## 7053                                            San Francisco Rush: Extreme Racing
## 7054                                           Sangoku Koi Senki: Otome no Heihou!
## 7055                                           Sangoku Koi Senki: Otome no Heihou!
## 7056                                                Santa Claus Is Comin' to Town!
## 7057                                                Santa Claus Is Comin' to Town!
## 7058                                                                  Satisfashion
## 7059                                                                  Satisfashion
## 7060                                                         Saw II: Flesh & Blood
## 7061                                                         Saw II: Flesh & Blood
## 7062                                                            Scene It? Twilight
## 7063                                                            Scene It? Twilight
## 7064                                                               Schlag den Raab
## 7065                                                               Schlag den Raab
## 7066                                                                  Science Papa
## 7067                                                                  Science Papa
## 7068                                               Scooby-Doo! Who's Watching Who?
## 7069                                               Scooby-Doo! Who's Watching Who?
## 7070                                 Scribblenauts Unmasked: A DC Comics Adventure
## 7071                                 Scribblenauts Unmasked: A DC Comics Adventure
## 7072                                                      Scribblenauts: Unlimited
## 7073                                                      Scribblenauts: Unlimited
## 7074                                         Sea Monsters: A Prehistoric Adventure
## 7075                                         Sea Monsters: A Prehistoric Adventure
## 7076                                                            Secret Agent Clank
## 7077                                                            Secret Agent Clank
## 7078                                                  Secret Weapons Over Normandy
## 7079                                                  Secret Weapons Over Normandy
## 7080                                                                     Section 8
## 7081                                                                     Section 8
## 7082                                                             Sega Bass Fishing
## 7083                                                             Sega Bass Fishing
## 7084                                                       Sengoku Basara 2 Heroes
## 7085                                                       Sengoku Basara 2 Heroes
## 7086                                                        Sengoku Basara 3 Utage
## 7087                                                        Sengoku Basara 3 Utage
## 7088                                                    Sengoku Basara 4: Sumeragi
## 7089                                                    Sengoku Basara 4: Sumeragi
## 7090                                                Sengoku Basara: Samurai Heroes
## 7091                                                Sengoku Basara: Samurai Heroes
## 7092                                           Sengoku Basara: Sanada Yukimura-Den
## 7093                                           Sengoku Basara: Sanada Yukimura-Den
## 7094                                        Sengoku Hime: Senran ni Mau Otometachi
## 7095                                        Sengoku Hime: Senran ni Mau Otometachi
## 7096                                                 Senran Kagura: Estival Versus
## 7097                                                 Senran Kagura: Estival Versus
## 7098                                                  Serious Sam HD: Gold Edition
## 7099                                                  Serious Sam HD: Gold Edition
## 7100                                                                Serious Sam II
## 7101                                                                Serious Sam II
## 7102                                                   Serious Sam: Next Encounter
## 7103                                                   Serious Sam: Next Encounter
## 7104                                        Sesame Street: Elmo's Letter Adventure
## 7105                                        Sesame Street: Elmo's Letter Adventure
## 7106                                          Sesame Street: Elmo's Number Journey
## 7107                                          Sesame Street: Elmo's Number Journey
## 7108                                            Sesame Street: Ready, Set, Grover!
## 7109                                            Sesame Street: Ready, Set, Grover!
## 7110                                                                    Shadow Man
## 7111                                                                    Shadow Man
## 7112                                                             Shadow of Destiny
## 7113                                                             Shadow of Destiny
## 7114                                                        Shadow of the Colossus
## 7115                                                        Shadow of the Colossus
## 7116                                                         Shadows of the Damned
## 7117                                                         Shadows of the Damned
## 7118                                                Shaun Palmer's Pro Snowboarder
## 7119                                                Shaun Palmer's Pro Snowboarder
## 7120                                                    ShellShock 2: Blood Trails
## 7121                                                    ShellShock 2: Blood Trails
## 7122                                                                    Shenmue II
## 7123                                                                    Shenmue II
## 7124                                                               Shin Hayarigami
## 7125                                                               Shin Hayarigami
## 7126                                 Shin Kamaitachi no Yoru: 11 Hitome no Suspect
## 7127                                 Shin Kamaitachi no Yoru: 11 Hitome no Suspect
## 7128                                          Shin Megami Tensei: Devil Survivor 2
## 7129                                          Shin Megami Tensei: Devil Survivor 2
## 7130                                                                       Shinobi
## 7131                                                                       Shinobi
## 7132                                  Shinseiki Evangelion: Koutetsu no Girlfriend
## 7133                                  Shinseiki Evangelion: Koutetsu no Girlfriend
## 7134                       Shiren the Wanderer 4 - God's Eye and the Demon's Navel
## 7135                       Shiren the Wanderer 4 - God's Eye and the Demon's Navel
## 7136                                      Shonen Jump's One Piece: Grand Adventure
## 7137                                      Shonen Jump's One Piece: Grand Adventure
## 7138                                         Shonen Jump's One Piece: Grand Battle
## 7139                                         Shonen Jump's One Piece: Grand Battle
## 7140                                                Showdown: Legends of Wrestling
## 7141                                                Showdown: Legends of Wrestling
## 7142                                                  Showtime Championship Boxing
## 7143                                                  Showtime Championship Boxing
## 7144                                                   Shrek Smash n' Crash Racing
## 7145                                                   Shrek Smash n' Crash Racing
## 7146                                                       Silent Hill 4: The Room
## 7147                                                       Silent Hill 4: The Room
## 7148                                                     Silent Hill HD Collection
## 7149                                                     Silent Hill HD Collection
## 7150                                                         Silent Hill: Downpour
## 7151                                                         Silent Hill: Downpour
## 7152                                                       Silent Hill: Homecoming
## 7153                                                       Silent Hill: Homecoming
## 7154                                                          Silent Hill: Origins
## 7155                                                          Silent Hill: Origins
## 7156                                                                  Silent Scope
## 7157                                                                  Silent Scope
## 7158                                                                Sim Theme Park
## 7159                                                                Sim Theme Park
## 7160                                                                    SimAnimals
## 7161                                                                    SimAnimals
## 7162                                                             SimAnimals Africa
## 7163                                                             SimAnimals Africa
## 7164                                                                       SimCity
## 7165                                                                       SimCity
## 7166                                                               SimCity Creator
## 7167                                                               SimCity Creator
## 7168                                                                      SingStar
## 7169                                                                      SingStar
## 7170                                                                 SingStar Abba
## 7171                                                                 SingStar Abba
## 7172                                                               SingStar Latino
## 7173                                                               SingStar Latino
## 7174                                                               SingStar Motown
## 7175                                                               SingStar Motown
## 7176                                                                SingStar Queen
## 7177                                                                SingStar Queen
## 7178                                                            SingStar Take That
## 7179                                                            SingStar Take That
## 7180                                                      Singstar: Ultimate Party
## 7181                                                      Singstar: Ultimate Party
## 7182                                                                 Sitting Ducks
## 7183                                                                 Sitting Ducks
## 7184                                                            Six Flags Fun Park
## 7185                                                            Six Flags Fun Park
## 7186                                                                         Skate
## 7187                                                                         Skate
## 7188                                                                       Skate 2
## 7189                                                                       Skate 2
## 7190                                                                       Skate 3
## 7191                                                                       Skate 3
## 7192                                                                      Skate it
## 7193                                                                      Skate it
## 7194                                                                    Sled Storm
## 7195                                                                    Sled Storm
## 7196                                                        Sly 2: Band of Thieves
## 7197                                                        Sly 2: Band of Thieves
## 7198                                                   Sly Cooper: Thieves in Time
## 7199                                                   Sly Cooper: Thieves in Time
## 7200                                                          Smash Court Tennis 3
## 7201                                                          Smash Court Tennis 3
## 7202                                                                Smuggler's Run
## 7203                                                                Smuggler's Run
## 7204                                                          Snood 2: On Vacation
## 7205                                                          Snood 2: On Vacation
## 7206                                     Soccer Tsuku: Pro Soccer Club o Tsukurou!
## 7207                                     Soccer Tsuku: Pro Soccer Club o Tsukurou!
## 7208                                                   Soldier of Fortune: Payback
## 7209                                                   Soldier of Fortune: Payback
## 7210                                                                  Sonic Colors
## 7211                                                                  Sonic Colors
## 7212                                                              Sonic Lost World
## 7213                                                              Sonic Lost World
## 7214                                                    Sonic Mega Collection Plus
## 7215                                                    Sonic Mega Collection Plus
## 7216                                                    Sonic Riders: Zero Gravity
## 7217                                                    Sonic Riders: Zero Gravity
## 7218                                           Sonic's Ultimate Genesis Collection
## 7219                                           Sonic's Ultimate Genesis Collection
## 7220                                                                SoulCalibur IV
## 7221                                                                SoulCalibur IV
## 7222                                                                 SoulCalibur V
## 7223                                                                 SoulCalibur V
## 7224                                                                    South Park
## 7225                                                                    South Park
## 7226                                                              South Park Rally
## 7227                                                              South Park Rally
## 7228                                                  South Park: Chef's Luv Shack
## 7229                                                  South Park: Chef's Luv Shack
## 7230                                                                    Space Camp
## 7231                                                                    Space Camp
## 7232                                                        Space Invaders Extreme
## 7233                                                        Space Invaders Extreme
## 7234                                                 Spelling Challenges and more!
## 7235                                                 Spelling Challenges and more!
## 7236                                                              Spirits & Spells
## 7237                                                              Spirits & Spells
## 7238                                                                    SplashDown
## 7239                                                                    SplashDown
## 7240                                                                 Splatterhouse
## 7241                                                                 Splatterhouse
## 7242                                            SpongeBob SquarePants: SuperSponge
## 7243                                            SpongeBob SquarePants: SuperSponge
## 7244                                     SpongeBob SquarePants: The Yellow Avenger
## 7245                                     SpongeBob SquarePants: The Yellow Avenger
## 7246                                                      SpongeBob's Boating Bash
## 7247                                                      SpongeBob's Boating Bash
## 7248                                             SpongeBob's Surf & Skate Roadtrip
## 7249                                             SpongeBob's Surf & Skate Roadtrip
## 7250                                                                  Spy Hunter 2
## 7251                                                                  Spy Hunter 2
## 7252                                                    Spyro: Enter the Dragonfly
## 7253                                                    Spyro: Enter the Dragonfly
## 7254                                                              Squeeballs Party
## 7255                                                              Squeeballs Party
## 7256                                     Star Ocean 5: Integrity and Faithlessness
## 7257                                     Star Ocean 5: Integrity and Faithlessness
## 7258                                                           Star Trek: Conquest
## 7259                                                           Star Trek: Conquest
## 7260                                                             Star Trek: Legacy
## 7261                                                             Star Trek: Legacy
## 7262                                                 Star Trek: Shattered Universe
## 7263                                                 Star Trek: Shattered Universe
## 7264                                                   Star Trek: Tactical Assault
## 7265                                                   Star Trek: Tactical Assault
## 7266                                         Star Wars Battlefront: Elite Squadron
## 7267                                         Star Wars Battlefront: Elite Squadron
## 7268                                        Star Wars Jedi Knight II: Jedi Outcast
## 7269                                        Star Wars Jedi Knight II: Jedi Outcast
## 7270                                           Star Wars Jedi Knight: Jedi Academy
## 7271                                           Star Wars Jedi Knight: Jedi Academy
## 7272                      Star Wars Knights of the Old Republic II: The Sith Lords
## 7273                      Star Wars Knights of the Old Republic II: The Sith Lords
## 7274                                                      Star Wars: Bounty Hunter
## 7275                                                      Star Wars: Bounty Hunter
## 7276                                                        Star Wars: Dark Forces
## 7277                                                        Star Wars: Dark Forces
## 7278                                                   Star Wars: Jedi Starfighter
## 7279                                                   Star Wars: Jedi Starfighter
## 7280                                        Star Wars: Knights of the Old Republic
## 7281                                        Star Wars: Knights of the Old Republic
## 7282                                                    Star Wars: Lethal Alliance
## 7283                                                    Star Wars: Lethal Alliance
## 7284                                                  Star Wars: Republic Commando
## 7285                                                  Star Wars: Republic Commando
## 7286                                                            State of Emergency
## 7287                                                            State of Emergency
## 7288                                      Steins;Gate: Senkei Kousoku no Phonogram
## 7289                                      Steins;Gate: Senkei Kousoku no Phonogram
## 7290                                                                  Stranglehold
## 7291                                                                  Stranglehold
## 7292                                                        Street Fighter Alpha 3
## 7293                                                        Street Fighter Alpha 3
## 7294                                        Street Fighter Alpha: Warriors' Dreams
## 7295                                        Street Fighter Alpha: Warriors' Dreams
## 7296                                         Street Fighter Anniversary Collection
## 7297                                         Street Fighter Anniversary Collection
## 7298                                                     Street Fighter Collection
## 7299                                                     Street Fighter Collection
## 7300                                                              Street Fighter V
## 7301                                                              Street Fighter V
## 7302                                          Strike Witches: Shirogane no Tsubasa
## 7303                                          Strike Witches: Shirogane no Tsubasa
## 7304                                                                 Strikers 1945
## 7305                                                                 Strikers 1945
## 7306                                                                      Stuntman
## 7307                                                                      Stuntman
## 7308                                                         Sudoku Ball Detective
## 7309                                                         Sudoku Ball Detective
## 7310                                      Summer Athletics: The Ultimate Challenge
## 7311                                      Summer Athletics: The Ultimate Challenge
## 7312                                        Summer Challenge: Athletics Tournament
## 7313                                        Summer Challenge: Athletics Tournament
## 7314                                                                Summon Night 3
## 7315                                                                Summon Night 3
## 7316                                                                Summon Night 4
## 7317                                                                Summon Night 4
## 7318                                                  Summon Night 6: Lost Borders
## 7319                                                  Summon Night 6: Lost Borders
## 7320                                                              Super Bubble Pop
## 7321                                                              Super Bubble Pop
## 7322                                                             Super Bust-A-Move
## 7323                                                             Super Bust-A-Move
## 7324                                                        Super Ghouls 'n Ghosts
## 7325                                                        Super Ghouls 'n Ghosts
## 7326                                                         Super Hero Generation
## 7327                                                         Super Hero Generation
## 7328                                                       Super Heroine Chronicle
## 7329                                                       Super Heroine Chronicle
## 7330                                                                Super Mario 64
## 7331                                                                Super Mario 64
## 7332                                                             Super Mario Bros.
## 7333                                                             Super Mario Bros.
## 7334                                                           Super Mario Bros. 3
## 7335                                                           Super Mario Bros. 3
## 7336                                                             Super Mario World
## 7337                                                             Super Mario World
## 7338                                           Super Mario World 2: Yoshi's Island
## 7339                                           Super Mario World 2: Yoshi's Island
## 7340                                                      Super Monkey Ball Deluxe
## 7341                                                      Super Monkey Ball Deluxe
## 7342                                                                 Super PickUps
## 7343                                                                 Super PickUps
## 7344                                              Super Robot Taisen F Kanketsuhen
## 7345                                              Super Robot Taisen F Kanketsuhen
## 7346               Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice
## 7347               Super Robot Taisen OG Saga: Masou Kishin III - Pride of Justice
## 7348                                        Super Robot Wars OG: The Moon Dwellers
## 7349                                        Super Robot Wars OG: The Moon Dwellers
## 7350                                           Super Smash Bros. for Wii U and 3DS
## 7351                                           Super Smash Bros. for Wii U and 3DS
## 7352                                                       Super Street Fighter II
## 7353                                                       Super Street Fighter II
## 7354                                                              Superman Returns
## 7355                                                              Superman Returns
## 7356                                                 Superman: Shadow of Apokolips
## 7357                                                 Superman: Shadow of Apokolips
## 7358                                                          Superstars V8 Racing
## 7359                                                          Superstars V8 Racing
## 7360                                                             Supreme Commander
## 7361                                                             Supreme Commander
## 7362                                                           Supreme Commander 2
## 7363                                                           Supreme Commander 2
## 7364                                                                Sushi Go-Round
## 7365                                                                Sushi Go-Round
## 7366                                                    Suzumiya Haruhi no Tsuisou
## 7367                                                    Suzumiya Haruhi no Tsuisou
## 7368                                             Sword Art Online: Hollow Fragment
## 7369                                             Sword Art Online: Hollow Fragment
## 7370                                                                    Syberia II
## 7371                                                                    Syberia II
## 7372                                                    Syphon Filter: Dark Mirror
## 7373                                                    Syphon Filter: Dark Mirror
## 7374                                                 Syphon Filter: Logan's Shadow
## 7375                                                 Syphon Filter: Logan's Shadow
## 7376                            System 3 presents Ferrari Challenge Trofeo Pirelli
## 7377                            System 3 presents Ferrari Challenge Trofeo Pirelli
## 7378                                                      Sébastien Loeb Rally Evo
## 7379                                                      Sébastien Loeb Rally Evo
## 7380                                                            TMNT: Mutant Melee
## 7381                                                            TMNT: Mutant Melee
## 7382                                                    TNA iMPACT: Cross the Line
## 7383                                                    TNA iMPACT: Cross the Line
## 7384                                           Tactics Ogre: Let Us Cling Together
## 7385                                           Tactics Ogre: Let Us Cling Together
## 7386                                                                 Taito Legends
## 7387                                                                 Taito Legends
## 7388                                                Tak and the Guardians of Gross
## 7389                                                Tak and the Guardians of Gross
## 7390                                                             Tales of Berseria
## 7391                                                             Tales of Berseria
## 7392                                                              Tales of Destiny
## 7393                                                              Tales of Destiny
## 7394                                                            Tales of Destiny 2
## 7395                                                            Tales of Destiny 2
## 7396                                                               Tales of Hearts
## 7397                                                               Tales of Hearts
## 7398                                                              Tales of Rebirth
## 7399                                                              Tales of Rebirth
## 7400                                                            Tales of Symphonia
## 7401                                                            Tales of Symphonia
## 7402                                                             Tales of Vesperia
## 7403                                                             Tales of Vesperia
## 7404                                                             Tales of Zestiria
## 7405                                                             Tales of Zestiria
## 7406                                                            Tales of the Abyss
## 7407                                                            Tales of the Abyss
## 7408                                        Teenage Mutant Ninja Turtles: Smash-Up
## 7409                                        Teenage Mutant Ninja Turtles: Smash-Up
## 7410                             Teenage Mutant Ninja Turtles: Tournament Fighters
## 7411                             Teenage Mutant Ninja Turtles: Tournament Fighters
## 7412                                                               Ten Pin Alley 2
## 7413                                                               Ten Pin Alley 2
## 7414                                                      Tenchu: Shadow Assassins
## 7415                                                      Tenchu: Shadow Assassins
## 7416                                                                        Tennis
## 7417                                                                        Tennis
## 7418                                                          Terminator Salvation
## 7419                                                          Terminator Salvation
## 7420                                                                    Test Drive
## 7421                                                                    Test Drive
## 7422                                                Test Drive: Eve of Destruction
## 7423                                                Test Drive: Eve of Destruction
## 7424                                                   Test Drive: Ferrari Legends
## 7425                                                   Test Drive: Ferrari Legends
## 7426                                                                        Tetris
## 7427                                                                        Tetris
## 7428                                                                 Tetris Attack
## 7429                                                                 Tetris Attack
## 7430                                                           Tetris Party Deluxe
## 7431                                                           Tetris Party Deluxe
## 7432                                                   The Bachelor: The Videogame
## 7433                                                   The Bachelor: The Videogame
## 7434                                                               The Bard's Tale
## 7435                                                               The Bard's Tale
## 7436                                                             The Biggest Loser
## 7437                                                             The Biggest Loser
## 7438                                                The Black Eyed Peas Experience
## 7439                                                The Black Eyed Peas Experience
## 7440                                                 The Book of Unwritten Tales 2
## 7441                                                 The Book of Unwritten Tales 2
## 7442                                                                      The Club
## 7443                                                                      The Club
## 7444                                                             The Da Vinci Code
## 7445                                                             The Da Vinci Code
## 7446                                                     The Daring Game for Girls
## 7447                                                     The Daring Game for Girls
## 7448                                                                  The Darkness
## 7449                                                                  The Darkness
## 7450                                                                The Dog Island
## 7451                                                                The Dog Island
## 7452                               The Dukes of Hazzard: Return of the General Lee
## 7453                               The Dukes of Hazzard: Return of the General Lee
## 7454                                      The Fairly Odd Parents: Breakin Da Rules
## 7455                                      The Fairly Odd Parents: Breakin Da Rules
## 7456                                                      The Fast and the Furious
## 7457                                                      The Fast and the Furious
## 7458                                                             The First Templar
## 7459                                                             The First Templar
## 7460                                                      The Godfather (JP sales)
## 7461                                                      The Godfather (JP sales)
## 7462                                                              The Godfather II
## 7463                                                              The Godfather II
## 7464                                                                 The Golf Club
## 7465                                                                 The Golf Club
## 7466                                                              The Great Escape
## 7467                                                              The Great Escape
## 7468                                          The Grim Adventures of Billy & Mandy
## 7469                                          The Grim Adventures of Billy & Mandy
## 7470                                                                  The Guy Game
## 7471                                                                  The Guy Game
## 7472                                 The History Channel: Great Battles - Medieval
## 7473                                 The History Channel: Great Battles - Medieval
## 7474                                                      The King of Fighters '97
## 7475                                                      The King of Fighters '97
## 7476                                                    The King of Fighters 02/03
## 7477                                                    The King of Fighters 02/03
## 7478                                                      The King of Fighters XII
## 7479                                                      The King of Fighters XII
## 7480                                                     The King of Fighters XIII
## 7481                                                     The King of Fighters XIII
## 7482                                                            The Last Airbender
## 7483                                                            The Last Airbender
## 7484                                                              The Last Remnant
## 7485                                                              The Last Remnant
## 7486                                                                The Last of Us
## 7487                                                                The Last of Us
## 7488                                   The Legend of Heroes VII: The Trail of Blue
## 7489                                   The Legend of Heroes VII: The Trail of Blue
## 7490                                   The Legend of Heroes VII: The Trail of Zero
## 7491                                   The Legend of Heroes VII: The Trail of Zero
## 7492                        The Legend of Heroes: Trails in the Sky Second Chapter
## 7493                        The Legend of Heroes: Trails in the Sky Second Chapter
## 7494                                    The Legend of Heroes: Trails of Cold Steel
## 7495                                    The Legend of Heroes: Trails of Cold Steel
## 7496                                 The Legend of Heroes: Trails of Cold Steel II
## 7497                                 The Legend of Heroes: Trails of Cold Steel II
## 7498                                          The Legend of Spyro: A New Beginning
## 7499                                          The Legend of Spyro: A New Beginning
## 7500                                       The Legend of Zelda: A Link to the Past
## 7501                                       The Legend of Zelda: A Link to the Past
## 7502                                          The Legend of Zelda: Ocarina of Time
## 7503                                          The Legend of Zelda: Ocarina of Time
## 7504                                           The Legend of Zelda: The Wind Waker
## 7505                                           The Legend of Zelda: The Wind Waker
## 7506                                        The Legend of Zelda: Twilight Princess
## 7507                                        The Legend of Zelda: Twilight Princess
## 7508                         The Lord of the Rings: The Battle for Middle-Earth II
## 7509                         The Lord of the Rings: The Battle for Middle-Earth II
## 7510                             The Lord of the Rings: The Fellowship of the Ring
## 7511                             The Lord of the Rings: The Fellowship of the Ring
## 7512                                                       The Matrix: Path of Neo
## 7513                                                       The Matrix: Path of Neo
## 7514                                                              The Oregon Trail
## 7515                                                              The Oregon Trail
## 7516                                      The Powerpuff Girls: Chemical X-Traction
## 7517                                      The Powerpuff Girls: Chemical X-Traction
## 7518                                           The Powerpuff Girls: Relish Rampage
## 7519                                           The Powerpuff Girls: Relish Rampage
## 7520                                                            The Price is Right
## 7521                                                            The Price is Right
## 7522                                               The Price is Right 2010 Edition
## 7523                                               The Price is Right 2010 Edition
## 7524                                                   The Price is Right: Decades
## 7525                                                   The Price is Right: Decades
## 7526                                                     The Princess and the Frog
## 7527                                                     The Princess and the Frog
## 7528                                                                  The Punisher
## 7529                                                                  The Punisher
## 7530                                       The Scorpion King: Rise of the Akkadian
## 7531                                       The Scorpion King: Rise of the Akkadian
## 7532                                                                 The Suffering
## 7533                                                                 The Suffering
## 7534                                                 The Suffering: Ties That Bind
## 7535                                                 The Suffering: Ties That Bind
## 7536                                                          The Sum of All Fears
## 7537                                                          The Sum of All Fears
## 7538                                                  The Terminator: Dawn of Fate
## 7539                                                  The Terminator: Dawn of Fate
## 7540                                                                     The Thing
## 7541                                                                     The Thing
## 7542                                              The Witch and the Hundred Knight
## 7543                                              The Witch and the Hundred Knight
## 7544                                             The Witcher 2: Assassins of Kings
## 7545                                             The Witcher 2: Assassins of Kings
## 7546                                                                Theme Hospital
## 7547                                                                Theme Hospital
## 7548                                           Thomas & Friends: Hero of the Rails
## 7549                                           Thomas & Friends: Hero of the Rails
## 7550                                                                   Thrillville
## 7551                                                                   Thrillville
## 7552                                                          Tiger Woods PGA Tour
## 7553                                                          Tiger Woods PGA Tour
## 7554                                                       Tiger Woods PGA Tour 13
## 7555                                                       Tiger Woods PGA Tour 13
## 7556                                                       Tiger Woods PGA Tour 14
## 7557                                                       Tiger Woods PGA Tour 14
## 7558                                                           Tigger's Honey Hunt
## 7559                                                           Tigger's Honey Hunt
## 7560                  Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 7561                  Tim Burton's The Nightmare Before Christmas: Oogie's Revenge
## 7562                                                               Titanic Mystery
## 7563                                                               Titanic Mystery
## 7564                                                 To Heart 2: Dungeon Travelers
## 7565                                                 To Heart 2: Dungeon Travelers
## 7566                                           Tokimeki Memorial: Forever with You
## 7567                                           Tokimeki Memorial: Forever with You
## 7568                                          Tokimeki Memorial: Taisen Pazurudama
## 7569                                          Tokimeki Memorial: Taisen Pazurudama
## 7570                                                  Tokyo Twilight Ghost Hunters
## 7571                                                  Tokyo Twilight Ghost Hunters
## 7572                                  Tom Clancy's Ghost Recon Advanced Warfighter
## 7573                                  Tom Clancy's Ghost Recon Advanced Warfighter
## 7574                                                      Tom Clancy's Rainbow Six
## 7575                                                      Tom Clancy's Rainbow Six
## 7576                                         Tom Clancy's Rainbow Six: Rogue Spear
## 7577                                         Tom Clancy's Rainbow Six: Rogue Spear
## 7578                                        Tom Clancy's Splinter Cell: Conviction
## 7579                                        Tom Clancy's Splinter Cell: Conviction
## 7580                                                                Tomb Raider II
## 7581                                                                Tomb Raider II
## 7582                                     Tomb Raider III: Adventures of Lara Croft
## 7583                                     Tomb Raider III: Adventures of Lara Croft
## 7584                                              Tomb Raider: The Last Revelation
## 7585                                              Tomb Raider: The Last Revelation
## 7586                                Tomoyo After: It's a Wonderful Life CS Edition
## 7587                                Tomoyo After: It's a Wonderful Life CS Edition
## 7588                                                  Tony Hawk's American Sk8land
## 7589                                                  Tony Hawk's American Sk8land
## 7590                                                      Tony Hawk's Downhill Jam
## 7591                                                      Tony Hawk's Downhill Jam
## 7592                                                                Top Gear Rally
## 7593                                                                Top Gear Rally
## 7594                                                                       Top Gun
## 7595                                                                       Top Gun
## 7596                                                            Top Gun: Hard Lock
## 7597                                                            Top Gun: Hard Lock
## 7598                                                                      Top Spin
## 7599                                                                      Top Spin
## 7600                                                                    Top Spin 2
## 7601                                                                    Top Spin 2
## 7602                                                                   Torino 2006
## 7603                                                                   Torino 2006
## 7604                                                        Total Immersion Racing
## 7605                                                        Total Immersion Racing
## 7606                                 Total Overdose: A Gunslinger's Tale in Mexico
## 7607                                 Total Overdose: A Gunslinger's Tale in Mexico
## 7608                                                   Toukiden: The Age of Demons
## 7609                                                   Toukiden: The Age of Demons
## 7610                                                           Tour de France 2014
## 7611                                                           Tour de France 2014
## 7612                                                       Toy Soldiers: War Chest
## 7613                                                       Toy Soldiers: War Chest
## 7614                                    Toy Story 2: Buzz Lightyear to the Rescue!
## 7615                                    Toy Story 2: Buzz Lightyear to the Rescue!
## 7616                                                               Transworld Surf
## 7617                                                               Transworld Surf
## 7618                                                                       Trine 2
## 7619                                                                       Trine 2
## 7620                                                              Triple Play 2000
## 7621                                                              Triple Play 2000
## 7622                                                              Triple Play 2002
## 7623                                                              Triple Play 2002
## 7624                                                      Trivial Pursuit unhinged
## 7625                                                      Trivial Pursuit unhinged
## 7626                                                          Tron 2.0: Killer App
## 7627                                                          Tron 2.0: Killer App
## 7628                                                                     Tropico 3
## 7629                                                                     Tropico 3
## 7630                                                                     Tropico 4
## 7631                                                                     Tropico 4
## 7632                                                Turning Point: Fall of Liberty
## 7633                                                Turning Point: Fall of Liberty
## 7634                                               UEFA Champions League 2006-2007
## 7635                                               UEFA Champions League 2006-2007
## 7636                                                      UEFA Euro 2004: Portugal
## 7637                                                      UEFA Euro 2004: Portugal
## 7638                                                                UEFA Euro 2016
## 7639                                                                UEFA Euro 2016
## 7640                                                           UFC 2009 Undisputed
## 7641                                                           UFC 2009 Undisputed
## 7642                                                              UFC Undisputed 3
## 7643                                                              UFC Undisputed 3
## 7644                                                                 Ultimate Band
## 7645                                                                 Ultimate Band
## 7646                                     Ultimate Fighting Championship: Throwdown
## 7647                                     Ultimate Fighting Championship: Throwdown
## 7648                                                           UnchainBlades EXXiV
## 7649                                                           UnchainBlades EXXiV
## 7650                                                              Unchained Blades
## 7651                                                              Unchained Blades
## 7652                                                    Urban Chaos: Riot Response
## 7653                                                    Urban Chaos: Riot Response
## 7654                                                           Valkyria Chronicles
## 7655                                                           Valkyria Chronicles
## 7656          Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 7657          Vancouver 2010 - The Official Video Game of the Olympic Winter Games
## 7658                                                                      Vanquish
## 7659                                                                      Vanquish
## 7660                                                         Vietcong: Purple Haze
## 7661                                                         Vietcong: Purple Haze
## 7662                                                                 Viewtiful Joe
## 7663                                                                 Viewtiful Joe
## 7664                                                               Viewtiful Joe 2
## 7665                                                               Viewtiful Joe 2
## 7666                                                 Viewtiful Joe: Red Hot Rumble
## 7667                                                 Viewtiful Joe: Red Hot Rumble
## 7668                                                                   Vigilante 8
## 7669                                                                   Vigilante 8
## 7670                                                      Vigilante 8: 2nd Offense
## 7671                                                      Vigilante 8: 2nd Offense
## 7672                                                     Viking: Battle for Asgard
## 7673                                                     Viking: Battle for Asgard
## 7674                                                          Vin Diesel: Wheelman
## 7675                                                          Vin Diesel: Wheelman
## 7676                                                                  Virtua Quest
## 7677                                                                  Virtua Quest
## 7678                                                                   Viva Pinata
## 7679                                                                   Viva Pinata
## 7680                                                         WCW Backstage Assault
## 7681                                                         WCW Backstage Assault
## 7682                                                                    WCW Mayhem
## 7683                                                                    WCW Mayhem
## 7684                                                                     WCW Nitro
## 7685                                                                     WCW Nitro
## 7686                                       WSC REAL 09: World Snooker Championship
## 7687                                       WSC REAL 09: World Snooker Championship
## 7688                                       WSC Real 11: World Snooker Championship
## 7689                                       WSC Real 11: World Snooker Championship
## 7690                                                                      WWE 2K14
## 7691                                                                      WWE 2K14
## 7692                                                                WWE Crush Hour
## 7693                                                                WWE Crush Hour
## 7694                                                   WWE SmackDown! vs. RAW 2006
## 7695                                                   WWE SmackDown! vs. RAW 2006
## 7696                                                                  WWF Attitude
## 7697                                                                  WWF Attitude
## 7698                                                                  WWF War Zone
## 7699                                                                  WWF War Zone
## 7700                                                     Wacky Races: Crash & Dash
## 7701                                                     Wacky Races: Crash & Dash
## 7702                                    Wallace & Gromit: Curse of the Were-Rabbit
## 7703                                    Wallace & Gromit: Curse of the Were-Rabbit
## 7704                                Walt Disney's The Jungle Book: Rhythm N'Groove
## 7705                                Walt Disney's The Jungle Book: Rhythm N'Groove
## 7706                                                       Wanted: Weapons of Fate
## 7707                                                       Wanted: Weapons of Fate
## 7708                                                                      War Gods
## 7709                                                                      War Gods
## 7710                                               Warhammer 40,000: Squad Command
## 7711                                               Warhammer 40,000: Squad Command
## 7712                                                                       Warhawk
## 7713                                                                       Warhawk
## 7714                                                   Warriors of Might and Magic
## 7715                                                   Warriors of Might and Magic
## 7716                                                     Warriors: Legends of Troy
## 7717                                                     Warriors: Legends of Troy
## 7718                                                          Way of the Samurai 3
## 7719                                                          Way of the Samurai 3
## 7720                                                 Wayne Gretzky's 3D Hockey '98
## 7721                                                 Wayne Gretzky's 3D Hockey '98
## 7722                                                                           Wet
## 7723                                                                           Wet
## 7724                                                                   Whac-A-Mole
## 7725                                                                   Whac-A-Mole
## 7726                                          Where's Waldo? The Fantastic Journey
## 7727                                          Where's Waldo? The Fantastic Journey
## 7728                                                                      Whiplash
## 7729                                                                      Whiplash
## 7730                                                                    Whirl Tour
## 7731                                                                    Whirl Tour
## 7732                                          White Album 2: Shiawase no Mukougawa
## 7733                                          White Album 2: Shiawase no Mukougawa
## 7734                                                                      Whiteout
## 7735                                                                      Whiteout
## 7736                                    Who Wants to Be a Millionaire: 3rd Edition
## 7737                                    Who Wants to Be a Millionaire: 3rd Edition
## 7738                                    Who Wants to be a Millionaire: 1st Edition
## 7739                                    Who Wants to be a Millionaire: 1st Edition
## 7740                                    Who Wants to be a Millionaire: 2nd Edition
## 7741                                    Who Wants to be a Millionaire: 2nd Edition
## 7742                                                 Who wants to be a millionaire
## 7743                                                 Who wants to be a millionaire
## 7744                                                   Wii de Asobu: Metroid Prime
## 7745                                                   Wii de Asobu: Metroid Prime
## 7746                                                    WinBack: Covert Operations
## 7747                                                    WinBack: Covert Operations
## 7748                                                           Winning Post 7 2010
## 7749                                                           Winning Post 7 2010
## 7750                                                           Winning Post 7 2012
## 7751                                                           Winning Post 7 2012
## 7752                                                           Winning Post 7 2013
## 7753                                                           Winning Post 7 2013
## 7754                                                   Winning Post 7 Maximum 2008
## 7755                                                   Winning Post 7 Maximum 2008
## 7756                                                  Winning Post 7: Maximum 2007
## 7757                                                  Winning Post 7: Maximum 2007
## 7758                                                                Winning Post 8
## 7759                                                                Winning Post 8
## 7760                                                           Winning Post 8 2015
## 7761                                                           Winning Post 8 2015
## 7762                                                            Winning Post World
## 7763                                                            Winning Post World
## 7764                                                       Winx Club: Saving Alfea
## 7765                                                       Winx Club: Saving Alfea
## 7766                                                                 WipEout Pulse
## 7767                                                                 WipEout Pulse
## 7768                                                             Wipeout: The Game
## 7769                                                             Wipeout: The Game
## 7770                                                               Without Warning
## 7771                                                               Without Warning
## 7772                                                   Wonder World Amusement Park
## 7773                                                   Wonder World Amusement Park
## 7774                   World Championship Poker: Featuring Howard Lederer - All In
## 7775                   World Championship Poker: Featuring Howard Lederer - All In
## 7776                                                  World Championship Pool 2004
## 7777                                                  World Championship Pool 2004
## 7778                                       World Destruction League: Thunder Tanks
## 7779                                       World Destruction League: Thunder Tanks
## 7780                                                         World Series Baseball
## 7781                                                         World Series Baseball
## 7782                                                     World Series Baseball 2K3
## 7783                                                     World Series Baseball 2K3
## 7784                                               World Snooker Championship 2007
## 7785                                               World Snooker Championship 2007
## 7786                                   World Soccer Winning Eleven 8 International
## 7787                                   World Soccer Winning Eleven 8 International
## 7788                                                 World Soccer Winning Eleven 9
## 7789                                                 World Soccer Winning Eleven 9
## 7790                                                                World of Tanks
## 7791                                                                World of Tanks
## 7792                                                                         Worms
## 7793                                                                         Worms
## 7794                                                              Worms Armageddon
## 7795                                                              Worms Armageddon
## 7796                                                      Worms Forts: Under Siege
## 7797                                                      Worms Forts: Under Siege
## 7798                                                             Worms World Party
## 7799                                                             Worms World Party
## 7800                                                           Worms: Open Warfare
## 7801                                                           Worms: Open Warfare
## 7802                                                         Worms: Open Warfare 2
## 7803                                                         Worms: Open Warfare 2
## 7804                                                               Wrath Unleashed
## 7805                                                               Wrath Unleashed
## 7806                                                                      X-Blades
## 7807                                                                      X-Blades
## 7808                                                      X-Men vs. Street Fighter
## 7809                                                      X-Men vs. Street Fighter
## 7810                                                   X-Men: Children of the Atom
## 7811                                                   X-Men: Children of the Atom
## 7812                                                           XBLAZE Code: Embryo
## 7813                                                           XBLAZE Code: Embryo
## 7814                                                       XGIII: Extreme G Racing
## 7815                                                       XGIII: Extreme G Racing
## 7816                                                         Xblaze: Lost Memories
## 7817                                                         Xblaze: Lost Memories
## 7818                                                          Xenoblade Chronicles
## 7819                                                          Xenoblade Chronicles
## 7820                                                              Xiaolin Showdown
## 7821                                                              Xiaolin Showdown
## 7822                                                         Yaiba: Ninja Gaiden Z
## 7823                                                         Yaiba: Ninja Gaiden Z
## 7824                                                                        Yakuza
## 7825                                                                        Yakuza
## 7826                                                                 Yakuza Kiwami
## 7827                                                                 Yakuza Kiwami
## 7828                                                Yakuza Zero: The Place of Oath
## 7829                                                Yakuza Zero: The Place of Oath
## 7830                                                                 Yakuza: Ishin
## 7831                                                                 Yakuza: Ishin
## 7832                                                             Yamaha Supercross
## 7833                                                             Yamaha Supercross
## 7834                                         Yggdra Union: We'll Never Fight Alone
## 7835                                         Yggdra Union: We'll Never Fight Alone
## 7836                                                     Yogi Bear: The Video Game
## 7837                                                     Yogi Bear: The Video Game
## 7838                                                                      Yoostar2
## 7839                                                                      Yoostar2
## 7840                                                                         Yoshi
## 7841                                                                         Yoshi
## 7842                                                                Yoshi's Cookie
## 7843                                                                Yoshi's Cookie
## 7844                                                              Yourself Fitness
## 7845                                                              Yourself Fitness
## 7846                                                      Ys: The Ark of Napishtim
## 7847                                                      Ys: The Ark of Napishtim
## 7848                                                    Zatch Bell! Mamodo Battles
## 7849                                                    Zatch Bell! Mamodo Battles
## 7850                                                                       Zathura
## 7851                                                                       Zathura
## 7852                                                Zero Escape: Zero Time Dilemma
## 7853                                                Zero Escape: Zero Time Dilemma
## 7854                                                                        ZombiU
## 7855                                                                        ZombiU
## 7856                                                           Zombie Army Trilogy
## 7857                                                           Zombie Army Trilogy
## 7858                                              Zone of the Enders HD Collection
## 7859                                              Zone of the Enders HD Collection
## 7860                                                                  Zoo Hospital
## 7861                                                                  Zoo Hospital
## 7862                                                             Zoo Tycoon (2013)
## 7863                                                             Zoo Tycoon (2013)
## 7864                                                                       ZooCube
## 7865                                                                       ZooCube
## 7866                                                            Zumba Fitness Core
## 7867                                                            Zumba Fitness Core
## 7868                                                    Zumba Fitness: World Party
## 7869                                                    Zumba Fitness: World Party
## 7870                                                                   [Prototype]
## 7871                                                                   [Prototype]
## 7872                                                                        iCarly
## 7873                                                                        iCarly
## 7874                                                    iCarly 2: iJoin The Click!
## 7875                                                    iCarly 2: iJoin The Click!
## 7876                                                                        nail'd
## 7877                                                                        nail'd
## 7878                                                  uDraw Studio: Instant Artist
## 7879                                                  uDraw Studio: Instant Artist
##      dupe_count Position Console Year        Genre
## 1            12      253     PS2 2005       Racing
## 2            12      499     PS3 2012       Racing
## 3            12     1175    X360 2012       Racing
## 4            12     1532    X360 2005       Racing
## 5            12     1744     PSV 2012       Racing
## 6            12     2007      XB 2005       Racing
## 7            12     3587      GC 2005       Racing
## 8            12     5902      PC 2005       Racing
## 9            12     6151    WiiU 2013       Racing
## 10           12     6280      DS 2005       Racing
## 11           12     6494     GBA 2005       Racing
## 12           12    11678      PC 2012       Racing
## 13            9      113     PS3 2013       Sports
## 14            9      257    X360 2013       Sports
## 15            9      494     PS4 2013       Sports
## 16            9     1700    XOne 2013       Sports
## 17            9     3990     PSV 2013       Sports
## 18            9     4505      PC 2013       Sports
## 19            9     4540     Wii 2013       Sports
## 20            9     6663     3DS 2013       Sports
## 21            9     7036     PSP 2013       Sports
## 22            9      692    X360 2013       Action
## 23            9      848     PS3 2013       Action
## 24            9     1195     PS4 2013       Action
## 25            9     2009    XOne 2013       Action
## 26            9     2346     3DS 2013       Action
## 27            9     2776    WiiU 2013       Action
## 28            9     3082     PSV 2013       Action
## 29            9     4058      DS 2013       Action
## 30            9     8097      PC 2013       Action
## 31            9      241     PS2 2006       Sports
## 32            9      966    X360 2006       Sports
## 33            9     2039      XB 2006       Sports
## 34            9     3248      GC 2006       Sports
## 35            9     3864     PS3 2006       Sports
## 36            9     3977     Wii 2006       Sports
## 37            9     7279      DS 2006       Sports
## 38            9    14817     GBA 2006       Sports
## 39            9     2486     PSP 2007       Sports
## 40            9     1580      DS 2007       Action
## 41            9     2447     PS2 2007       Action
## 42            9     3031     PSP 2007       Action
## 43            9     3853     PS3 2007       Action
## 44            9     3859     Wii 2007       Action
## 45            9     6385    X360 2007       Action
## 46            9     7705     GBA 2007       Action
## 47            9     9027      GC 2007       Action
## 48            9    14398      PC 2007       Action
## 49            8     5303     Wii 2013     Strategy
## 50            8     5418     3DS 2013     Strategy
## 51            8     5541     PS3 2013     Strategy
## 52            8     6017    X360 2013     Strategy
## 53            8     7593     PS4 2013     Strategy
## 54            8     8673    XOne 2013     Strategy
## 55            8     9726     PSV 2013     Strategy
## 56            8    10328    WiiU 2013     Strategy
## 57            8     1643     PSP 2006       Racing
## 58            8     1653     PS2 2006       Racing
## 59            8     1807     GBA 2006       Racing
## 60            8     2106      DS 2006       Racing
## 61            8     2203     Wii 2006       Racing
## 62            8     2241      GC 2006       Racing
## 63            8     6651    X360 2006       Racing
## 64            8     7584      XB 2006       Racing
## 65            8      125     PS4 2014       Sports
## 66            8      220     PS3 2014       Sports
## 67            8      450    X360 2014       Sports
## 68            8      762    XOne 2014       Sports
## 69            8     2477     PSV 2014       Sports
## 70            8     2718     Wii 2014       Sports
## 71            8     4370     3DS 2014       Sports
## 72            8     5913      PC 2014       Sports
## 73            8       83     PS3 2012       Action
## 74            8      186    X360 2012       Action
## 75            8     2830     Wii 2012       Action
## 76            8     4120    WiiU 2012       Action
## 77            8     4180     PSV 2012       Action
## 78            8     4775      PC 2012       Action
## 79            8     5131     PSP 2012       Action
## 80            8     6022     3DS 2012       Action
## 81            8     1435     Wii 2011       Action
## 82            8     2088    X360 2011       Action
## 83            8     2147     PS3 2011       Action
## 84            8     2840      DS 2011       Action
## 85            8     4793     3DS 2011       Action
## 86            8     6321     PSP 2011       Action
## 87            8     6930     PSV 2012       Action
## 88            8     7215      PC 2011       Action
## 89            8     2173    X360 2015       Action
## 90            8     2231     PS3 2015       Action
## 91            8     2331     PS4 2015       Action
## 92            8     3233    XOne 2015       Action
## 93            8     3351     3DS 2015       Action
## 94            8     3780    WiiU 2015       Action
## 95            8     4719     PSV 2015       Action
## 96            8    13912      PC 2015       Action
## 97            8      557     PS2 2006       Action
## 98            8     1368     PSP 2006       Action
## 99            8     1882      DS 2006       Action
## 100           8     2146      GC 2006       Action
## 101           8     3157    X360 2006       Action
## 102           8     4445      XB 2006       Action
## 103           8    11201     GBA 2006       Action
## 104           8    15748      PC 2006       Action
## 105           8     3353     PS4 2014       Action
## 106           8     3689     PS3 2014       Action
## 107           8     3972    X360 2014       Action
## 108           8     6364    XOne 2014       Action
## 109           8     6892     3DS 2014       Action
## 110           8     7027    WiiU 2014       Action
## 111           8     7454     PSV 2014       Action
## 112           8    13105      PC 2014       Action
## 113           8     2194    X360 2014       Action
## 114           8     2265     PS4 2014       Action
## 115           8     2551     PS3 2014       Action
## 116           8     4029     PSV 2014       Action
## 117           8     4175    WiiU 2014       Action
## 118           8     4316     3DS 2014       Action
## 119           8     4551    XOne 2014       Action
## 120           8    12334      PC 2014       Action
## 121           8      601     PS2 2007       Sports
## 122           8      666    X360 2007       Sports
## 123           8     2130     PS3 2007       Sports
## 124           8     2329     Wii 2007       Sports
## 125           8     2871     PSP 2007       Sports
## 126           8     6047      XB 2007       Sports
## 127           8     6398      DS 2007       Sports
## 128           8    11655      GC 2007       Sports
## 129           8      655      PC 1994         Misc
## 130           8      898     Wii 2008         Misc
## 131           8     1252      PS 1997         Misc
## 132           8     3377    X360 2008         Misc
## 133           8     4548     PS2 2008         Misc
## 134           8     5255     PS3 2008         Misc
## 135           8     6185      DS 2010         Misc
## 136           8     7414     N64 1999         Misc
## 137           8     2843    X360 2013       Action
## 138           8     4053     PS3 2013       Action
## 139           8     8846      PC 2011       Action
## 140           8    10260     PSV 2013       Action
## 141           8    11620     3DS 2016       Action
## 142           8    12442     PS4 2014       Action
## 143           8    13772    XOne 2014       Action
## 144           8    14850    WiiU 2016       Action
## 145           8     1490    X360 2014       Action
## 146           8     2053     PS3 2014       Action
## 147           8     2944     3DS 2014       Action
## 148           8     3030     PS4 2014       Action
## 149           8     3056    WiiU 2014       Action
## 150           8     3884    XOne 2014       Action
## 151           8     4734     PSV 2014       Action
## 152           8    12266      PC 2014       Action
## 153           7      122     PS3 2011       Sports
## 154           7      276    X360 2011       Sports
## 155           7     2621     Wii 2011       Sports
## 156           7     3789     PSP 2011       Sports
## 157           7     4203      PC 2011       Sports
## 158           7     4906     3DS 2011       Sports
## 159           7    11226     PS2 2011       Sports
## 160           7      441     PS2 2007       Sports
## 161           7     1003     PS3 2007       Sports
## 162           7     1442     PSP 2007       Sports
## 163           7     1455    X360 2007       Sports
## 164           7     2028     Wii 2007       Sports
## 165           7     2431      DS 2007       Sports
## 166           7    15840      PC 2007       Sports
## 167           7      348     PS3 2009       Sports
## 168           7      584    X360 2009       Sports
## 169           7     1052     PS2 2009       Sports
## 170           7     1761     PSP 2009       Sports
## 171           7     2102     Wii 2009       Sports
## 172           7     3436      DS 2009       Sports
## 173           7    13276      PC 2009       Sports
## 174           7      200     PS3 2010       Sports
## 175           7      367    X360 2010       Sports
## 176           7     1656     PSP 2010       Sports
## 177           7     1905     Wii 2010       Sports
## 178           7     2711     PS2 2010       Sports
## 179           7     2856      DS 2010       Sports
## 180           7     8096      PC 2010       Sports
## 181           7     2659     Wii 2009       Action
## 182           7     3136     PS2 2009       Action
## 183           7     3204      DS 2009       Action
## 184           7     3928     PSP 2009       Action
## 185           7     5398     PS3 2009       Action
## 186           7     5654    X360 2009       Action
## 187           7    14416      PC 2009       Action
## 188           7     2442      DS 2007       Action
## 189           7     4080     Wii 2007       Action
## 190           7     5133     PSP 2007       Action
## 191           7     5892    X360 2007       Action
## 192           7     6353     PS2 2007       Action
## 193           7     6744     PS3 2007       Action
## 194           7    13876      PC 2007       Action
## 195           7      331      PS 2001       Action
## 196           7     1030      GB 2001       Action
## 197           7     1068     GBA 2001       Action
## 198           7     6154     PS2 2003       Action
## 199           7    11491      GC 2003       Action
## 200           7    11976      XB 2003       Action
## 201           7    12686      PC 2001       Action
## 202           7     1077    X360 2012       Action
## 203           7     1312     Wii 2012       Action
## 204           7     1634     PS3 2012       Action
## 205           7     2679      DS 2012       Action
## 206           7     2771     3DS 2012       Action
## 207           7     5158     PSV 2012       Action
## 208           7     9593    WiiU 2013       Action
## 209           7      395    X360 2008       Action
## 210           7      432     Wii 2008       Action
## 211           7      437      DS 2008       Action
## 212           7     1486     PS3 2008       Action
## 213           7     1500     PSP 2008       Action
## 214           7     1555     PS2 2008       Action
## 215           7    12574      PC 2008       Action
## 216           7      325    X360 2008       Action
## 217           7      653     Wii 2008       Action
## 218           7      725      DS 2008       Action
## 219           7     1414     PS2 2008       Action
## 220           7     1709     PSP 2008       Action
## 221           7     1954     PS3 2008       Action
## 222           7    13597      PC 2008       Action
## 223           7     3151     PS4 2016       Action
## 224           7     5385    X360 2016       Action
## 225           7     5597    XOne 2016       Action
## 226           7     5698     PS3 2016       Action
## 227           7     6957    WiiU 2016       Action
## 228           7     6974     PSV 2016       Action
## 229           7     8065     3DS 2016       Action
## 230           7     1116     Wii 2011       Action
## 231           7     1937    X360 2011       Action
## 232           7     2092     PS3 2011       Action
## 233           7     2157      DS 2011       Action
## 234           7     3252     3DS 2011       Action
## 235           7     5355     PSP 2011       Action
## 236           7    14887      PC 2011       Action
## 237           7      908     Wii 2011       Action
## 238           7     1245    X360 2011       Action
## 239           7     1669     PS3 2011       Action
## 240           7     1750      DS 2011       Action
## 241           7     1805     3DS 2011       Action
## 242           7     4901     PSP 2011       Action
## 243           7     6598      PC 2011       Action
## 244           7     1582    X360 2012       Action
## 245           7     1855     PS3 2012       Action
## 246           7     2143     Wii 2012       Action
## 247           7     4884     3DS 2012       Action
## 248           7     5563     PSV 2012       Action
## 249           7     7201      PC 2012       Action
## 250           7     8633      DS 2012       Action
## 251           7     3748     PS4 2016       Action
## 252           7     6912    XOne 2016       Action
## 253           7     9682     PS3 2016       Action
## 254           7    10365    X360 2016       Action
## 255           7    10914     PSV 2016       Action
## 256           7    11169    WiiU 2016       Action
## 257           7    12236     3DS 2016       Action
## 258           7      212     PS2 2005       Sports
## 259           7      926      XB 2005       Sports
## 260           7     2749     PSP 2005       Sports
## 261           7     3526      GC 2005       Sports
## 262           7     7044     GBA 2005       Sports
## 263           7     9741      DS 2005       Sports
## 264           7     3423    X360 2006       Sports
## 265           7     4337    X360 2011       Sports
## 266           7     7526     PS3 2011       Sports
## 267           7     8578     Wii 2011       Sports
## 268           7    10755      DS 2011       Sports
## 269           7    11400      PC 2011       Sports
## 270           7    12914     PSP 2011       Sports
## 271           7    13201     PS2 2011       Sports
## 272           7      829     GEN 1992       Sports
## 273           7     1395    SNES 1994       Sports
## 274           7     4513     Wii 2010       Sports
## 275           7     4676     PS2 2003       Sports
## 276           7     4835    X360 2010       Sports
## 277           7     4868     PS3 2010       Sports
## 278           7     9293      XB 2003       Sports
## 279           7      803     PS3 2008       Racing
## 280           7     1069    X360 2008       Racing
## 281           7     1383     PS2 2008       Racing
## 282           7     2667     PSP 2008       Racing
## 283           7     3026     Wii 2008       Racing
## 284           7     6956      DS 2008       Racing
## 285           7    11572      PC 2008       Racing
## 286           7     1105    X360 2006       Racing
## 287           7     1463     PS2 2006       Racing
## 288           7     1527     Wii 2006       Racing
## 289           7     1577     PS3 2006       Racing
## 290           7     4200      XB 2006       Racing
## 291           7     5312      GC 2006       Racing
## 292           7    13153      PC 2006       Racing
## 293           7      645     PS2 2007       Racing
## 294           7      815    X360 2007       Racing
## 295           7      823     PS3 2007       Racing
## 296           7     1844     Wii 2007       Racing
## 297           7     2651     PSP 2008       Racing
## 298           7     9574      DS 2007       Racing
## 299           7    13565      PC 2007       Racing
## 300           7      742     PS3 2011       Action
## 301           7     3537     PSP 2011       Action
## 302           7     3957    X360 2011       Action
## 303           7     7337     Wii 2011       Action
## 304           7    10987      PC 2011       Action
## 305           7    12491     PS2 2011       Action
## 306           7    14750     3DS 2011       Action
## 307           7      677     Wii 2013     Platform
## 308           7     1471    X360 2013     Platform
## 309           7     1932     PS3 2013     Platform
## 310           7     3364    WiiU 2013     Platform
## 311           7     5157     PS4 2013     Platform
## 312           7     5809    XOne 2013     Platform
## 313           7     6828     3DS 2013     Platform
## 314           7     4127    WiiU 2015       Action
## 315           7     4285    X360 2015       Action
## 316           7     4886     PS3 2015       Action
## 317           7     5893     PS4 2015       Action
## 318           7     6467     Wii 2015       Action
## 319           7     7021    XOne 2015       Action
## 320           7    10088     3DS 2015       Action
## 321           7     1969     Wii 2014       Action
## 322           7     2240    X360 2014       Action
## 323           7     2922    WiiU 2014       Action
## 324           7     2955     PS3 2014       Action
## 325           7     4564     PS4 2014       Action
## 326           7     5364    XOne 2014       Action
## 327           7     6510     3DS 2014       Action
## 328           7     2314     PS2 2007     Platform
## 329           7     2982     PS3 2007     Platform
## 330           7     3509    X360 2007     Platform
## 331           7     4132     Wii 2007     Platform
## 332           7     4185      DS 2007     Platform
## 333           7     5862     PSP 2007     Platform
## 334           7    15305      PC 2007     Platform
## 335           7     2511     Wii 2009       Action
## 336           7     4274     PS3 2009       Action
## 337           7     4657     PSP 2009       Action
## 338           7     4728      DS 2009       Action
## 339           7     4839    X360 2009       Action
## 340           7     6621     PS2 2009       Action
## 341           7    14755      PC 2009       Action
## 342           7     6074     PS2 2007       Sports
## 343           7     6170      DS 2007       Sports
## 344           7     8401     Wii 2007       Sports
## 345           7    10108     PSP 2007       Sports
## 346           7    10564    X360 2007       Sports
## 347           7    13795     PS3 2007       Sports
## 348           7    16295      GC 2007       Sports
## 349           7     3666     PS4 2014       Action
## 350           7     5978     PS3 2014       Action
## 351           7     6538    X360 2014       Action
## 352           7     7341    XOne 2014       Action
## 353           7    12370     3DS 2014       Action
## 354           7    12680    WiiU 2014       Action
## 355           7    16409      PC 2014       Action
## 356           7     1402     PSP 2005   Simulation
## 357           7     2150      DS 2005   Simulation
## 358           7     2561     PS2 2005   Simulation
## 359           7     4959     GBA 2005   Simulation
## 360           7     5470      GC 2005   Simulation
## 361           7     5871      PC 2004   Simulation
## 362           7     6701      XB 2005   Simulation
## 363           7     3858     PS2 2006       Action
## 364           7     4284     PSP 2006       Action
## 365           7     4972    X360 2006       Action
## 366           7     9421      XB 2006       Action
## 367           7    11555      GC 2006       Action
## 368           7    11809      DS 2006       Action
## 369           7    15629      PC 2006       Action
## 370           7     1304      DS 2008     Platform
## 371           7     2036     Wii 2008     Platform
## 372           7     2733     PS2 2008     Platform
## 373           7     3105     PSP 2008     Platform
## 374           7     3278    X360 2008     Platform
## 375           7     4795     PS3 2008     Platform
## 376           7    15800      PC 2008     Platform
## 377           6     1275    X360 2008       Action
## 378           6     1741     PS3 2008       Action
## 379           6     3040     Wii 2008       Action
## 380           6     4501     PS2 2008       Action
## 381           6     9320      DS 2008       Action
## 382           6    14550      PC 2008       Action
## 383           6    10435     PS3 2015       Action
## 384           6    10884    X360 2015       Action
## 385           6    11185     PS4 2015       Action
## 386           6    11780     3DS 2015       Action
## 387           6    12885    WiiU 2015       Action
## 388           6    13126    XOne 2015       Action
## 389           6      308     PS3 2013       Action
## 390           6      402    X360 2013       Action
## 391           6      547     PS4 2013       Action
## 392           6      733    XOne 2013       Action
## 393           6     2963      PC 2013       Action
## 394           6     5975    WiiU 2013       Action
## 395           6     2278     PS3 2009       Action
## 396           6     2658    X360 2009       Action
## 397           6     2819     Wii 2009       Action
## 398           6     3357     PSP 2009       Action
## 399           6     4777      DS 2009       Action
## 400           6    13432      PC 2009       Action
## 401           6     9215      DS 2011       Racing
## 402           6     9366     3DS 2011       Racing
## 403           6     9625     Wii 2011       Racing
## 404           6    10712    X360 2011       Racing
## 405           6    11017     PS3 2011       Racing
## 406           6    13098     PSV 2012       Racing
## 407           6     5606      DS 2010     Platform
## 408           6     6002     Wii 2010     Platform
## 409           6     6725     PS3 2010     Platform
## 410           6     6838     PSP 2010     Platform
## 411           6     7165     PS2 2010     Platform
## 412           6     8085    X360 2010     Platform
## 413           6     4392    X360 2010       Sports
## 414           6     4840     PS2 2007       Sports
## 415           6     4891     Wii 2007       Sports
## 416           6     7411     PSP 2007       Sports
## 417           6     7891     PS3 2010       Sports
## 418           6     9984     3DS 2011       Sports
## 419           6       62    X360 2013      Shooter
## 420           6       68     PS3 2013      Shooter
## 421           6      350     PS4 2013      Shooter
## 422           6      506    XOne 2013      Shooter
## 423           6     2799      PC 2013      Shooter
## 424           6     5220    WiiU 2013      Shooter
## 425           6     1498      DS 2011       Racing
## 426           6     2182     Wii 2011       Racing
## 427           6     3735     PS3 2011       Racing
## 428           6     4000    X360 2011       Racing
## 429           6     7133     3DS 2011       Racing
## 430           6     9749     PSP 2011       Racing
## 431           6     2094     Wii 2009       Racing
## 432           6     4145      DS 2009       Racing
## 433           6     4210     PS2 2009       Racing
## 434           6     4725     PSP 2009       Racing
## 435           6     7846     PS3 2009       Racing
## 436           6     8757    X360 2009       Racing
## 437           6     2414     PS3 2012       Action
## 438           6     2584    X360 2012       Action
## 439           6     7282     PS4 2015       Action
## 440           6     8648    WiiU 2012       Action
## 441           6     8700      PC 2012       Action
## 442           6    12547    XOne 2015       Action
## 443           6     2054     PS3 2009       Racing
## 444           6     2553    X360 2009       Racing
## 445           6     5043     Wii 2009       Racing
## 446           6     5529     PSP 2009       Racing
## 447           6     9792      DS 2009       Racing
## 448           6    13129      PC 2009       Racing
## 449           6     1031     Wii 2013       Action
## 450           6     1348    X360 2013       Action
## 451           6     2079     PS3 2013       Action
## 452           6     3347    WiiU 2013       Action
## 453           6     6042     3DS 2013       Action
## 454           6    12230     PSV 2013       Action
## 455           6     1826    X360 2014       Action
## 456           6     2040     PS3 2014       Action
## 457           6     3096    WiiU 2014       Action
## 458           6     3378     PS4 2014       Action
## 459           6     4632    XOne 2014       Action
## 460           6     9039     PSV 2015       Action
## 461           6      284     PS2 2006       Sports
## 462           6     1666     PSP 2006       Sports
## 463           6     3695      XB 2006       Sports
## 464           6     6236    X360 2006       Sports
## 465           6     8075      GC 2006       Sports
## 466           6    12589      DS 2006       Sports
## 467           6      590     PS3 2008       Sports
## 468           6      703     PS2 2008       Sports
## 469           6      879    X360 2008       Sports
## 470           6     1440     PSP 2008       Sports
## 471           6     4041      DS 2008       Sports
## 472           6    15208      PC 2008       Sports
## 473           6     3544     PS2 2006       Sports
## 474           6     4139    X360 2006       Sports
## 475           6     6936      XB 2006       Sports
## 476           6     9502      GC 2006       Sports
## 477           6    10363     PSP 2006       Sports
## 478           6    13853      DS 2006       Sports
## 479           6     3618      DS 2009       Action
## 480           6     4436     Wii 2009       Action
## 481           6     5258     PSP 2009       Action
## 482           6     6320     PS2 2009       Action
## 483           6     7156     PS3 2009       Action
## 484           6     8382    X360 2009       Action
## 485           6     6934    X360 2009       Action
## 486           6     7244     Wii 2009       Action
## 487           6     7378     PS3 2009       Action
## 488           6     9028     PS2 2009       Action
## 489           6     9036     PSP 2009       Action
## 490           6     9272      DS 2009       Action
## 491           6     2362     Wii 2009       Action
## 492           6     2415     PS3 2009       Action
## 493           6     3195    X360 2009       Action
## 494           6     4529     PS2 2009       Action
## 495           6     4678      DS 2009       Action
## 496           6     8038     PSP 2009       Action
## 497           6      587     PS2 2002       Action
## 498           6      855     GBA 2002       Action
## 499           6      856      PS 2002       Action
## 500           6     2964      GC 2002       Action
## 501           6     5250      XB 2002       Action
## 502           6    16146      PC 2002       Action
## 503           6     3122     PS2 2005       Action
## 504           6     3322     GBA 2005       Action
## 505           6     4640      GC 2005       Action
## 506           6     6825      DS 2005       Action
## 507           6     6976      XB 2005       Action
## 508           6     7682     PSP 2005       Action
## 509           6     4960     PS2 2006     Platform
## 510           6     6629     GBA 2006     Platform
## 511           6     7764      GC 2006     Platform
## 512           6     8786      DS 2006     Platform
## 513           6    10767      XB 2006     Platform
## 514           6    11412     Wii 2006     Platform
## 515           6     4973      DS 2009       Action
## 516           6     6108     Wii 2009       Action
## 517           6     7752     PS3 2009       Action
## 518           6     8270     PS2 2009       Action
## 519           6     9602    X360 2009       Action
## 520           6    15130      PC 2009       Action
## 521           6     2980     PS3 2008       Action
## 522           6     3202     PSP 2008       Action
## 523           6     3397     Wii 2008       Action
## 524           6     3517    X360 2008       Action
## 525           6     3690     PS2 2008       Action
## 526           6     3874      DS 2008       Action
## 527           6     3191    X360 2007       Racing
## 528           6     4885     PS2 2007       Racing
## 529           6     5124     PSP 2007       Racing
## 530           6     6521     PS3 2007       Racing
## 531           6     6885      DS 2007       Racing
## 532           6    16355      PC 2007       Racing
## 533           6      328     Wii 2013         Misc
## 534           6     2110    X360 2013         Misc
## 535           6     3299    WiiU 2013         Misc
## 536           6     4410    XOne 2013         Misc
## 537           6     4880     PS3 2013         Misc
## 538           6     4916     PS4 2013         Misc
## 539           6      700     Wii 2014         Misc
## 540           6     2758    WiiU 2014         Misc
## 541           6     3189    X360 2014         Misc
## 542           6     3818    XOne 2014         Misc
## 543           6     5060     PS4 2014         Misc
## 544           6     6201     PS3 2014         Misc
## 545           6     1672     Wii 2015         Misc
## 546           6     3444    WiiU 2015         Misc
## 547           6     5228    X360 2015         Misc
## 548           6     5347     PS4 2015         Misc
## 549           6     5693    XOne 2015         Misc
## 550           6     7260     PS3 2015         Misc
## 551           6      459    X360 2008       Action
## 552           6     1571      DS 2008       Action
## 553           6     2259     Wii 2008       Action
## 554           6     3098     PS2 2008       Action
## 555           6     3855     PS3 2008       Action
## 556           6    15035      PC 2008       Action
## 557           6      619     Wii 2010       Action
## 558           6      673      DS 2010       Action
## 559           6     1168    X360 2010       Action
## 560           6     1422     PS3 2010       Action
## 561           6     2888     PSP 2010       Action
## 562           6    14963      PC 2010       Action
## 563           6     1349     Wii 2009       Action
## 564           6     1658      DS 2009       Action
## 565           6     2005    X360 2009       Action
## 566           6     2283     PS3 2009       Action
## 567           6     3404     PSP 2009       Action
## 568           6    13191      PC 2009       Action
## 569           6     2968    X360 2007       Racing
## 570           6     3125     PSP 2007       Racing
## 571           6     4230     PS3 2007       Racing
## 572           6     5048     PS2 2007       Racing
## 573           6     5401     Wii 2008       Racing
## 574           6     9836      DS 2007       Racing
## 575           6     2754      DS 2008       Action
## 576           6     3608     Wii 2008       Action
## 577           6     5061     PS2 2008       Action
## 578           6     6656    X360 2008       Action
## 579           6     6954     PS3 2008       Action
## 580           6    16447      PC 2008       Action
## 581           6      607    X360 2008       Sports
## 582           6      912     PS3 2008       Sports
## 583           6     1271     PS2 2008       Sports
## 584           6     2876     PSP 2008       Sports
## 585           6     5499      DS 2008       Sports
## 586           6     8195      XB 2008       Sports
## 587           6      507    X360 2012       Sports
## 588           6      604     PS3 2012       Sports
## 589           6     3732     Wii 2012       Sports
## 590           6     5590     PSV 2012       Sports
## 591           6     6794    WiiU 2012       Sports
## 592           6    16130     PS3 2012       Sports
## 593           6      452     PS2 2001       Sports
## 594           6     1390      PS 2001       Sports
## 595           6     3324      GC 2001       Sports
## 596           6     4499     N64 2001       Sports
## 597           6     5676     GBA 2001       Sports
## 598           6     3503      XB 2002       Sports
## 599           6     3911    X360 2010       Sports
## 600           6     6368     Wii 2010       Sports
## 601           6     7051     PS2 2010       Sports
## 602           6     7999     PS3 2010       Sports
## 603           6     8802      DS 2010       Sports
## 604           6    12168     PSP 2010       Sports
## 605           6     3996    X360 2012       Sports
## 606           6     7808     PS3 2012       Sports
## 607           6     8528     Wii 2012       Sports
## 608           6    11143     PSP 2012       Sports
## 609           6    11318      DS 2012       Sports
## 610           6    13673      PC 2012       Sports
## 611           6      614    X360 2006 Role-Playing
## 612           6     2510     PS2 2006 Role-Playing
## 613           6     4752     Wii 2006 Role-Playing
## 614           6     4948     PS3 2006 Role-Playing
## 615           6     5142     PSP 2006 Role-Playing
## 616           6    16236      PC 2006 Role-Playing
## 617           6     2289    X360 2009 Role-Playing
## 618           6     2761     PS3 2009 Role-Playing
## 619           6     4766     PS2 2009 Role-Playing
## 620           6     5466     Wii 2009 Role-Playing
## 621           6     6711     PSP 2009 Role-Playing
## 622           6     7561      DS 2009 Role-Playing
## 623           6      248     Wii 2010         Misc
## 624           6     2361    X360 2011         Misc
## 625           6     3706     PS3 2011         Misc
## 626           6     6484      DS 2010         Misc
## 627           6     8667     PSP 2010         Misc
## 628           6    10253     PSV 2011         Misc
## 629           6       73    X360 2013         Misc
## 630           6      169     PS3 2014         Misc
## 631           6      298     PS4 2014         Misc
## 632           6      644    XOne 2014         Misc
## 633           6      715     PSV 2014         Misc
## 634           6     4515    WiiU 2016         Misc
## 635           6     3912      DS 2009       Action
## 636           6     5811     PS3 2009       Action
## 637           6     6543     Wii 2009       Action
## 638           6     7920     PS2 2009       Action
## 639           6     8367    X360 2009       Action
## 640           6    14630      PC 2009       Action
## 641           6      796    X360 2010       Action
## 642           6      967     PS3 2010       Action
## 643           6     3930     Wii 2010       Action
## 644           6     4658     PSP 2010       Action
## 645           6     4753     PS2 2010       Action
## 646           6     7881      PC 2010       Action
## 647           6      114     PS2 2004       Racing
## 648           6      698      XB 2004       Racing
## 649           6     1802      GC 2004       Racing
## 650           6     4500     GBA 2004       Racing
## 651           6     9254      DS 2005       Racing
## 652           6    11666      PC 2004       Racing
## 653           6     8232      GC 2006     Platform
## 654           6     9304      DS 2006     Platform
## 655           6    10115    X360 2006     Platform
## 656           6    11685     PSP 2006     Platform
## 657           6    11956     Wii 2006     Platform
## 658           6    14866     PS2 2006     Platform
## 659           6      835     PS2 2005       Action
## 660           6     3785      XB 2005       Action
## 661           6     6558    X360 2005       Action
## 662           6     6840      GC 2005       Action
## 663           6     7781     PSP 2005       Action
## 664           6     9376      DS 2005       Action
## 665           6     2789     PS3 2007       Action
## 666           6     4306     Wii 2007       Action
## 667           6     4566     PSP 2007       Action
## 668           6     4666     PS2 2007       Action
## 669           6     5349      DS 2007       Action
## 670           6     5430    X360 2007       Action
## 671           6     2923     PS3 2010       Action
## 672           6     3243    X360 2010       Action
## 673           6     5113     PSP 2010       Action
## 674           6     6727     Wii 2010       Action
## 675           6     8716      DS 2010       Action
## 676           6    14241      PC 2010       Action
## 677           6      349     PS2 2007       Sports
## 678           6     1166     PS3 2007       Sports
## 679           6     1692     Wii 2008       Sports
## 680           6     1928    X360 2007       Sports
## 681           6     2107     PSP 2008       Sports
## 682           6    16561      PC 2007       Sports
## 683           6      699     PS3 2009       Sports
## 684           6     1182     PS2 2009       Sports
## 685           6     2547    X360 2009       Sports
## 686           6     2575     PSP 2009       Sports
## 687           6     3895     Wii 2009       Sports
## 688           6    16403      PC 2009       Sports
## 689           6     1186     PS3 2012       Sports
## 690           6     5743    X360 2012       Sports
## 691           6     6260     PSP 2012       Sports
## 692           6     8142     3DS 2012       Sports
## 693           6    10676     Wii 2012       Sports
## 694           6    11216      PC 2012       Sports
## 695           6     4852    X360 2010       Sports
## 696           6     5782     Wii 2010       Sports
## 697           6     6271     PS3 2010       Sports
## 698           6    10747      DS 2010       Sports
## 699           6    11579     PS2 2010       Sports
## 700           6    12171     PSP 2010       Sports
## 701           6     2055     PS4 2014     Platform
## 702           6     2985    WiiU 2013     Platform
## 703           6     3071     PS3 2013     Platform
## 704           6     4297    X360 2013     Platform
## 705           6     5411    XOne 2014     Platform
## 706           6     7455     PSV 2014     Platform
## 707           6     2018     PS3 2011     Platform
## 708           6     2601    X360 2011     Platform
## 709           6     3386     PSV 2012     Platform
## 710           6     3457     Wii 2011     Platform
## 711           6     8953     3DS 2012     Platform
## 712           6    11605      PC 2012     Platform
## 713           6    11873     PS3 2015       Sports
## 714           6    12728     PS4 2015       Sports
## 715           6    13391    X360 2015       Sports
## 716           6    13972     PSV 2015       Sports
## 717           6    15156    XOne 2015       Sports
## 718           6    16462      PC 2015       Sports
## 719           6     3224    X360 2012       Racing
## 720           6     3705     PS3 2012       Racing
## 721           6     3795    WiiU 2012       Racing
## 722           6     4083     PSV 2012       Racing
## 723           6     6068     3DS 2012       Racing
## 724           6    16192      PC 2013       Racing
## 725           6      391     PS2 2004       Action
## 726           6     1832      XB 2004       Action
## 727           6     1961     GBA 2004       Action
## 728           6     2455      GC 2004       Action
## 729           6     2902     PSP 2005       Action
## 730           6     3986      DS 2004       Action
## 731           6     4205      DS 2007       Action
## 732           6     5121     PS2 2007       Action
## 733           6     5912    X360 2007       Action
## 734           6     8092     PSP 2007       Action
## 735           6     8839     Wii 2007       Action
## 736           6    16224      PC 2007       Action
## 737           6     4722    X360 2008       Action
## 738           6     6340     PS3 2008       Action
## 739           6     6667     Wii 2008       Action
## 740           6     7435     PS2 2008       Action
## 741           6    10613      DS 2008       Action
## 742           6    15260      PC 2008       Action
## 743           6      526    X360 2008       Action
## 744           6      704     PS3 2008       Action
## 745           6      905     Wii 2008       Action
## 746           6     1586     PS2 2008       Action
## 747           6     1872     PSP 2008       Action
## 748           6     2312      DS 2008       Action
## 749           6      277     NES 1989       Action
## 750           6     2238     GBA 2003       Action
## 751           6     2246     PS2 2003       Action
## 752           6     5424      GC 2003       Action
## 753           6     5948      XB 2003       Action
## 754           6    16520     Wii 2007       Action
## 755           6     2501     PS3 2012       Action
## 756           6     2745    X360 2012       Action
## 757           6     7477      DS 2012       Action
## 758           6     7858     3DS 2012       Action
## 759           6     8506     Wii 2012       Action
## 760           6    10892    WiiU 2013       Action
## 761           6     5966     Wii 2009       Sports
## 762           6     7359    X360 2009       Sports
## 763           6     7644     PS2 2009       Sports
## 764           6     9446     PS3 2009       Sports
## 765           6    10718     PSP 2009       Sports
## 766           6    13016      DS 2009       Sports
## 767           6     3344      DS 2007       Action
## 768           6     3834     PS2 2007       Action
## 769           6     4286    X360 2007       Action
## 770           6     6104     PS3 2007       Action
## 771           6     5080     PSP 2007       Action
## 772           6     3348     Wii 2007       Action
## 773           6     3565     GBA 2003       Action
## 774           6     5038     PS2 2008       Action
## 775           6     5721     Wii 2008       Action
## 776           6     6366     PS3 2008       Action
## 777           6     6386    X360 2008       Action
## 778           6     6807      DS 2008       Action
## 779           6     4811     GBA 2005       Action
## 780           6     5188     PS2 2005       Action
## 781           6     8553      GC 2005       Action
## 782           6     8794      DS 2005       Action
## 783           6    11218      XB 2005       Action
## 784           6    15822      PC 2005       Action
## 785           6     1222      DS 2007       Action
## 786           6     1251     PS2 2007       Action
## 787           6     1874     PSP 2007       Action
## 788           6     1989    X360 2007       Action
## 789           6     2023     Wii 2007       Action
## 790           6     2295     PS3 2007       Action
## 791           6      798      DS 2006   Simulation
## 792           6     2572     PSP 2006   Simulation
## 793           6     4092     Wii 2007   Simulation
## 794           6     5930     PS2 2006   Simulation
## 795           6     6393      GC 2006   Simulation
## 796           6    13618      PC 2006   Simulation
## 797           6       84      PC 2009   Simulation
## 798           6      681    X360 2010   Simulation
## 799           6      816     PS3 2010   Simulation
## 800           6     1276     Wii 2010   Simulation
## 801           6     2692     3DS 2011   Simulation
## 802           6     2921      DS 2010   Simulation
## 803           6     2600     PS3 2012    Adventure
## 804           6     2763    X360 2012    Adventure
## 805           6     4319     PS4 2014    Adventure
## 806           6     8019     PSV 2013    Adventure
## 807           6     8694    XOne 2014    Adventure
## 808           6    14286      PC 2012    Adventure
## 809           6     2837     PS2 2006       Sports
## 810           6     3958     PS3 2006       Sports
## 811           6     4107    X360 2006       Sports
## 812           6     6315     PSP 2006       Sports
## 813           6     7987      XB 2006       Sports
## 814           6     4201     Wii 2006       Sports
## 815           6     2017     Wii 2007       Sports
## 816           6     2790     PS3 2007       Sports
## 817           6     3692    X360 2007       Sports
## 818           6     4967     PS2 2007       Sports
## 819           6     5051     PSP 2007       Sports
## 820           6    12649      DS 2007       Sports
## 821           6     1552     PS3 2008       Action
## 822           6     1908    X360 2008       Action
## 823           6     4135     Wii 2008       Action
## 824           6     7632      DS 2008       Action
## 825           6     8163     PS2 2009       Action
## 826           6    11485      PC 2008       Action
## 827           6      249     PS2 2001       Sports
## 828           6     1092      PS 2001       Sports
## 829           6     2509      GC 2001       Sports
## 830           6     3663      XB 2002       Sports
## 831           6     3869     GBA 2002       Sports
## 832           6    11482     N64 2002       Sports
## 833           6     2920     PS3 2009      Shooter
## 834           6     3218    X360 2009      Shooter
## 835           6     4045     Wii 2009      Shooter
## 836           6     4062     PS2 2009      Shooter
## 837           6     4703     PSP 2009      Shooter
## 838           6    15483      PC 2009      Shooter
## 839           6    14103      DS 2013       Sports
## 840           6    14888    WiiU 2013       Sports
## 841           6    15207     PS3 2013       Sports
## 842           6    15759     Wii 2013       Sports
## 843           6    15878     3DS 2013       Sports
## 844           6    16065    X360 2013       Sports
## 845           6     3107      DS 2009       Action
## 846           6     3514     Wii 2009       Action
## 847           6     4140     PS2 2009       Action
## 848           6     4721     PSP 2009       Action
## 849           6     5982    X360 2009       Action
## 850           6     6654     PS3 2009       Action
## 851           6     4663     PS3 2011     Fighting
## 852           6     5318    X360 2011     Fighting
## 853           6     7071     3DS 2011     Fighting
## 854           6     7506     Wii 2011     Fighting
## 855           6     7994     PSP 2011     Fighting
## 856           6    10141     PS2 2011     Fighting
## 857           6      678     PS2 2007     Fighting
## 858           6     1340    X360 2007     Fighting
## 859           6     1467     PS3 2007     Fighting
## 860           6     1690     PSP 2007     Fighting
## 861           6     2101     Wii 2007     Fighting
## 862           6     9747      DS 2007     Fighting
## 863           6     1609     PS2 2008     Fighting
## 864           6     2191     PS3 2008     Fighting
## 865           6     2255    X360 2008     Fighting
## 866           6     2482     Wii 2008     Fighting
## 867           6     2734     PSP 2008     Fighting
## 868           6     7970      DS 2008     Fighting
## 869           6     1715     PS3 2009     Fighting
## 870           6     1927     PS2 2009     Fighting
## 871           6     1983    X360 2009     Fighting
## 872           6     2740     Wii 2009     Fighting
## 873           6     3270     PSP 2009     Fighting
## 874           6     3739      DS 2009     Fighting
## 875           6     3257     PS3 2011       Action
## 876           6     8515    X360 2011       Action
## 877           6     8908     PS4 2014       Action
## 878           6    10390     PSP 2012       Action
## 879           6    11784     PSV 2013       Action
## 880           6    13955    XOne 2014       Action
## 881           6      281     PS4 2014       Action
## 882           6      893     PS3 2014       Action
## 883           6     1204    XOne 2014       Action
## 884           6     1541    X360 2014       Action
## 885           6     4335      PC 2014       Action
## 886           6     9114    WiiU 2014       Action
## 887           6     4711     PS2 2006       Action
## 888           6     8265    X360 2006       Action
## 889           6     8885      GC 2006       Action
## 890           6    10403      DS 2006       Action
## 891           6    10571      XB 2006       Action
## 892           6    12172     GBA 2006       Action
## 893           6     4856      PS 1999         Misc
## 894           6     7259     Wii 2011         Misc
## 895           6     7509    X360 2011         Misc
## 896           6     8201     PS3 2011         Misc
## 897           6    11827      DS 2011         Misc
## 898           6    15978      PC 1995         Misc
## 899           6      640     PS3 2010       Sports
## 900           6     2597     PSP 2010       Sports
## 901           6     3305    X360 2010       Sports
## 902           6     4687     PS2 2010       Sports
## 903           6     7090     Wii 2010       Sports
## 904           6    12607      PC 2010       Sports
## 905           5     1814     PS4 2014      Shooter
## 906           5     3997    XOne 2014      Shooter
## 907           5     5089     PS3 2014      Shooter
## 908           5     5829    X360 2014      Shooter
## 909           5     8962      PC 2014      Shooter
## 910           5     8234     PS4 2015    Adventure
## 911           5    11134     PS3 2011    Adventure
## 912           5    12592     Wii 2011    Adventure
## 913           5    14876    X360 2015    Adventure
## 914           5    15710    XOne 2015    Adventure
## 915           5     4049      DS 2010       Action
## 916           5     8395     Wii 2010       Action
## 917           5     8458     PS3 2010       Action
## 918           5     8855     PSP 2010       Action
## 919           5     8972    X360 2010       Action
## 920           5     1393      DS 2009       Action
## 921           5     2976     Wii 2009       Action
## 922           5     4562     PS2 2009       Action
## 923           5     6798    X360 2009       Action
## 924           5     6867     PS3 2009       Action
## 925           5     2093     Wii 2009         Misc
## 926           5     2591    X360 2009         Misc
## 927           5     2735     PS3 2009         Misc
## 928           5     4376      DS 2009         Misc
## 929           5     4745     PS2 2009         Misc
## 930           5      337     PS3 2013      Shooter
## 931           5      366    X360 2013      Shooter
## 932           5      387     PS4 2013      Shooter
## 933           5      858    XOne 2013      Shooter
## 934           5     1388      PC 2013      Shooter
## 935           5      799     PS4 2015      Shooter
## 936           5     1674    XOne 2015      Shooter
## 937           5     4079     PS3 2015      Shooter
## 938           5     5437    X360 2015      Shooter
## 939           5     9306      PC 2015      Shooter
## 940           5     4437     Wii 2009       Action
## 941           5     4572      DS 2009       Action
## 942           5     4573     PSP 2009       Action
## 943           5     5986     PS2 2009       Action
## 944           5     7242    X360 2009       Action
## 945           5     2440     Wii 2007   Simulation
## 946           5     3018     PS3 2006   Simulation
## 947           5     4635    X360 2006   Simulation
## 948           5    11355      XB 2006   Simulation
## 949           5    15753      PC 2006   Simulation
## 950           5     3258      DS 2008    Adventure
## 951           5     3557     Wii 2008    Adventure
## 952           5     6478     PS2 2008    Adventure
## 953           5     6710    X360 2008    Adventure
## 954           5     7939     PS3 2008    Adventure
## 955           5     7503     Wii 2010       Sports
## 956           5    10016     PS3 2010       Sports
## 957           5    10346    X360 2010       Sports
## 958           5    10869     PSP 2010       Sports
## 959           5    11509     PS2 2010       Sports
## 960           5       94     PS4 2014      Shooter
## 961           5      194    XOne 2014      Shooter
## 962           5      245     PS3 2014      Shooter
## 963           5      258    X360 2014      Shooter
## 964           5     4742      PC 2014      Shooter
## 965           5       32    X360 2010      Shooter
## 966           5       41     PS3 2010      Shooter
## 967           5     1128      PC 2010      Shooter
## 968           5     1381     Wii 2010      Shooter
## 969           5     3213      DS 2010      Shooter
## 970           5       34     PS4 2015      Shooter
## 971           5      102    XOne 2015      Shooter
## 972           5      969     PS3 2015      Shooter
## 973           5     1001    X360 2015      Shooter
## 974           5     7052      PC 2015      Shooter
## 975           5       99    X360 2008      Shooter
## 976           5      167     PS3 2008      Shooter
## 977           5      863     Wii 2008      Shooter
## 978           5     2290      DS 2008      Shooter
## 979           5     7951      PC 2008      Shooter
## 980           5    12827      DS 2011       Action
## 981           5    12628     Wii 2011       Action
## 982           5     7574     PS3 2011       Action
## 983           5     8182    X360 2011       Action
## 984           5    11317     3DS 2011       Action
## 985           5     7168      DS 2009     Platform
## 986           5     9622     Wii 2009     Platform
## 987           5    10429     PS3 2009     Platform
## 988           5    11223    X360 2009     Platform
## 989           5    11417     PSP 2009     Platform
## 990           5     3140     PSP 2007       Action
## 991           5     4077      DS 2007       Action
## 992           5     4237     Wii 2007       Action
## 993           5     4690     PS2 2007       Action
## 994           5     5609    X360 2007       Action
## 995           5     3970     PS2 2008     Platform
## 996           5     4112    X360 2008     Platform
## 997           5     4322     Wii 2008     Platform
## 998           5     4407     PSP 2008     Platform
## 999           5     4591      DS 2008     Platform
## 1000          5     1487     PS3 2014 Role-Playing
## 1001          5     2722    X360 2014 Role-Playing
## 1002          5     3430     PS4 2015 Role-Playing
## 1003          5     7163    XOne 2015 Role-Playing
## 1004          5     8119      PC 2014 Role-Playing
## 1005          5     3127     PS3 2012     Fighting
## 1006          5     5484     PS4 2015     Fighting
## 1007          5     5593    X360 2012     Fighting
## 1008          5    10774     PSV 2013     Fighting
## 1009          5    11307    XOne 2015     Fighting
## 1010          5      182      PC 2012 Role-Playing
## 1011          5      828     PS3 2013 Role-Playing
## 1012          5     1024     PS4 2014 Role-Playing
## 1013          5     1318    X360 2013 Role-Playing
## 1014          5     3138    XOne 2014 Role-Playing
## 1015          5     1033    X360 2012       Action
## 1016          5     1197     PS3 2012       Action
## 1017          5     3938      PC 2012       Action
## 1018          5     5141     PS4 2015       Action
## 1019          5     9034    XOne 2015       Action
## 1020          5     2981     PS4 2015       Action
## 1021          5     4186     PS3 2015       Action
## 1022          5     4419    X360 2015       Action
## 1023          5     4422    WiiU 2015       Action
## 1024          5     5764    XOne 2015       Action
## 1025          5      860     PS4 2014 Role-Playing
## 1026          5     2294    XOne 2014 Role-Playing
## 1027          5     2810      PC 2014 Role-Playing
## 1028          5     3130     PS3 2014 Role-Playing
## 1029          5     3633    X360 2014 Role-Playing
## 1030          5     8894     Wii 2011       Racing
## 1031          5     9496      DS 2011       Racing
## 1032          5     9862     3DS 2011       Racing
## 1033          5     9930     PS3 2011       Racing
## 1034          5    12429    X360 2011       Racing
## 1035          5     1642     PS3 2011       Racing
## 1036          5     2802    X360 2011       Racing
## 1037          5     7932      PC 2011       Racing
## 1038          5     8482     3DS 2011       Racing
## 1039          5     8940     PSV 2011       Racing
## 1040          5       78     PS4 2015       Sports
## 1041          5      417    XOne 2015       Sports
## 1042          5      514     PS3 2015       Sports
## 1043          5     1065    X360 2015       Sports
## 1044          5     8136      PC 2015       Sports
## 1045          5      222     PS4 2016       Sports
## 1046          5     1226    XOne 2016       Sports
## 1047          5     5058     PS3 2016       Sports
## 1048          5     8192    X360 2016       Sports
## 1049          5    12940      PC 2016       Sports
## 1050          5      270     PS2 2005       Sports
## 1051          5     2998      XB 2005       Sports
## 1052          5    10048     PSP 2005       Sports
## 1053          5    12150     GBA 2005       Sports
## 1054          5    12740      DS 2005       Sports
## 1055          5     1530     PS3 2012       Sports
## 1056          5     2252    X360 2012       Sports
## 1057          5     5724     PS2 2005       Sports
## 1058          5    10528      XB 2005       Sports
## 1059          5    12726      GC 2005       Sports
## 1060          5     5145     PS2 2006       Sports
## 1061          5     8746     PSP 2006       Sports
## 1062          5    10039      GC 2006       Sports
## 1063          5    11342      XB 2006       Sports
## 1064          5    13518      DS 2006       Sports
## 1065          5     4881     PS2 2007       Action
## 1066          5     8807     PS3 2007       Action
## 1067          5     9985    X360 2007       Action
## 1068          5    13388     Wii 2007       Action
## 1069          5    13426      DS 2007       Action
## 1070          5      296     PS4 2014      Shooter
## 1071          5     1149    XOne 2014      Shooter
## 1072          5     1339     PS3 2014      Shooter
## 1073          5     2121    X360 2014      Shooter
## 1074          5     3249      PC 2014      Shooter
## 1075          5     1619      PC 2014   Simulation
## 1076          5     4275     PS3 2015   Simulation
## 1077          5     4706    X360 2015   Simulation
## 1078          5     5334     PS4 2015   Simulation
## 1079          5     7834    XOne 2015   Simulation
## 1080          5     1088     PS3 2006     Fighting
## 1081          5     1188     PS2 2006     Fighting
## 1082          5     1292    X360 2006     Fighting
## 1083          5     3833     PSP 2006     Fighting
## 1084          5     5506      XB 2006     Fighting
## 1085          5    10689     3DS 2011       Action
## 1086          5    10910     Wii 2011       Action
## 1087          5    11767     PS3 2011       Action
## 1088          5    12059      DS 2011       Action
## 1089          5    12386    X360 2011       Action
## 1090          5       17     PS3 2013       Action
## 1091          5       24    X360 2013       Action
## 1092          5       45     PS4 2014       Action
## 1093          5      198    XOne 2014       Action
## 1094          5     1898      PC 2015       Action
## 1095          5     8218     PS3 2011       Action
## 1096          5     9508    X360 2011       Action
## 1097          5     9542     3DS 2011       Action
## 1098          5    10168      DS 2011       Action
## 1099          5    10490     Wii 2011       Action
## 1100          5      208     PS2 2007         Misc
## 1101          5      231     Wii 2007         Misc
## 1102          5      238    X360 2007         Misc
## 1103          5      712     PS3 2007         Misc
## 1104          5    16048      PC 2007         Misc
## 1105          5     2544     PS4 2015         Misc
## 1106          5     3944    XOne 2015         Misc
## 1107          5     6177     PS3 2015         Misc
## 1108          5     6922    X360 2015         Misc
## 1109          5     8106    WiiU 2015         Misc
## 1110          5      344     Wii 2008         Misc
## 1111          5      567    X360 2008         Misc
## 1112          5      888     PS3 2008         Misc
## 1113          5      964     PS2 2008         Misc
## 1114          5    14284      PC 2009         Misc
## 1115          5    11144     Wii 2011       Action
## 1116          5    10467     PS3 2011       Action
## 1117          5    10692    X360 2011       Action
## 1118          5     9983      DS 2011       Action
## 1119          5    10161     3DS 2011       Action
## 1120          5     3639     Wii 2010       Action
## 1121          5     4302    X360 2010       Action
## 1122          5     4598      DS 2010       Action
## 1123          5     4661     PS3 2010       Action
## 1124          5    10645      PC 2010       Action
## 1125          5     5309     Wii 2011       Action
## 1126          5     5375    X360 2011       Action
## 1127          5     5405     PS3 2011       Action
## 1128          5     6878      DS 2011       Action
## 1129          5    10653      PC 2011       Action
## 1130          5     2041     PS2 2004       Action
## 1131          5     3870     GBA 2004       Action
## 1132          5     5081      GC 2004       Action
## 1133          5     7914      XB 2004       Action
## 1134          5    13907      PC 2004       Action
## 1135          5     6268     Wii 2014    Adventure
## 1136          5     6766     3DS 2014    Adventure
## 1137          5     7660    X360 2014    Adventure
## 1138          5     9450     PS3 2014    Adventure
## 1139          5    11037    WiiU 2014    Adventure
## 1140          5     1372    X360 2013     Fighting
## 1141          5     1592     PS3 2013     Fighting
## 1142          5     2395     PS4 2013     Fighting
## 1143          5     7610    WiiU 2013     Fighting
## 1144          5     9159     PSV 2013     Fighting
## 1145          5     4825     PS3 2010       Action
## 1146          5     5042     PSP 2010       Action
## 1147          5     5371      DS 2010       Action
## 1148          5     5462     Wii 2010       Action
## 1149          5     6284    X360 2010       Action
## 1150          5     2894      PS 1997         Misc
## 1151          5     3390     Wii 2010         Misc
## 1152          5     4103     PS2 2003         Misc
## 1153          5     7884      DS 2010         Misc
## 1154          5    10632     N64 1998         Misc
## 1155          5     4408     Wii 2009         Misc
## 1156          5     5330     PS2 2003         Misc
## 1157          5     9710    X360 2009         Misc
## 1158          5    10389     PS3 2009         Misc
## 1159          5    11179      XB 2004         Misc
## 1160          5     3174     PS4 2015       Action
## 1161          5     3560    X360 2015       Action
## 1162          5     3709     PS3 2015       Action
## 1163          5     3924    WiiU 2015       Action
## 1164          5     5109    XOne 2015       Action
## 1165          5      365     PS2 2005       Action
## 1166          5     1371      GC 2005       Action
## 1167          5     1760      XB 2005       Action
## 1168          5     1798     GBA 2005       Action
## 1169          5    15790      PC 2005       Action
## 1170          5     1507     PS2 2005     Platform
## 1171          5     2326     GBA 2005     Platform
## 1172          5     3067      GC 2005     Platform
## 1173          5     5777      DS 2005     Platform
## 1174          5     6225      XB 2005     Platform
## 1175          5      517    X360 2009       Sports
## 1176          5      670     PS3 2009       Sports
## 1177          5     2126     PS2 2009       Sports
## 1178          5     2803     Wii 2009       Sports
## 1179          5     3090     PSP 2009       Sports
## 1180          5      558    X360 2010       Sports
## 1181          5      664     PS3 2010       Sports
## 1182          5     3995     PS2 2010       Sports
## 1183          5     5116     PSP 2010       Sports
## 1184          5     2778     Wii 2010       Sports
## 1185          5      239     PS2 2004       Sports
## 1186          5     1040      XB 2004       Sports
## 1187          5     2915      GC 2004       Sports
## 1188          5     4931     GBA 2004       Sports
## 1189          5     6509      DS 2004       Sports
## 1190          5     4413     PS2 2006       Sports
## 1191          5     5102    X360 2006       Sports
## 1192          5     5572      XB 2006       Sports
## 1193          5     8242      GC 2006       Sports
## 1194          5     9870     PSP 2005       Sports
## 1195          5     3314    X360 2008       Sports
## 1196          5    14100     PSP 2007       Sports
## 1197          5     5781     PS3 2008       Sports
## 1198          5     8919     PS2 2008       Sports
## 1199          5     9260     Wii 2008       Sports
## 1200          5     3316    X360 2009       Sports
## 1201          5     6425     Wii 2009       Sports
## 1202          5     8243     PS3 2009       Sports
## 1203          5     8347     PS2 2009       Sports
## 1204          5    11286     PSP 2009       Sports
## 1205          5     2670     PS2 2005     Fighting
## 1206          5     5014      GC 2005     Fighting
## 1207          5     5651     PSP 2005     Fighting
## 1208          5     6140      XB 2005     Fighting
## 1209          5    11281      DS 2005     Fighting
## 1210          5     6248     Wii 2010       Action
## 1211          5     7154      DS 2010       Action
## 1212          5     8202     PS3 2010       Action
## 1213          5     8790    X360 2010       Action
## 1214          5    10663     3DS 2011       Action
## 1215          5      396     PS4 2015       Action
## 1216          5     2896    XOne 2015       Action
## 1217          5     2935     PS3 2015       Action
## 1218          5     7376    X360 2015       Action
## 1219          5    11704      PC 2015       Action
## 1220          5     2989     PS4 2014       Action
## 1221          5     4427     PS3 2013       Action
## 1222          5     5184    X360 2013       Action
## 1223          5     5741    XOne 2014       Action
## 1224          5     7746      PC 2013       Action
## 1225          5      472     PS4 2014       Action
## 1226          5     1484    XOne 2014       Action
## 1227          5     3183     PS3 2014       Action
## 1228          5     3731    X360 2014       Action
## 1229          5     5217      PC 2014       Action
## 1230          5     2287    X360 2015    Adventure
## 1231          5     2952     PS3 2015    Adventure
## 1232          5     3037     PS4 2015    Adventure
## 1233          5     3712    XOne 2015    Adventure
## 1234          5    11592      PC 2015    Adventure
## 1235          5     5105     Wii 2009       Action
## 1236          5     5282     PS3 2009       Action
## 1237          5     5292      DS 2009       Action
## 1238          5     5964    X360 2009       Action
## 1239          5    15444      PC 2009       Action
## 1240          5     6860     PS2 2007       Racing
## 1241          5     7600    X360 2007       Racing
## 1242          5     8503     Wii 2007       Racing
## 1243          5     9174      DS 2007       Racing
## 1244          5    16357      PC 2007       Racing
## 1245          5     3622     Wii 2010       Racing
## 1246          5     5067      DS 2010       Racing
## 1247          5     6784     PS3 2010       Racing
## 1248          5     9881    X360 2010       Racing
## 1249          5    11316     PSP 2010       Racing
## 1250          5      509     PS3 2011     Fighting
## 1251          5      565     GEN 1992     Fighting
## 1252          5      786    X360 2011     Fighting
## 1253          5     2697     PSV 2012     Fighting
## 1254          5    16002      PC 1994     Fighting
## 1255          5     6359     PS2 2000       Racing
## 1256          5     7967     Wii 2009       Racing
## 1257          5    10874      XB 2002       Racing
## 1258          5    12775     GBA 2002       Racing
## 1259          5    14168     PSP 2006       Racing
## 1260          5     5615     PS4 2014       Action
## 1261          5     8574    XOne 2014       Action
## 1262          5     8767     PS3 2014       Action
## 1263          5    10308    X360 2014       Action
## 1264          5    12690      PC 2014       Action
## 1265          5      522      PC 1994    Adventure
## 1266          5    10498      DS 2007    Adventure
## 1267          5    11742      PS 1995    Adventure
## 1268          5    12763     SAT 1994    Adventure
## 1269          5    15944     PSP 2006    Adventure
## 1270          5     2134    X360 2009       Sports
## 1271          5     2460     PS3 2009       Sports
## 1272          5     4797     PS2 2009       Sports
## 1273          5     4888     Wii 2009       Sports
## 1274          5     5578     PSP 2009       Sports
## 1275          5      585    X360 2011       Sports
## 1276          5      778     PS3 2011       Sports
## 1277          5     5222     Wii 2011       Sports
## 1278          5     6253     PSP 2011       Sports
## 1279          5     8580      PC 2011       Sports
## 1280          5      469    X360 2012       Sports
## 1281          5      624     PS3 2012       Sports
## 1282          5     4330     Wii 2012       Sports
## 1283          5     9228    WiiU 2012       Sports
## 1284          5    14414      PC 2012       Sports
## 1285          5      315     PS4 2015       Sports
## 1286          5      683    XOne 2015       Sports
## 1287          5     2141    X360 2015       Sports
## 1288          5     2579     PS3 2015       Sports
## 1289          5    10949      PC 2015       Sports
## 1290          5     2835     PS2 2007       Sports
## 1291          5     3178     PS3 2007       Sports
## 1292          5     3836    X360 2007       Sports
## 1293          5     5795     PSP 2007       Sports
## 1294          5     8013     Wii 2007       Sports
## 1295          5      911     PS4 2013       Racing
## 1296          5     1343     PS3 2013       Racing
## 1297          5     2480    X360 2013       Racing
## 1298          5     3012    XOne 2013       Racing
## 1299          5     6355      PC 2013       Racing
## 1300          5      105     PS2 2003       Racing
## 1301          5     1047      XB 2003       Racing
## 1302          5     1663      GC 2003       Racing
## 1303          5     5970     GBA 2003       Racing
## 1304          5    13227      PC 2003       Racing
## 1305          5      837     PS3 2011       Action
## 1306          5     1413    X360 2011       Action
## 1307          5     5153      PC 2011       Action
## 1308          5     6006     Wii 2011       Action
## 1309          5     7804     3DS 2011       Action
## 1310          5     3746     PS2 2006     Platform
## 1311          5     5345      GC 2006     Platform
## 1312          5     6214      DS 2006     Platform
## 1313          5     6326     GBA 2006     Platform
## 1314          5    10671      XB 2006     Platform
## 1315          5      615     PS2 2008       Sports
## 1316          5      781     PS3 2008       Sports
## 1317          5     2059    X360 2008       Sports
## 1318          5     4357     Wii 2009       Sports
## 1319          5     2588     PSP 2009       Sports
## 1320          5     7382     PS2 2005     Platform
## 1321          5     8184      DS 2005     Platform
## 1322          5     8926      XB 2005     Platform
## 1323          5    10842      GC 2005     Platform
## 1324          5    11674     PSP 2005     Platform
## 1325          5     3416    X360 2013      Shooter
## 1326          5     4412     PS3 2013      Shooter
## 1327          5     6408     PS4 2015      Shooter
## 1328          5     8430    XOne 2015      Shooter
## 1329          5    13299      PC 2013      Shooter
## 1330          5     5573     PS2 2004         Misc
## 1331          5     7008     PSP 2005         Misc
## 1332          5     9042     Wii 2006         Misc
## 1333          5    11712      XB 2004         Misc
## 1334          5    13003      GC 2005         Misc
## 1335          5     4106     Wii 2008         Misc
## 1336          5     7261     PS3 2009         Misc
## 1337          5     9866    X360 2009         Misc
## 1338          5    10164     PSP 2008         Misc
## 1339          5    10734     3DS 2011         Misc
## 1340          5     1762    X360 2014      Shooter
## 1341          5     2690     PS3 2014      Shooter
## 1342          5     2974    XOne 2014      Shooter
## 1343          5     3289     PS4 2014      Shooter
## 1344          5    15141      PC 2014      Shooter
## 1345          5     2124     PS3 2013       Action
## 1346          5     6751    X360 2013       Action
## 1347          5     7971     3DS 2013       Action
## 1348          5     8319     PSP 2013       Action
## 1349          5    10060      PC 2013       Action
## 1350          5     2703     PS4 2014       Sports
## 1351          5     3253     PS3 2014       Sports
## 1352          5     8529    X360 2014       Sports
## 1353          5     9315    XOne 2014       Sports
## 1354          5    12229      PC 2014       Sports
## 1355          5     2645     PS4 2015       Sports
## 1356          5     4354     PS3 2015       Sports
## 1357          5     9570    X360 2015       Sports
## 1358          5    10558    XOne 2015       Sports
## 1359          5    13568      PC 2015       Sports
## 1360          5      439     PS3 2012      Shooter
## 1361          5      859    X360 2012      Shooter
## 1362          5    12135     PS4 2016      Shooter
## 1363          5    13501      PC 2012      Shooter
## 1364          5    13952    XOne 2016      Shooter
## 1365          5     2364     3DS 2012       Action
## 1366          5     2585     PS3 2013       Action
## 1367          5     6367    X360 2013       Action
## 1368          5     7692    WiiU 2013       Action
## 1369          5    13808      PC 2013       Action
## 1370          5     3713     PS4 2015       Action
## 1371          5     5587     PS3 2015       Action
## 1372          5     9430     PSV 2015       Action
## 1373          5    10754    XOne 2015       Action
## 1374          5    11157    X360 2015       Action
## 1375          5     7311     PS4 2015       Racing
## 1376          5    10704    XOne 2015       Racing
## 1377          5    11363     PS3 2015       Racing
## 1378          5    14669      PC 2015       Racing
## 1379          5    15079    X360 2015       Racing
## 1380          5     2076     PS3 2013         Misc
## 1381          5     2201    X360 2013         Misc
## 1382          5     3072      PC 2013         Misc
## 1383          5     3275     PS4 2014         Misc
## 1384          5     4816    XOne 2014         Misc
## 1385          5     9395     PS3 2015       Sports
## 1386          5    10312     PS4 2015       Sports
## 1387          5    11243    XOne 2015       Sports
## 1388          5    12308     PSV 2015       Sports
## 1389          5    12912    X360 2015       Sports
## 1390          5     1062    X360 2013       Action
## 1391          5     1519     PS3 2013       Action
## 1392          5     4977     PS4 2015       Action
## 1393          5     7609    XOne 2015       Action
## 1394          5     7874      PC 2013       Action
## 1395          5     6699     PS2 2005     Platform
## 1396          5     8196     GBA 2005     Platform
## 1397          5     8774      GC 2005     Platform
## 1398          5    10901      DS 2005     Platform
## 1399          5    11723      XB 2005     Platform
## 1400          5     8544     PS2 2005    Adventure
## 1401          5    10828      GC 2005    Adventure
## 1402          5    11297     GBA 2005    Adventure
## 1403          5    13065      DS 2005    Adventure
## 1404          5    16072      XB 2005    Adventure
## 1405          5      497    X360 2008       Sports
## 1406          5     1948     Wii 2008       Sports
## 1407          5     2762      DS 2008       Sports
## 1408          5     4792     PS3 2008       Sports
## 1409          5     5008     PS2 2008       Sports
## 1410          5     3055     PS3 2008       Sports
## 1411          5     5643     PSP 2008       Sports
## 1412          5     5779     PS2 2008       Sports
## 1413          5     7026      DS 2008       Sports
## 1414          5     2530    X360 2008       Sports
## 1415          5     6336     PS4 2014    Adventure
## 1416          5    11529    XOne 2014    Adventure
## 1417          5    11576     PS3 2014    Adventure
## 1418          5    12347    X360 2014    Adventure
## 1419          5    13052      PC 2014    Adventure
## 1420          5     4006     PS2 2005       Action
## 1421          5     5489     GBA 2005       Action
## 1422          5     7300      GC 2005       Action
## 1423          5     8067      DS 2005       Action
## 1424          5    10971      XB 2005       Action
## 1425          5     2948    X360 2007       Action
## 1426          5     4087     PS2 2007       Action
## 1427          5     5686     PSP 2007       Action
## 1428          5     6069     Wii 2007       Action
## 1429          5     5840      DS 2007       Action
## 1430          5      767      PC 1992   Simulation
## 1431          5     1647      PS 1996   Simulation
## 1432          5     4076    SNES 1995   Simulation
## 1433          5     6231     SAT 1994   Simulation
## 1434          5    10416     GBA 2003   Simulation
## 1435          5      572     Wii 2012       Action
## 1436          5     1499    X360 2012       Action
## 1437          5     1891     PS3 2012       Action
## 1438          5     4944    WiiU 2012       Action
## 1439          5     9178     3DS 2012       Action
## 1440          5      513     Wii 2011       Action
## 1441          5     2137    X360 2011       Action
## 1442          5     2188     PS3 2011       Action
## 1443          5     3541     3DS 2011       Action
## 1444          5    10782      PC 2011       Action
## 1445          5     1950     PS3 2012       Action
## 1446          5     2358    X360 2012       Action
## 1447          5     4517     PS4 2014       Action
## 1448          5     7688    XOne 2014       Action
## 1449          5     9678      PC 2012       Action
## 1450          5     6673    X360 2011       Action
## 1451          5     7054     PS3 2011       Action
## 1452          5     9044      DS 2011       Action
## 1453          5     9933     3DS 2011       Action
## 1454          5    11101     Wii 2011       Action
## 1455          5     1205     PS3 2010       Action
## 1456          5     1295    X360 2010       Action
## 1457          5     2590     Wii 2010       Action
## 1458          5     6975      DS 2010       Action
## 1459          5    14532      PC 2010       Action
## 1460          5     4557     PS3 2010       Action
## 1461          5     5763    X360 2010       Action
## 1462          5     8183      DS 2010       Action
## 1463          5     9491     PSP 2010       Action
## 1464          5    12205      PC 2010       Action
## 1465          5     3932     PS2 2007       Sports
## 1466          5     5101     Wii 2007       Sports
## 1467          5     6396    X360 2007       Sports
## 1468          5     8556     PS3 2007       Sports
## 1469          5    10334     PSP 2007       Sports
## 1470          5     4810     PS2 2008       Action
## 1471          5     5163     Wii 2008       Action
## 1472          5     7391      DS 2008       Action
## 1473          5     8070    X360 2008       Action
## 1474          5     8233     PS3 2008       Action
## 1475          5     4506     PS2 2005       Action
## 1476          5     7615      XB 2005       Action
## 1477          5     8024      DS 2005       Action
## 1478          5     6197      GC 2005       Action
## 1479          5     3051     GBA 2005       Action
## 1480          5      959     PS4 2014       Action
## 1481          5     2267     PS3 2014       Action
## 1482          5     3100    XOne 2014       Action
## 1483          5     4014    X360 2014       Action
## 1484          5     6300      PC 2014       Action
## 1485          5     3454     Wii 2008     Platform
## 1486          5     4228      DS 2008     Platform
## 1487          5     4259     PS3 2008     Platform
## 1488          5     4826     PS2 2008     Platform
## 1489          5     5610    X360 2008     Platform
## 1490          5     6852     Wii 2010       Action
## 1491          5     8300     PS3 2010       Action
## 1492          5     9755      DS 2010       Action
## 1493          5     9944     PSP 2010       Action
## 1494          5    12760     PS2 2010       Action
## 1495          5     6966      DS 2013     Platform
## 1496          5     9452    X360 2013     Platform
## 1497          5    10177     PS3 2013     Platform
## 1498          5    10448     Wii 2013     Platform
## 1499          5    11152    WiiU 2013     Platform
## 1500          5     6950     PS4 2014    Adventure
## 1501          5     7218     PS3 2014    Adventure
## 1502          5     8927     PSV 2014    Adventure
## 1503          5     9199    XOne 2014    Adventure
## 1504          5     9892    X360 2014    Adventure
## 1505          5     7496     PS4 2014    Adventure
## 1506          5    10470     PS3 2014    Adventure
## 1507          5    11846    XOne 2014    Adventure
## 1508          5    11939     PSV 2014    Adventure
## 1509          5    13683    X360 2011    Adventure
## 1510          5     2454     PS4 2014       Action
## 1511          5     4311    XOne 2014       Action
## 1512          5     4802     PS3 2014       Action
## 1513          5     5955    X360 2014       Action
## 1514          5    10226      PC 2014       Action
## 1515          5     8489     Wii 2011       Action
## 1516          5     8806     PS3 2011       Action
## 1517          5     8954    X360 2011       Action
## 1518          5     9594      DS 2011       Action
## 1519          5    10739     3DS 2011       Action
## 1520          5     4347     Wii 2007     Strategy
## 1521          5     4642     PS2 2007     Strategy
## 1522          5     8463    X360 2007     Strategy
## 1523          5    10438     PSP 2007     Strategy
## 1524          5    13442      DS 2007     Strategy
## 1525          5     2334     PS2 2005       Sports
## 1526          5     4138      XB 2005       Sports
## 1527          5     5778    X360 2005       Sports
## 1528          5     7703     PSP 2005       Sports
## 1529          5    10355      GC 2005       Sports
## 1530          5     1886     Wii 2009       Sports
## 1531          5     2609     PS3 2009       Sports
## 1532          5     3114    X360 2009       Sports
## 1533          5     6540     PS2 2009       Sports
## 1534          5     6917     PSP 2009       Sports
## 1535          5     2280    X360 2008     Strategy
## 1536          5     3099     PS3 2008     Strategy
## 1537          5     9856     PSP 2008     Strategy
## 1538          5    10946      DS 2008     Strategy
## 1539          5    15090      PC 2009     Strategy
## 1540          5     2412     Wii 2007       Action
## 1541          5     3524     PSP 2007       Action
## 1542          5     4010     PS2 2007       Action
## 1543          5     4855    X360 2007       Action
## 1544          5    14041      PC 2007       Action
## 1545          5     3057     PS2 2007       Sports
## 1546          5     3590    X360 2007       Sports
## 1547          5     4389     PS3 2007       Sports
## 1548          5     6646     Wii 2007       Sports
## 1549          5     7066      DS 2007       Sports
## 1550          5      773      DS 2010       Action
## 1551          5     1369     Wii 2010       Action
## 1552          5     1848     PS3 2010       Action
## 1553          5     2652    X360 2010       Action
## 1554          5     3078     PSP 2010       Action
## 1555          5     7386     PS4 2014       Action
## 1556          5     8330    X360 2014       Action
## 1557          5     9640     PS3 2014       Action
## 1558          5    10331    XOne 2014       Action
## 1559          5    12184    WiiU 2014       Action
## 1560          5     7256     PS4 2015       Action
## 1561          5     9371    XOne 2015       Action
## 1562          5    10238     PS3 2015       Action
## 1563          5    10963    X360 2015       Action
## 1564          5    14442      PC 2015       Action
## 1565          5     1835     PS2 2007       Action
## 1566          5     3091     PSP 2007       Action
## 1567          5     3329    X360 2007       Action
## 1568          5     3413     Wii 2007       Action
## 1569          5     4791     PS3 2007       Action
## 1570          5     2829     PS2 2005       Action
## 1571          5     4882      XB 2005       Action
## 1572          5     5097      GC 2005       Action
## 1573          5     5824     GBA 2005       Action
## 1574          5     8707      DS 2005       Action
## 1575          5     9756     PS3 2015       Sports
## 1576          5    11714     PSV 2015       Sports
## 1577          5    13014     PS4 2015       Sports
## 1578          5    15812    X360 2015       Sports
## 1579          5    16040    XOne 2015       Sports
## 1580          5     1857     PS3 2010     Fighting
## 1581          5     2357    X360 2010     Fighting
## 1582          5     2893     PSP 2010     Fighting
## 1583          5     4171     Wii 2010     Fighting
## 1584          5     5072     PS2 2010     Fighting
## 1585          5     1581      PS 1998         Misc
## 1586          5     2078     Wii 2010         Misc
## 1587          5     4508      DS 2010         Misc
## 1588          5     6689     N64 1997         Misc
## 1589          5     2175     PS2 2003         Misc
## 1590          5      250     PS2 2006       Sports
## 1591          5     2413     PSP 2006       Sports
## 1592          5     8217      DS 2006       Sports
## 1593          5    10419    X360 2006       Sports
## 1594          5    16423      PC 2006       Sports
## 1595          5     5461     Wii 2011         Misc
## 1596          5     6384    X360 2011         Misc
## 1597          5     6407      DS 2011         Misc
## 1598          5     7075     3DS 2011         Misc
## 1599          5     9977     PS3 2011         Misc
## 1600          5     1170     PS4 2014      Shooter
## 1601          5     3020    XOne 2014      Shooter
## 1602          5     3945     PS3 2014      Shooter
## 1603          5     4246      PC 2014      Shooter
## 1604          5     4704    X360 2014      Shooter
## 1605          5     7070     PS2 2007         Misc
## 1606          5    10582     PS3 2007         Misc
## 1607          5    11534    X360 2007         Misc
## 1608          5    12482      DS 2007         Misc
## 1609          5    14954     PSP 2007         Misc
## 1610          4     1614     PS3 2010       Sports
## 1611          4     2426    X360 2010       Sports
## 1612          4     4113     PSP 2010       Sports
## 1613          4     4525     Wii 2010       Sports
## 1614          4     6239     Wii 2008         Misc
## 1615          4     6823     PS3 2008         Misc
## 1616          4     7121    X360 2008         Misc
## 1617          4     8705     PS2 2008         Misc
## 1618          4     9010     3DS 2013       Action
## 1619          4    11425    X360 2013       Action
## 1620          4    13211     PS3 2013       Action
## 1621          4    14105    WiiU 2013       Action
## 1622          4     2685     PS2 2002       Sports
## 1623          4     6593      XB 2002       Sports
## 1624          4     8868      GC 2002       Sports
## 1625          4     8890     GBA 2002       Sports
## 1626          4     4595     PS2 2003       Sports
## 1627          4     9564      XB 2003       Sports
## 1628          4    11654      GC 2003       Sports
## 1629          4    11906     GBA 2003       Sports
## 1630          4     4060    X360 2008    Adventure
## 1631          4     8041     Wii 2008    Adventure
## 1632          4    12419     PS2 2008    Adventure
## 1633          4    16396      PC 2008    Adventure
## 1634          4      129     PS3 2012       Action
## 1635          4      173    X360 2012       Action
## 1636          4     2204      PC 2012       Action
## 1637          4     5201    WiiU 2012       Action
## 1638          4    10188     PS2 2009       Action
## 1639          4    10254     Wii 2009       Action
## 1640          4    10508      DS 2009       Action
## 1641          4    13799     PSP 2009       Action
## 1642          4     7499     PS4 2016       Action
## 1643          4     9440     PSV 2016       Action
## 1644          4    12565     PS3 2016       Action
## 1645          4    14612    XOne 2016       Action
## 1646          4     3963      GC 2006    Adventure
## 1647          4     5436      DS 2006    Adventure
## 1648          4     6145     Wii 2006    Adventure
## 1649          4    10197     PSP 2006    Adventure
## 1650          4     4606     PS2 2007       Action
## 1651          4     5365      DS 2007       Action
## 1652          4     6557     Wii 2007       Action
## 1653          4     9269    X360 2007       Action
## 1654          4     3586     GBA 2002       Sports
## 1655          4     6592      GC 2002       Sports
## 1656          4    14825     Wii 2007       Sports
## 1657          4    15031      DS 2007       Sports
## 1658          4     1600     PS2 2001 Role-Playing
## 1659          4     7716      XB 2002 Role-Playing
## 1660          4     9156      GC 2002 Role-Playing
## 1661          4    14780     GBA 2004 Role-Playing
## 1662          4    12433     Wii 2015       Action
## 1663          4    14046     3DS 2015       Action
## 1664          4    15942     PS3 2015       Action
## 1665          4    16107    WiiU 2015       Action
## 1666          4     4317     Wii 2007    Adventure
## 1667          4     5725      DS 2007    Adventure
## 1668          4     7078     GBA 2007    Adventure
## 1669          4     9913     PS2 2007    Adventure
## 1670          4     9970      GC 2006       Action
## 1671          4    10836     PS2 2006       Action
## 1672          4    13239     GBA 2006       Action
## 1673          4    13591     Wii 2006       Action
## 1674          4     3602     PS2 2005       Action
## 1675          4     7437      XB 2005       Action
## 1676          4     8329     GBA 2005       Action
## 1677          4     8937      GC 2005       Action
## 1678          4      160     PS3 2011       Action
## 1679          4      223    X360 2011       Action
## 1680          4     3791      PC 2011       Action
## 1681          4     4995    WiiU 2012       Action
## 1682          4      656     PS3 2013       Action
## 1683          4      887    X360 2013       Action
## 1684          4     5567    WiiU 2013       Action
## 1685          4     5584      PC 2013       Action
## 1686          4     5284     PS2 2003       Action
## 1687          4    10086      XB 2003       Action
## 1688          4    12164     GBA 2003       Action
## 1689          4    12478      GC 2003       Action
## 1690          4     4372      DS 2007       Action
## 1691          4     5393     Wii 2007       Action
## 1692          4     8322    X360 2007       Action
## 1693          4    10611     PS2 2007       Action
## 1694          4     9173     PS3 2010       Puzzle
## 1695          4     9253    X360 2010       Puzzle
## 1696          4    11379      PC 2010       Puzzle
## 1697          4     5173      DS 2010       Puzzle
## 1698          4     2180      DS 2008       Action
## 1699          4     2558     Wii 2008       Action
## 1700          4     3431     PSP 2008       Action
## 1701          4     3523     PS2 2008       Action
## 1702          4     1057      DS 2007       Action
## 1703          4     1612     Wii 2007       Action
## 1704          4     2479     PS2 2007       Action
## 1705          4     2847     PSP 2007       Action
## 1706          4     2472     PS2 2002       Racing
## 1707          4     7741      XB 2002       Racing
## 1708          4    11465      GC 2003       Racing
## 1709          4    13950     GBA 2005       Racing
## 1710          4     4514     PS2 2003       Action
## 1711          4     7424      GC 2003       Action
## 1712          4    11166     GBA 2003       Action
## 1713          4    12276      XB 2003       Action
## 1714          4    10210      GC 2006      Shooter
## 1715          4    11963    X360 2006      Shooter
## 1716          4    12340      DS 2006      Shooter
## 1717          4    13484     Wii 2007      Shooter
## 1718          4     9263     PS4 2015       Action
## 1719          4    11995     PSV 2015       Action
## 1720          4    12521    XOne 2015       Action
## 1721          4    13832     PS3 2015       Action
## 1722          4     2022     NES 1985       Puzzle
## 1723          4     8687      DS 2005       Puzzle
## 1724          4     8733     PSP 2006       Puzzle
## 1725          4    16491     Wii 2008       Puzzle
## 1726          4      454    X360 2012      Shooter
## 1727          4      705     PS3 2012      Shooter
## 1728          4     2226      PC 2012      Shooter
## 1729          4     2488     PSV 2014      Shooter
## 1730          4     7209     Wii 2010    Adventure
## 1731          4     7921     PS3 2010    Adventure
## 1732          4     8357    X360 2010    Adventure
## 1733          4    13793      PC 2010    Adventure
## 1734          4     3577     PS2 2004       Sports
## 1735          4     8098      XB 2004       Sports
## 1736          4    12200      GC 2004       Sports
## 1737          4    12803     GBA 2004       Sports
## 1738          4     4992     Wii 2008       Sports
## 1739          4     8154     PS2 2008       Sports
## 1740          4     9433    X360 2008       Sports
## 1741          4     9559     PS3 2008       Sports
## 1742          4     3447     Wii 2010       Sports
## 1743          4     5516     PS3 2010       Sports
## 1744          4     5682    X360 2010       Sports
## 1745          4     9617      DS 2010       Sports
## 1746          4     5753     Wii 2009       Sports
## 1747          4     6803    X360 2009       Sports
## 1748          4     7057     PS3 2009       Sports
## 1749          4     9123     PS2 2009       Sports
## 1750          4      551    X360 2006      Shooter
## 1751          4      713     Wii 2006      Shooter
## 1752          4     1240     PS3 2006      Shooter
## 1753          4     1921     PS2 2006      Shooter
## 1754          4       71    X360 2007      Shooter
## 1755          4      121     PS3 2007      Shooter
## 1756          4     1771      PC 2007      Shooter
## 1757          4     1946      DS 2007      Shooter
## 1758          4       35     PS3 2012      Shooter
## 1759          4       36    X360 2012      Shooter
## 1760          4     1219      PC 2012      Shooter
## 1761          4     4556    WiiU 2012      Shooter
## 1762          4       30    X360 2011      Shooter
## 1763          4       38     PS3 2011      Shooter
## 1764          4     1039      PC 2011      Shooter
## 1765          4     2352     Wii 2011      Shooter
## 1766          4    14312      DS 2012    Adventure
## 1767          4    14796     PS3 2012    Adventure
## 1768          4    14826      PC 2012    Adventure
## 1769          4    15999     Wii 2012    Adventure
## 1770          4     2997      DS 2007       Racing
## 1771          4     4692     PS3 2007       Racing
## 1772          4     6742     PS2 2007       Racing
## 1773          4     8985    X360 2007       Racing
## 1774          4     8366     PS2 2004       Action
## 1775          4    12037      GC 2004       Action
## 1776          4    12689      XB 2004       Action
## 1777          4    13699     GBA 2004       Action
## 1778          4     7815     Wii 2009       Action
## 1779          4     8037      DS 2009       Action
## 1780          4     8476     PS3 2009       Action
## 1781          4     8736    X360 2009       Action
## 1782          4     5348     PS2 2005    Adventure
## 1783          4     5854     GBA 2005    Adventure
## 1784          4     8161      GC 2005    Adventure
## 1785          4    10278      XB 2005    Adventure
## 1786          4    13780     PS2 2006    Adventure
## 1787          4    13816     PSP 2008    Adventure
## 1788          4    14244     PS3 2011    Adventure
## 1789          4    14772    X360 2008    Adventure
## 1790          4      874     PS2 2003       Racing
## 1791          4     4273     GBA 2003       Racing
## 1792          4     5707      XB 2003       Racing
## 1793          4     6550      GC 2003       Racing
## 1794          4     3703     PS2 2005       Racing
## 1795          4     6476     PSP 2005       Racing
## 1796          4     8533      GC 2005       Racing
## 1797          4     9636      XB 2005       Racing
## 1798          4     6453     Wii 2010       Action
## 1799          4     8485     PS3 2010       Action
## 1800          4     9202    X360 2010       Action
## 1801          4    12549      PC 2010       Action
## 1802          4     8502     GBA 2006       Action
## 1803          4     8897      GC 2006       Action
## 1804          4     9772     PS2 2006       Action
## 1805          4    14544      XB 2006       Action
## 1806          4     1957    X360 2009         Misc
## 1807          4     2293     PS3 2009         Misc
## 1808          4     2660     Wii 2009         Misc
## 1809          4     5690     PS2 2009         Misc
## 1810          4     1412     PS2 2001       Sports
## 1811          4     6238      GC 2001       Sports
## 1812          4     7671      XB 2001       Sports
## 1813          4     7824     GBA 2001       Sports
## 1814          4     1434     PS2 2002      Shooter
## 1815          4     2836      XB 2002      Shooter
## 1816          4     9121      GC 2002      Shooter
## 1817          4    15875     GBA 2004      Shooter
## 1818          4     4166     PS3 2013       Action
## 1819          4     4265    X360 2013       Action
## 1820          4     6261     PS4 2015       Action
## 1821          4     9959    XOne 2015       Action
## 1822          4     1971    2600 1980         Misc
## 1823          4     4798     PS2 2002         Misc
## 1824          4    10287      GC 2002         Misc
## 1825          4    11083      XB 2002         Misc
## 1826          4      155     PS4 2014      Shooter
## 1827          4      411    XOne 2014      Shooter
## 1828          4      873    X360 2014      Shooter
## 1829          4     1026     PS3 2014      Shooter
## 1830          4      907     PS4 2015      Shooter
## 1831          4     1739    XOne 2015      Shooter
## 1832          4     4700     PS3 2015      Shooter
## 1833          4     5004    X360 2015      Shooter
## 1834          4     1394     PS3 2011      Shooter
## 1835          4     1400    X360 2011      Shooter
## 1836          4     3432      PC 2011      Shooter
## 1837          4     9885    WiiU 2013      Shooter
## 1838          4     1164     PS3 2008       Action
## 1839          4     1449    X360 2008       Action
## 1840          4    10906     PS4 2015       Action
## 1841          4    13640      PC 2008       Action
## 1842          4     1673     Wii 2008         Misc
## 1843          4     3967     PS2 2008         Misc
## 1844          4     4554    X360 2008         Misc
## 1845          4     4996     PS3 2008         Misc
## 1846          4     3366     Wii 2008         Misc
## 1847          4     4386     PS2 2008         Misc
## 1848          4     4783     PS3 2008         Misc
## 1849          4    10752    X360 2009         Misc
## 1850          4     2941     GBA 2005     Platform
## 1851          4     3104     PS2 2005     Platform
## 1852          4     6328      GC 2005     Platform
## 1853          4     9206      XB 2005     Platform
## 1854          4     8941      PS 2000     Platform
## 1855          4    10633     N64 2000     Platform
## 1856          4    11326     PS2 2000     Platform
## 1857          4    13478      GC 2002     Platform
## 1858          4     5655     PS2 2003       Sports
## 1859          4     6114     GBA 2003       Sports
## 1860          4     9877      GC 2003       Sports
## 1861          4    10191      XB 2003       Sports
## 1862          4     7950     Wii 2007       Action
## 1863          4    11508    X360 2007       Action
## 1864          4    13523      GC 2007       Action
## 1865          4    15215      DS 2007       Action
## 1866          4     6771      DS 2013   Simulation
## 1867          4     7410    WiiU 2013   Simulation
## 1868          4     8371     Wii 2013   Simulation
## 1869          4    11850     3DS 2013   Simulation
## 1870          4     2520     PS3 2013       Action
## 1871          4     4431    X360 2013       Action
## 1872          4     5874     PS4 2015       Action
## 1873          4     9373    XOne 2015       Action
## 1874          4     9918     PS4 2015       Sports
## 1875          4    13925    XOne 2015       Sports
## 1876          4    15287     PS3 2014       Sports
## 1877          4    15991    X360 2014       Sports
## 1878          4     1979     PS4 2015     Fighting
## 1879          4     3630     PS3 2015     Fighting
## 1880          4     5701    XOne 2015     Fighting
## 1881          4     6375    X360 2015     Fighting
## 1882          4     4001     Wii 2009       Racing
## 1883          4     5165      DS 2009       Racing
## 1884          4     5940     PS3 2009       Racing
## 1885          4     6743    X360 2009       Racing
## 1886          4     2119     PS3 2011       Racing
## 1887          4     2850    X360 2011       Racing
## 1888          4     8058      PC 2011       Racing
## 1889          4     8178     Wii 2011       Racing
## 1890          4    12573    WiiU 2013       Action
## 1891          4    12853     PS3 2013       Action
## 1892          4    13946    X360 2013       Action
## 1893          4    15861      PC 2013       Action
## 1894          4     8027     PS4 2014       Action
## 1895          4    11217     PS3 2014       Action
## 1896          4    12060    XOne 2014       Action
## 1897          4    15491     PSV 2015       Action
## 1898          4     4768     PS2 2005     Platform
## 1899          4     6741      GC 2005     Platform
## 1900          4     9874     GBA 2005     Platform
## 1901          4    14978      XB 2005     Platform
## 1902          4     2019     Wii 2012       Action
## 1903          4     3749    X360 2012       Action
## 1904          4     4012     PS3 2012       Action
## 1905          4     6951    WiiU 2012       Action
## 1906          4      393     PS2 2002       Sports
## 1907          4     3194      XB 2002       Sports
## 1908          4    11431      GC 2002       Sports
## 1909          4    12883     GBA 2002       Sports
## 1910          4      378     PS2 2003       Sports
## 1911          4     2625      XB 2003       Sports
## 1912          4    11998      GC 2003       Sports
## 1913          4    13042     GBA 2003       Sports
## 1914          4      335     PS2 2004       Sports
## 1915          4     2142      XB 2004       Sports
## 1916          4     9062      GC 2004       Sports
## 1917          4    11395     GBA 2004       Sports
## 1918          4      390    SNES 1994 Role-Playing
## 1919          4      774      DS 2006 Role-Playing
## 1920          4     1387     NES 1990 Role-Playing
## 1921          4    10025     PSP 2012 Role-Playing
## 1922          4      521     GBA 2003       Action
## 1923          4      795     PS2 2003       Action
## 1924          4     2339      GC 2003       Action
## 1925          4     3063      XB 2003       Action
## 1926          4     6483     PS2 2004       Racing
## 1927          4    10766      DS 2005       Racing
## 1928          4    11161      XB 2004       Racing
## 1929          4    12561     GBA 2005       Racing
## 1930          4     4774     PS2 2005       Action
## 1931          4     7258      GC 2005       Action
## 1932          4     7648      XB 2005       Action
## 1933          4    11311     PSP 2006       Action
## 1934          4     1836     PS3 2008       Racing
## 1935          4     2374    X360 2008       Racing
## 1936          4    13667      PC 2019       Racing
## 1937          4    12809      DS 2008       Racing
## 1938          4    12640     PS3 2015    Adventure
## 1939          4    13348     PS4 2015    Adventure
## 1940          4    14198    X360 2015    Adventure
## 1941          4    14592    XOne 2015    Adventure
## 1942          4     3146     PS2 2004      Shooter
## 1943          4     4036      XB 2004      Shooter
## 1944          4     5167      GC 2004      Shooter
## 1945          4    10096      DS 2005      Shooter
## 1946          4       18     PS2 2004       Action
## 1947          4      875      XB 2005       Action
## 1948          4     2122      PC 2005       Action
## 1949          4     9829    X360 2008       Action
## 1950          4     1176     Wii 2009         Misc
## 1951          4     1800    X360 2009         Misc
## 1952          4     1830     PS2 2009         Misc
## 1953          4     1849     PS3 2009         Misc
## 1954          4     1536     Wii 2008         Misc
## 1955          4     1620    X360 2008         Misc
## 1956          4     2100     PS3 2008         Misc
## 1957          4     2602     PS2 2008         Misc
## 1958          4     2189     Wii 2009         Misc
## 1959          4     2562    X360 2009         Misc
## 1960          4     3201     PS3 2009         Misc
## 1961          4     5321     PS2 2009         Misc
## 1962          4     3325     Wii 2009         Misc
## 1963          4     4582    X360 2009         Misc
## 1964          4     5213     PS3 2009         Misc
## 1965          4     7262     PS2 2009         Misc
## 1966          4     5942    X360 2009         Misc
## 1967          4     5996     Wii 2009         Misc
## 1968          4     6223     PS3 2009         Misc
## 1969          4    10584     PS2 2009         Misc
## 1970          4     1723     PS2 2005      Shooter
## 1971          4     3861      XB 2005      Shooter
## 1972          4     8121      GC 2005      Shooter
## 1973          4     6316    X360 2005      Shooter
## 1974          4     2926      DS 2009    Adventure
## 1975          4     5302     Wii 2009    Adventure
## 1976          4     7019     PS3 2009    Adventure
## 1977          4     7361    X360 2009    Adventure
## 1978          4     2324     PS2 2003       Sports
## 1979          4     4805      GC 2003       Sports
## 1980          4     4975     GBA 2003       Sports
## 1981          4     7976      XB 2003       Sports
## 1982          4     3966     PS2 2006       Action
## 1983          4     4875    X360 2006       Action
## 1984          4     9096      XB 2006       Action
## 1985          4    14084      PC 2006       Action
## 1986          4     4837     PS2 2007       Racing
## 1987          4     6969      DS 2007       Racing
## 1988          4     8381    X360 2007       Racing
## 1989          4     8880     Wii 2007       Racing
## 1990          4     3737      DS 2010       Action
## 1991          4     4531     Wii 2010       Action
## 1992          4     8049     PS3 2010       Action
## 1993          4     9145    X360 2010       Action
## 1994          4     2930     PS3 2009   Simulation
## 1995          4     3851    X360 2009   Simulation
## 1996          4     7833     PSP 2009   Simulation
## 1997          4    12264      DS 2009   Simulation
## 1998          4     2784     Wii 2009       Action
## 1999          4     6227     PS2 2009       Action
## 2000          4     6517      DS 2009       Action
## 2001          4     6534     PSP 2009       Action
## 2002          4     2846     PS3 2010      Shooter
## 2003          4     4102    X360 2010      Shooter
## 2004          4    12152      DS 2010      Shooter
## 2005          4    15608      PC 2010      Shooter
## 2006          4      687     PS2 2004      Shooter
## 2007          4     3152      XB 2004      Shooter
## 2008          4     4628      GC 2004      Shooter
## 2009          4     8383     GBA 2003      Shooter
## 2010          4      404     PS2 2002      Shooter
## 2011          4     2506      XB 2002      Shooter
## 2012          4     2655      GC 2002      Shooter
## 2013          4     9337     GBA 2003      Shooter
## 2014          4     7974     PS3 2009      Shooter
## 2015          4     8782     Wii 2009      Shooter
## 2016          4     9013     PS2 2009      Shooter
## 2017          4     9652    X360 2009      Shooter
## 2018          4      112     Wii 2012         Misc
## 2019          4     1705    X360 2012         Misc
## 2020          4     4475     PS3 2012         Misc
## 2021          4     4945    WiiU 2012         Misc
## 2022          4     4336     Wii 2008         Misc
## 2023          4     4968     PS2 2008         Misc
## 2024          4    10199    X360 2008         Misc
## 2025          4    11114     PS3 2008         Misc
## 2026          4     5488     PS2 2002       Sports
## 2027          4     9611     GBA 2002       Sports
## 2028          4    10617      XB 2002       Sports
## 2029          4    12595      GC 2002       Sports
## 2030          4     6653    X360 2011       Action
## 2031          4     6982      DS 2011       Action
## 2032          4     9020     Wii 2011       Action
## 2033          4    10683     PS3 2011       Action
## 2034          4     2879     Wii 2009         Misc
## 2035          4     3556    X360 2009         Misc
## 2036          4     4278      DS 2009         Misc
## 2037          4     4577     PS3 2009         Misc
## 2038          4      151     Wii 2007       Action
## 2039          4      213      DS 2007       Action
## 2040          4      576    X360 2007       Action
## 2041          4      659     PS3 2007       Action
## 2042          4    12328     PS4 2015       Action
## 2043          4    12367      DS 2010       Action
## 2044          4    12823    WiiU 2015       Action
## 2045          4    12987     PS2 2005       Action
## 2046          4     9051      DS 2010       Action
## 2047          4     9562     Wii 2010       Action
## 2048          4    11586     PS3 2010       Action
## 2049          4    11668    X360 2010       Action
## 2050          4     5491     PS2 2002     Fighting
## 2051          4     9649      XB 2002     Fighting
## 2052          4     9903      GC 2002     Fighting
## 2053          4    12143     GBA 2002     Fighting
## 2054          4     3182     PS2 2004     Platform
## 2055          4     4613     GBA 2004     Platform
## 2056          4     6580      GC 2004     Platform
## 2057          4     9730      XB 2004     Platform
## 2058          4     2286     PS3 2009       Racing
## 2059          4     2821    X360 2009       Racing
## 2060          4     6866     PSP 2009       Racing
## 2061          4     9118      DS 2009       Racing
## 2062          4      556    X360 2011       Sports
## 2063          4      719     PS3 2011       Sports
## 2064          4     4277     Wii 2011       Sports
## 2065          4     7170     PSP 2011       Sports
## 2066          4      838     PS4 2014       Sports
## 2067          4      844    X360 2014       Sports
## 2068          4     1243    XOne 2014       Sports
## 2069          4     1373     PS3 2014       Sports
## 2070          4      419     PS4 2015       Sports
## 2071          4      646    XOne 2015       Sports
## 2072          4     2125    X360 2015       Sports
## 2073          4     2525     PS3 2015       Sports
## 2074          4     1630     PS4 2016       Sports
## 2075          4     2507    XOne 2016       Sports
## 2076          4    11566    X360 2016       Sports
## 2077          4    11706     PS3 2016       Sports
## 2078          4      280     PS2 2002       Sports
## 2079          4     2860      XB 2002       Sports
## 2080          4     3320     GBA 2002       Sports
## 2081          4     4552      GC 2002       Sports
## 2082          4      180     PS2 2003       Sports
## 2083          4     1883      XB 2003       Sports
## 2084          4     3898      GC 2003       Sports
## 2085          4     5714     GBA 2003       Sports
## 2086          4      751    X360 2013       Sports
## 2087          4      984     PS3 2013       Sports
## 2088          4     2531     PS4 2013       Sports
## 2089          4     2665    XOne 2013       Sports
## 2090          4     2841    X360 2007       Sports
## 2091          4     3379     PS2 2007       Sports
## 2092          4     6760     PS3 2007       Sports
## 2093          4    11199     PSP 2007       Sports
## 2094          4      685     N64 2000       Sports
## 2095          4     1712      GB 2000       Sports
## 2096          4    15264     3DS 2000       Sports
## 2097          4    12125     Wii 2010       Sports
## 2098          4     4612      DS 2009     Fighting
## 2099          4     5078     Wii 2009     Fighting
## 2100          4     6037     PS2 2009     Fighting
## 2101          4     7390     PSP 2009     Fighting
## 2102          4      458    X360 2012 Role-Playing
## 2103          4     1311     PS3 2012 Role-Playing
## 2104          4     2133      PC 2012 Role-Playing
## 2105          4     6229    WiiU 2012 Role-Playing
## 2106          4     4226     PS2 2002       Sports
## 2107          4     7645      XB 2002       Sports
## 2108          4     8717     GBA 2002       Sports
## 2109          4    13728      GC 2002       Sports
## 2110          4      408     PS2 2001      Shooter
## 2111          4     1648      XB 2001      Shooter
## 2112          4    14714     GBA 2003      Shooter
## 2113          4    15142      PC 2001      Shooter
## 2114          4      518     PS3 2010      Shooter
## 2115          4      568      PS 1998      Shooter
## 2116          4      583    X360 2010      Shooter
## 2117          4     4050      PC 2010      Shooter
## 2118          4     1543     PS4 2014       Action
## 2119          4     3267     PS3 2014       Action
## 2120          4     6120    XOne 2014       Action
## 2121          4     8755    X360 2014       Action
## 2122          4     4779     PS2 2002       Action
## 2123          4    10577      GC 2002       Action
## 2124          4    10814      XB 2002       Action
## 2125          4    13967     GBA 2002       Action
## 2126          4     6178     PS2 2003     Platform
## 2127          4     9457      XB 2003     Platform
## 2128          4    13785     GBA 2003     Platform
## 2129          4    15893      GC 2004     Platform
## 2130          4    12107     PS3 2015       Action
## 2131          4    13881    X360 2015       Action
## 2132          4    13956     3DS 2015       Action
## 2133          4    14322     Wii 2015       Action
## 2134          4     8672      DS 2006    Adventure
## 2135          4     9045     PS2 2006    Adventure
## 2136          4     9165      GC 2006    Adventure
## 2137          4    11249     GBA 2006    Adventure
## 2138          4     4646     Wii 2008       Racing
## 2139          4     4892      DS 2008       Racing
## 2140          4     9601     PS2 2008       Racing
## 2141          4    11227     PSP 2008       Racing
## 2142          4      620     PS2 2002     Fighting
## 2143          4     2169      XB 2002     Fighting
## 2144          4     4751      GC 2002     Fighting
## 2145          4    16566     GBA 2002     Fighting
## 2146          4     8011     PS4 2014       Racing
## 2147          4     9748     PS3 2014       Racing
## 2148          4    11090    X360 2014       Racing
## 2149          4    15585     PSV 2014       Racing
## 2150          4     8379     PS4 2015       Racing
## 2151          4    11999     PS3 2015       Racing
## 2152          4    14413    XOne 2015       Racing
## 2153          4    16474    X360 2015       Racing
## 2154          4     5546      DS 2010       Action
## 2155          4     5767     Wii 2010       Action
## 2156          4    10075     PS3 2010       Action
## 2157          4    10769    X360 2010       Action
## 2158          4     7696     Wii 2011       Racing
## 2159          4     7915     3DS 2011       Racing
## 2160          4     9832    X360 2011       Racing
## 2161          4    10770     PS3 2011       Racing
## 2162          4      626    X360 2013       Sports
## 2163          4      825     PS3 2013       Sports
## 2164          4     1472     PS4 2013       Sports
## 2165          4     2379    XOne 2013       Sports
## 2166          4      663     PS4 2014       Sports
## 2167          4     1060    XOne 2014       Sports
## 2168          4     1132    X360 2014       Sports
## 2169          4     1424     PS3 2014       Sports
## 2170          4     1703     PS4 2016       Sports
## 2171          4     3147    XOne 2016       Sports
## 2172          4    12871    X360 2016       Sports
## 2173          4    13234     PS3 2016       Sports
## 2174          4     2650     PS2 2006       Sports
## 2175          4     3484    X360 2006       Sports
## 2176          4     5031     PS3 2006       Sports
## 2177          4    14727      XB 2006       Sports
## 2178          4     3155      XB 2005       Sports
## 2179          4     4615     PSP 2005       Sports
## 2180          4     5564      GC 2005       Sports
## 2181          4     5995    X360 2005       Sports
## 2182          4     1518     PS2 2006       Sports
## 2183          4     3902     PSP 2006       Sports
## 2184          4     4293    X360 2006       Sports
## 2185          4    12780      XB 2006       Sports
## 2186          4     2900    X360 2008       Sports
## 2187          4     3843     PS3 2008       Sports
## 2188          4     4900     PS2 2008       Sports
## 2189          4     4909     PSP 2008       Sports
## 2190          4     1058     PS2 2006       Sports
## 2191          4     2813    X360 2006       Sports
## 2192          4     3626      XB 2006       Sports
## 2193          4     5162     PSP 2006       Sports
## 2194          4     2624     PS2 2007       Sports
## 2195          4     2912    X360 2007       Sports
## 2196          4     5013     PS3 2007       Sports
## 2197          4    11255      XB 2007       Sports
## 2198          4     2899    X360 2008       Sports
## 2199          4     3460     PS3 2008       Sports
## 2200          4     4118     PS2 2008       Sports
## 2201          4     7112     PSP 2008       Sports
## 2202          4     2212    X360 2009       Sports
## 2203          4     2557     PS3 2009       Sports
## 2204          4     3504     PS2 2009       Sports
## 2205          4     7478     PSP 2009       Sports
## 2206          4     9210    X360 2011    Adventure
## 2207          4     9323     Wii 2011    Adventure
## 2208          4     9616     PS3 2011    Adventure
## 2209          4    13633      PC 2011    Adventure
## 2210          4     3927     PS2 2006       Sports
## 2211          4     6317    X360 2006       Sports
## 2212          4     8318     PSP 2006       Sports
## 2213          4    14792      XB 2006       Sports
## 2214          4     3951    X360 2008       Sports
## 2215          4     5420     PS3 2008       Sports
## 2216          4     8861     PS2 2008       Sports
## 2217          4    15446      PC 2008       Sports
## 2218          4     3448     PS4 2014       Sports
## 2219          4     4212    X360 2014       Sports
## 2220          4     4818    XOne 2014       Sports
## 2221          4     5015     PS3 2014       Sports
## 2222          4     3288     PS4 2015       Sports
## 2223          4     4202    XOne 2015       Sports
## 2224          4    13995     PS3 2015       Sports
## 2225          4    15799    X360 2015       Sports
## 2226          4     5200     Wii 2009       Sports
## 2227          4     5259     PS2 2009       Sports
## 2228          4     8745     PS3 2009       Sports
## 2229          4     8936    X360 2009       Sports
## 2230          4     8264    X360 2008       Sports
## 2231          4     9358     PS3 2008       Sports
## 2232          4     9388     PS2 2008       Sports
## 2233          4    12003     Wii 2008       Sports
## 2234          4     6466     PS2 2008      Shooter
## 2235          4     8550     PS3 2008      Shooter
## 2236          4     9779    X360 2008      Shooter
## 2237          4     9915     Wii 2008      Shooter
## 2238          4      265     GBA 2001         Misc
## 2239          4      955     PS2 2001         Misc
## 2240          4     3237      GC 2002         Misc
## 2241          4     2288      XB 2008         Misc
## 2242          4      303     PS2 2005         Misc
## 2243          4     7324      GC 2005         Misc
## 2244          4     7636     GBA 2005         Misc
## 2245          4     8200      XB 2005         Misc
## 2246          4      523     PS3 2010       Racing
## 2247          4      731    X360 2010       Racing
## 2248          4     4126     Wii 2010       Racing
## 2249          4     5073      PC 2010       Racing
## 2250          4      563     PS3 2009       Racing
## 2251          4      897    X360 2009       Racing
## 2252          4     2720     PSP 2009       Racing
## 2253          4    12542      PC 2009       Racing
## 2254          4     4979     3DS 2013       Action
## 2255          4     5828     PS3 2014       Action
## 2256          4     8282     PSV 2014       Action
## 2257          4    12218    WiiU 2014       Action
## 2258          4    10865     3DS 2013     Platform
## 2259          4    11188     PS3 2013     Platform
## 2260          4    11306    X360 2013     Platform
## 2261          4    13108    WiiU 2013     Platform
## 2262          4     1242     PS2 2002       Action
## 2263          4     4068      XB 2002       Action
## 2264          4     5135      GC 2002       Action
## 2265          4    10195     GBA 2005       Action
## 2266          4    10125    X360 2014    Adventure
## 2267          4    10228     PS3 2014    Adventure
## 2268          4    11454     3DS 2014    Adventure
## 2269          4    11907    WiiU 2014    Adventure
## 2270          4     7560     PS2 2004     Platform
## 2271          4    11665      GC 2004     Platform
## 2272          4    11905     GBA 2003     Platform
## 2273          4    12052      XB 2004     Platform
## 2274          4     4846      DS 2009       Action
## 2275          4     7517     Wii 2009       Action
## 2276          4     9956     PS3 2009       Action
## 2277          4    10247    X360 2009       Action
## 2278          4     1716      DS 2011     Strategy
## 2279          4     6514    X360 2010     Strategy
## 2280          4     7821     PS3 2011     Strategy
## 2281          4    13034      PC 2009     Strategy
## 2282          4      728     PS2 2003       Action
## 2283          4     2216      XB 2003       Action
## 2284          4     5630      GC 2003       Action
## 2285          4     8814     GBA 2003       Action
## 2286          4     7063    X360 2011       Action
## 2287          4     7198     Wii 2011       Action
## 2288          4    10212      DS 2011       Action
## 2289          4    11187     PS3 2011       Action
## 2290          4    10059     3DS 2014       Puzzle
## 2291          4    13366     PSV 2014       Puzzle
## 2292          4    13526     PS3 2014       Puzzle
## 2293          4    15828    WiiU 2014       Puzzle
## 2294          4     5412      DS 2007       Puzzle
## 2295          4     6058     Wii 2007       Puzzle
## 2296          4     9725     PS2 2007       Puzzle
## 2297          4    15316     PSP 2007       Puzzle
## 2298          4     7857     PS3 2011       Action
## 2299          4     9205     Wii 2011       Action
## 2300          4     9486    X360 2011       Action
## 2301          4     9955      DS 2011       Action
## 2302          4     6079     PS2 2003     Platform
## 2303          4    11762      XB 2003     Platform
## 2304          4    12002      GC 2003     Platform
## 2305          4    14391      PC 2003     Platform
## 2306          4     1342     Wii 2006         Misc
## 2307          4     7379    X360 2007         Misc
## 2308          4     8932      DS 2007         Misc
## 2309          4    16050      PC 2006         Misc
## 2310          4     6389     PS2 2002      Shooter
## 2311          4    10366      GC 2002      Shooter
## 2312          4    10750      XB 2002      Shooter
## 2313          4    13229     GBA 2002      Shooter
## 2314          4      351     PS2 2005       Action
## 2315          4      714     Wii 2007       Action
## 2316          4     1072      GC 2005       Action
## 2317          4    14483      PC 2007       Action
## 2318          4     1531      GC 2002       Action
## 2319          4     5174     PS4 2016       Action
## 2320          4    11805    XOne 2016       Action
## 2321          4    15440      PC 2016       Action
## 2322          4     7777     Wii 2011         Misc
## 2323          4     8483      DS 2011         Misc
## 2324          4     8656     PS3 2011         Misc
## 2325          4    10715    X360 2011         Misc
## 2326          4    10501     PS3 2014 Role-Playing
## 2327          4    10840      PC 2014 Role-Playing
## 2328          4    11302    X360 2014 Role-Playing
## 2329          4    12449     PS4 2015 Role-Playing
## 2330          4     5179     PS2 2005       Action
## 2331          4     8570      GC 2005       Action
## 2332          4     9175      DS 2005       Action
## 2333          4    10851      XB 2005       Action
## 2334          4      625    X360 2008         Misc
## 2335          4      784     Wii 2008         Misc
## 2336          4     1135     PS3 2008         Misc
## 2337          4     1839     PS2 2007         Misc
## 2338          4      735    X360 2008         Misc
## 2339          4     1266     PS3 2008         Misc
## 2340          4     2025     Wii 2008         Misc
## 2341          4     3402     PS2 2008         Misc
## 2342          4     2363    X360 2010         Misc
## 2343          4     3041     Wii 2010         Misc
## 2344          4     3488     PS3 2010         Misc
## 2345          4    10606      DS 2010         Misc
## 2346          4     4353     Wii 2009         Misc
## 2347          4     5656     PS2 2009         Misc
## 2348          4     7013    X360 2009         Misc
## 2349          4     7795     PS3 2009         Misc
## 2350          4     6875     Wii 2008         Misc
## 2351          4     8016    X360 2008         Misc
## 2352          4     9579     PS3 2008         Misc
## 2353          4     9759     PS2 2008         Misc
## 2354          4     7002     Wii 2009         Misc
## 2355          4     7602     PS2 2009         Misc
## 2356          4    10367     PS3 2009         Misc
## 2357          4    11955    X360 2009         Misc
## 2358          4     8888    X360 2009         Misc
## 2359          4     9928     PS3 2009         Misc
## 2360          4    10227     Wii 2009         Misc
## 2361          4    10296     PS2 2009         Misc
## 2362          4     6362    X360 2008         Misc
## 2363          4     6403     PS3 2008         Misc
## 2364          4    10368      DS 2008         Misc
## 2365          4    11545     Wii 2008         Misc
## 2366          4    13494     PS3 2016       Sports
## 2367          4    13883     PS4 2016       Sports
## 2368          4    14986    X360 2016       Sports
## 2369          4    16579    XOne 2016       Sports
## 2370          4    14247     PS3 2015       Action
## 2371          4    14621    X360 2015       Action
## 2372          4    15089     PS4 2015       Action
## 2373          4    16455    XOne 2015       Action
## 2374          4     6755     PS3 2008       Racing
## 2375          4     7422    X360 2008       Racing
## 2376          4    15973     PS2 2008       Racing
## 2377          4    16493     PSP 2008       Racing
## 2378          4     9676    X360 2008       Racing
## 2379          4    10622     Wii 2008       Racing
## 2380          4    11725     PS3 2008       Racing
## 2381          4    16598     PS2 2008       Racing
## 2382          4     1085     PS2 2003       Sports
## 2383          4     4929      XB 2003       Sports
## 2384          4     5024      GC 2003       Sports
## 2385          4     9790     GBA 2003       Sports
## 2386          4     3868     PS2 2005       Sports
## 2387          4     6990     PSP 2005       Sports
## 2388          4     8380      GC 2005       Sports
## 2389          4     9079      XB 2005       Sports
## 2390          4     1027     PS2 2001       Sports
## 2391          4     3738      GC 2001       Sports
## 2392          4     4503      XB 2001       Sports
## 2393          4     7877     GBA 2002       Sports
## 2394          4     1695     PS2 2006       Action
## 2395          4     4044      XB 2006       Action
## 2396          4     8887     Wii 2007       Action
## 2397          4    13851      PC 2006       Action
## 2398          4     4405     PS2 2004       Action
## 2399          4     4470     GBA 2003       Action
## 2400          4     7295      GC 2004       Action
## 2401          4     8891      XB 2004       Action
## 2402          4     3167     PS3 2007       Racing
## 2403          4     4343    X360 2007       Racing
## 2404          4     6566     PSP 2007       Racing
## 2405          4    16411      PC 2007       Racing
## 2406          4     2743     PS2 2004       Action
## 2407          4     2973     GBA 2004       Action
## 2408          4     5945      GC 2004       Action
## 2409          4     7661      XB 2004       Action
## 2410          4     7892     PS3 2010       Sports
## 2411          4     7896     Wii 2010       Sports
## 2412          4     8620    X360 2010       Sports
## 2413          4    14410      PC 2010       Sports
## 2414          4     5729      DS 2010     Platform
## 2415          4     5853     Wii 2010     Platform
## 2416          4     7794     PS3 2010     Platform
## 2417          4    10495    X360 2010     Platform
## 2418          4     7753     PS2 2005      Shooter
## 2419          4     9910     Wii 2010      Shooter
## 2420          4    11121      XB 2005      Shooter
## 2421          4    15838      PC 2005      Shooter
## 2422          4     2992     PS4 2014      Shooter
## 2423          4     5558    XOne 2014      Shooter
## 2424          4     5618    X360 2014      Shooter
## 2425          4     5715     PS3 2014      Shooter
## 2426          4     1129     PS3 2011     Platform
## 2427          4     1361    X360 2011     Platform
## 2428          4     2046     3DS 2011     Platform
## 2429          4    10268      PC 2011     Platform
## 2430          4      740     Wii 2008     Platform
## 2431          4     2016     PS3 2008     Platform
## 2432          4     2161    X360 2008     Platform
## 2433          4     2688     PS2 2008     Platform
## 2434          4      255     GEN 1991     Platform
## 2435          4     1717     PS3 2006     Platform
## 2436          4     1985    X360 2006     Platform
## 2437          4     4147     PS3 2006     Platform
## 2438          4     9849     PS2 2008     Platform
## 2439          4    10165    X360 2008     Platform
## 2440          4    11015     Wii 2008     Platform
## 2441          4    12799      DS 2008     Platform
## 2442          4      608    2600 1978      Shooter
## 2443          4     4295    SNES 1994      Shooter
## 2444          4     8589     N64 1999      Shooter
## 2445          4    10392     GBA 2002      Shooter
## 2446          4     4349     PS3 2010       Action
## 2447          4     5189    X360 2010       Action
## 2448          4     6820     Wii 2010       Action
## 2449          4     7819      DS 2010       Action
## 2450          4      242     PS2 2002       Action
## 2451          4     1382      XB 2002       Action
## 2452          4     1473     GBA 2002       Action
## 2453          4     1701      GC 2002       Action
## 2454          4     2755     PS3 2010       Racing
## 2455          4     3318    X360 2010       Racing
## 2456          4    10213     PSP 2010       Racing
## 2457          4    13539      PC 2010       Racing
## 2458          4     1098     PS2 2003     Platform
## 2459          4     1623     GBA 2003     Platform
## 2460          4     2178      GC 2003     Platform
## 2461          4     3547      XB 2003     Platform
## 2462          4     3906     GBA 2005         Misc
## 2463          4     4418     PS2 2005         Misc
## 2464          4     4458      GC 2005         Misc
## 2465          4     6576      XB 2005         Misc
## 2466          4     4600      DS 2009       Action
## 2467          4     4843     Wii 2009       Action
## 2468          4     4905     PSP 2009       Action
## 2469          4     6670    X360 2009       Action
## 2470          4      407     PS2 2005       Action
## 2471          4     1611      XB 2005       Action
## 2472          4     2828     GBA 2005       Action
## 2473          4     5726      DS 2005       Action
## 2474          4      358     PS2 2005      Shooter
## 2475          4     1090      XB 2005      Shooter
## 2476          4     1629     PSP 2005      Shooter
## 2477          4     8188      PC 2005      Shooter
## 2478          4     2270     PS2 2003       Racing
## 2479          4     6995      XB 2003       Racing
## 2480          4    10310      GC 2003       Racing
## 2481          4    14373     GBA 2003       Racing
## 2482          4     7320     PSV 2013    Adventure
## 2483          4     7765     PSP 2011    Adventure
## 2484          4    11374     PS3 2012    Adventure
## 2485          4    12416    X360 2009    Adventure
## 2486          4     2469     PS3 2012     Fighting
## 2487          4     4157    X360 2012     Fighting
## 2488          4     6836     PSV 2012     Fighting
## 2489          4    15047      PC 2012     Fighting
## 2490          4     3655    X360 2007       Action
## 2491          4     4819     Wii 2007       Action
## 2492          4     9962     PSP 2007       Action
## 2493          4    13364      DS 2007       Action
## 2494          4     4345    X360 2008     Fighting
## 2495          4     4762     PS3 2008     Fighting
## 2496          4     7140     PS2 2008     Fighting
## 2497          4     8567     Wii 2008     Fighting
## 2498          4     3255     PS2 2004     Platform
## 2499          4     4248     GBA 2004     Platform
## 2500          4     5485      GC 2004     Platform
## 2501          4     9369      XB 2004     Platform
## 2502          4     8310     GBA 2005     Platform
## 2503          4     8747      GC 2005     Platform
## 2504          4    10948      DS 2005     Platform
## 2505          4    11866      XB 2005     Platform
## 2506          4     4417     PS2 2004       Action
## 2507          4     5581     GBA 2004       Action
## 2508          4     7873      GC 2004       Action
## 2509          4     9552      XB 2004       Action
## 2510          4     7664     PS2 2005       Action
## 2511          4     9951      GC 2005       Action
## 2512          4    12583      DS 2005       Action
## 2513          4    14005      XB 2005       Action
## 2514          4    11843     PS4 2016       Action
## 2515          4    12932     PS3 2016       Action
## 2516          4    14188    XOne 2016       Action
## 2517          4    14485    X360 2016       Action
## 2518          4     5392     Wii 2011       Action
## 2519          4     6322     PS3 2011       Action
## 2520          4     6767    X360 2011       Action
## 2521          4     8764     3DS 2011       Action
## 2522          4     9733      GC 2006     Platform
## 2523          4    10575     PS2 2006     Platform
## 2524          4    11146     Wii 2006     Platform
## 2525          4    14068     GBA 2006     Platform
## 2526          4     1051     PS4 2014       Racing
## 2527          4     3221    XOne 2014       Racing
## 2528          4     6447    X360 2014       Racing
## 2529          4     8600      PC 2014       Racing
## 2530          4    10214     Wii 2013         Misc
## 2531          4    11538      DS 2013         Misc
## 2532          4    14043     3DS 2013         Misc
## 2533          4    14625    WiiU 2013         Misc
## 2534          4     3752     PS2 2003     Platform
## 2535          4     6894      XB 2003     Platform
## 2536          4     7743     GBA 2003     Platform
## 2537          4     8262      GC 2003     Platform
## 2538          4     2705     PS3 2009       Action
## 2539          4     3162    X360 2009       Action
## 2540          4    10298      DS 2009       Action
## 2541          4    14857      PC 2009       Action
## 2542          4      409     PS2 2003       Action
## 2543          4     1797      XB 2003       Action
## 2544          4     2966      GC 2003       Action
## 2545          4     3568     GBA 2003       Action
## 2546          4      228     PS2 2002       Action
## 2547          4     2782     GBA 2002       Action
## 2548          4     2859      XB 2002       Action
## 2549          4     3810      GC 2002       Action
## 2550          4     9895      DS 2011       Action
## 2551          4    10206    X360 2011       Action
## 2552          4    11200     Wii 2011       Action
## 2553          4    11242     PS3 2011       Action
## 2554          4     8796     PS2 2009       Action
## 2555          4    10723     Wii 2009       Action
## 2556          4    10975     PSP 2009       Action
## 2557          4    11301      DS 2009       Action
## 2558          4      355     PS2 2001       Racing
## 2559          4     1691     GBA 2003       Racing
## 2560          4     1980      XB 2001       Racing
## 2561          4     6845      GC 2001       Racing
## 2562          4      542     PS2 2003   Simulation
## 2563          4     4039      GC 2003   Simulation
## 2564          4     4581      XB 2003   Simulation
## 2565          4    13289      PC 2000   Simulation
## 2566          4     1633     Wii 2007   Simulation
## 2567          4     2581     PSP 2007   Simulation
## 2568          4     2795      DS 2007   Simulation
## 2569          4     5161     PS2 2007   Simulation
## 2570          4      635     PS2 2003   Simulation
## 2571          4     1476     GBA 2003   Simulation
## 2572          4     3079      GC 2003   Simulation
## 2573          4     3571      XB 2003   Simulation
## 2574          4      991     PS2 2004     Platform
## 2575          4     1300     GBA 2004     Platform
## 2576          4     2200      GC 2004     Platform
## 2577          4     3694      XB 2004     Platform
## 2578          4     1002     PS2 2004   Simulation
## 2579          4     3260     GBA 2004   Simulation
## 2580          4     4847      GC 2004   Simulation
## 2581          4     5390      XB 2004   Simulation
## 2582          4     3080     PS3 2008       Sports
## 2583          4     3101    X360 2008       Sports
## 2584          4     5096     PS2 2008       Sports
## 2585          4     5183     PSP 2008       Sports
## 2586          4     1130     PS2 2003       Sports
## 2587          4     3251      XB 2003       Sports
## 2588          4     8130     GBA 2003       Sports
## 2589          4     8671      GC 2003       Sports
## 2590          4     1344     PS2 2004       Sports
## 2591          4     2438      XB 2004       Sports
## 2592          4     9317      GC 2004       Sports
## 2593          4    16165      PC 2004       Sports
## 2594          4      885     PS2 2002      Shooter
## 2595          4      996      XB 2002      Shooter
## 2596          4     8970      GC 2003      Shooter
## 2597          4     9319     Wii 2010      Shooter
## 2598          4     4650     PS3 2010       Action
## 2599          4     5171    X360 2010       Action
## 2600          4    10370     Wii 2010       Action
## 2601          4    12903      PC 2010       Action
## 2602          4      465      XB 2002       Action
## 2603          4      571     PS2 2003       Action
## 2604          4     7011      GC 2003       Action
## 2605          4    10652     GBA 2003       Action
## 2606          4     2089    X360 2013       Action
## 2607          4     2123     PS3 2013       Action
## 2608          4     7828      PC 2013       Action
## 2609          4     9715    WiiU 2013       Action
## 2610          4     1840      XB 2005       Action
## 2611          4     2177     PS2 2005       Action
## 2612          4    10465      GC 2005       Action
## 2613          4    11908      DS 2005       Action
## 2614          4     2630    X360 2006       Action
## 2615          4     6542     PS3 2007       Action
## 2616          4     9514     Wii 2006       Action
## 2617          4    12714      GC 2006       Action
## 2618          4     1286      XB 2004       Action
## 2619          4     1597     PS2 2004       Action
## 2620          4    11418      GC 2004       Action
## 2621          4    12345     GBA 2004       Action
## 2622          4      613     PS3 2013       Action
## 2623          4      895    X360 2013       Action
## 2624          4     1367     PS4 2014       Action
## 2625          4     3361    XOne 2014       Action
## 2626          4      340     PS2 2002       Sports
## 2627          4     2225      XB 2002       Sports
## 2628          4     3492      GC 2002       Sports
## 2629          4     3513     GBA 2002       Sports
## 2630          4     7634     PS4 2015       Sports
## 2631          4    10031    XOne 2015       Sports
## 2632          4    12144    X360 2015       Sports
## 2633          4    12800     PS3 2015       Sports
## 2634          4     2394     PS2 2006       Sports
## 2635          4     3198     PS3 2006       Sports
## 2636          4     3575     PSP 2006       Sports
## 2637          4     4024    X360 2006       Sports
## 2638          4      307     PS2 2003       Sports
## 2639          4     1561      XB 2003       Sports
## 2640          4     2906      GC 2003       Sports
## 2641          4     3336     GBA 2003       Sports
## 2642          4      669     PS2 2004       Sports
## 2643          4     2751      XB 2004       Sports
## 2644          4     4002      GC 2004       Sports
## 2645          4     4025     GBA 2004       Sports
## 2646          4     3440     Wii 2008       Action
## 2647          4     3505     PS3 2008       Action
## 2648          4     3558    X360 2008       Action
## 2649          4     9111      DS 2008       Action
## 2650          4     5155     PS3 2011       Action
## 2651          4     6054    X360 2011       Action
## 2652          4     7329     3DS 2011       Action
## 2653          4     8127     Wii 2011       Action
## 2654          4     3453     Wii 2009         Misc
## 2655          4     5095    X360 2009         Misc
## 2656          4     6066     PS3 2009         Misc
## 2657          4     6287     PS2 2009         Misc
## 2658          4     1511     PS2 2002      Shooter
## 2659          4     3681      XB 2002      Shooter
## 2660          4     5003      GC 2002      Shooter
## 2661          4     9936     GBA 2002      Shooter
## 2662          4     3792     PS2 2004     Platform
## 2663          4     7604      GC 2004     Platform
## 2664          4     9550     GBA 2004     Platform
## 2665          4    10284      XB 2004     Platform
## 2666          4     7969     PS2 2005       Action
## 2667          4    11163      GC 2005       Action
## 2668          4    13161     GBA 2005       Action
## 2669          4    14990      XB 2005       Action
## 2670          4     4732     PS3 2008       Sports
## 2671          4     5350    X360 2008       Sports
## 2672          4     5677     PS2 2008       Sports
## 2673          4     6674     PSP 2008       Sports
## 2674          4     1962     PS3 2007       Sports
## 2675          4    12842     PSP 2007       Sports
## 2676          4    13177    X360 2007       Sports
## 2677          4    16083      PC 2007       Sports
## 2678          4     4267     PS3 2011       Sports
## 2679          4     6981    X360 2011       Sports
## 2680          4     8876     Wii 2011       Sports
## 2681          4    13664      PC 2011       Sports
## 2682          4    16061      PC 2010       Racing
## 2683          4     9694    X360 2011       Racing
## 2684          4     7425     PS3 2010       Racing
## 2685          4    13895     PSP 2005       Racing
## 2686          4     1810     PS4 2014       Sports
## 2687          4     2445     PS3 2014       Sports
## 2688          4     2943    X360 2014       Sports
## 2689          4     3615    XOne 2014       Sports
## 2690          4     1675     PS4 2015       Sports
## 2691          4     3458    XOne 2015       Sports
## 2692          4     3485     PS3 2015       Sports
## 2693          4     3971    X360 2015       Sports
## 2694          4     9007      DS 2009     Platform
## 2695          4     9670     Wii 2009     Platform
## 2696          4    10138    X360 2009     Platform
## 2697          4    10280     PS3 2009     Platform
## 2698          4     4738     Wii 2008       Sports
## 2699          4    11259     PS2 2008       Sports
## 2700          4    11749    X360 2008       Sports
## 2701          4    12480      DS 2008       Sports
## 2702          4     4800     Wii 2012       Action
## 2703          4     7420    X360 2012       Action
## 2704          4     7726     3DS 2012       Action
## 2705          4     9374    WiiU 2012       Action
## 2706          4     7366     PS2 2005         Misc
## 2707          4    12268      XB 2005         Misc
## 2708          4    13650     PSP 2006         Misc
## 2709          4    16074     GBA 2005         Misc
## 2710          4     4214     PS2 2005         Misc
## 2711          4     6631      XB 2005         Misc
## 2712          4     7412     PSP 2005         Misc
## 2713          4    13219      GC 2005         Misc
## 2714          4     8563    X360 2006         Misc
## 2715          4    10387     PSP 2006         Misc
## 2716          4    13325     Wii 2006         Misc
## 2717          4    14141     PS2 2006         Misc
## 2718          4     3186     PS2 2005 Role-Playing
## 2719          4     4424      XB 2005 Role-Playing
## 2720          4     5967     PSP 2005 Role-Playing
## 2721          4     6761      GC 2005 Role-Playing
## 2722          4     6722     Wii 2009       Action
## 2723          4     7713      DS 2009       Action
## 2724          4     7783     PSP 2009       Action
## 2725          4     8062     PS2 2009       Action
## 2726          4     6720     PS3 2011       Action
## 2727          4     6900    X360 2011       Action
## 2728          4    10309     Wii 2011       Action
## 2729          4    12463      DS 2011       Action
## 2730          4     3153     PS2 2003     Platform
## 2731          4     7494      XB 2003     Platform
## 2732          4     7582     GBA 2003     Platform
## 2733          4     9806      GC 2003     Platform
## 2734          4    10979     PS3 2013       Action
## 2735          4    14218     Wii 2013       Action
## 2736          4    14580     3DS 2013       Action
## 2737          4    16127    X360 2013       Action
## 2738          4     8497     PS2 2002     Platform
## 2739          4     9112     GBA 2002     Platform
## 2740          4     9581      GC 2002     Platform
## 2741          4    12904      XB 2002     Platform
## 2742          4     7358     PS3 2011     Platform
## 2743          4     8032     Wii 2011     Platform
## 2744          4     8728    X360 2011     Platform
## 2745          4     9967      DS 2011     Platform
## 2746          3     3407     PS2 2002       Sports
## 2747          3     7849      XB 2002       Sports
## 2748          3    13267      GC 2002       Sports
## 2749          3     9610     Wii 2008    Adventure
## 2750          3    13561     PSP 2009    Adventure
## 2751          3    15145     PS3 2009    Adventure
## 2752          3      981     PS2 2005       Action
## 2753          3     4438      XB 2005       Action
## 2754          3    11195     PSP 2006       Action
## 2755          3     7065     PSP 2012    Adventure
## 2756          3    11500     PS3 2013    Adventure
## 2757          3    11745     PSV 2012    Adventure
## 2758          3     2466     PS2 2003       Racing
## 2759          3     4398      XB 2003       Racing
## 2760          3     6134      GC 2003       Racing
## 2761          3    14075     PSV 2016       Action
## 2762          3    14721     PS3 2016       Action
## 2763          3    15169     PS4 2016       Action
## 2764          3     5329     PS2 2002       Sports
## 2765          3    12284      XB 2002       Sports
## 2766          3    12730      GC 2002       Sports
## 2767          3     7776     PS3 2011   Simulation
## 2768          3    11304    X360 2011   Simulation
## 2769          3    14788      PC 2011   Simulation
## 2770          3     7338     PSV 2013       Action
## 2771          3    10100     PS4 2014       Action
## 2772          3    10292     PS3 2013       Action
## 2773          3     3352     PS3 2011    Adventure
## 2774          3     3956    X360 2011    Adventure
## 2775          3     9789      PC 2011    Adventure
## 2776          3     1941    X360 2010      Shooter
## 2777          3     1970     PS3 2010      Shooter
## 2778          3     7763      PC 2010      Shooter
## 2779          3     2574    X360 2013      Shooter
## 2780          3     3141     PS3 2013      Shooter
## 2781          3     8116      PC 2013      Shooter
## 2782          3     4495     PS3 2010 Role-Playing
## 2783          3     4877    X360 2010 Role-Playing
## 2784          3    14053      PC 2010 Role-Playing
## 2785          3     9251      DS 2007         Misc
## 2786          3    11853     PS2 2007         Misc
## 2787          3    12493     Wii 2007         Misc
## 2788          3    10181      DS 2011         Misc
## 2789          3    10589    X360 2011         Misc
## 2790          3    10678     Wii 2011         Misc
## 2791          3     8785     PSP 2011    Adventure
## 2792          3     9448     PS2 2009    Adventure
## 2793          3    13626     PSV 2014    Adventure
## 2794          3     8134     PS2 2005       Racing
## 2795          3    13260      GC 2005       Racing
## 2796          3    13278      XB 2005       Racing
## 2797          3     3208     3DS 2012       Action
## 2798          3     6437    X360 2012       Action
## 2799          3     8546     PS3 2012       Action
## 2800          3     7304     PS3 2010   Simulation
## 2801          3     8447    X360 2010   Simulation
## 2802          3    14125      PC 2010   Simulation
## 2803          3     7545     PS3 2011     Fighting
## 2804          3    12609     PSV 2014     Fighting
## 2805          3    12906    X360 2011     Fighting
## 2806          3     7923      PC 2010 Role-Playing
## 2807          3    10711    X360 2010 Role-Playing
## 2808          3    12950     PS4 2015 Role-Playing
## 2809          3     6404     Wii 2009       Puzzle
## 2810          3     6886      DS 2009       Puzzle
## 2811          3     9712    X360 2009       Puzzle
## 2812          3     2834      PS 1996      Shooter
## 2813          3     4341     PS2 2005      Shooter
## 2814          3     6011      XB 2005      Shooter
## 2815          3     4627     N64 2000      Shooter
## 2816          3     6791      PS 2000      Shooter
## 2817          3     8214     PS2 2001      Shooter
## 2818          3     2192    X360 2010      Shooter
## 2819          3     2439     PS3 2010      Shooter
## 2820          3     5605     PSP 2010      Shooter
## 2821          3    11299     PS4 2015       Action
## 2822          3    13413     PS3 2015       Action
## 2823          3    15723    XOne 2016       Action
## 2824          3     6882     Wii 2009       Sports
## 2825          3     7551    X360 2009       Sports
## 2826          3     8211     PS3 2009       Sports
## 2827          3      159    X360 2007    Adventure
## 2828          3      219     PS3 2007    Adventure
## 2829          3     2262      PC 2008    Adventure
## 2830          3     9902     PSV 2016       Action
## 2831          3    11583     PS4 2016       Action
## 2832          3    16451    XOne 2016       Action
## 2833          3      157     PS3 2009       Action
## 2834          3      177    X360 2009       Action
## 2835          3     3528      PC 2010       Action
## 2836          3      410     PS4 2015       Action
## 2837          3     1545    XOne 2015       Action
## 2838          3     7563      PC 2015       Action
## 2839          3      374    X360 2010       Action
## 2840          3      515     PS3 2010       Action
## 2841          3     3392      PC 2011       Action
## 2842          3      264     PS3 2011       Action
## 2843          3      274    X360 2011       Action
## 2844          3     2714      PC 2011       Action
## 2845          3     1415     PS3 2014       Action
## 2846          3     1966    X360 2014       Action
## 2847          3    12049      PC 2015       Action
## 2848          3      305     PS4 2014       Action
## 2849          3      382    XOne 2014       Action
## 2850          3     3658      PC 2014       Action
## 2851          3    10662     PS4 2015 Role-Playing
## 2852          3    12575     PSV 2015 Role-Playing
## 2853          3    14347     PS3 2015 Role-Playing
## 2854          3     6770     PS2 2008    Adventure
## 2855          3     7810     Wii 2008    Adventure
## 2856          3     9599      DS 2008    Adventure
## 2857          3     8979     PS2 2002       Sports
## 2858          3    10290      XB 2002       Sports
## 2859          3    12281      GC 2002       Sports
## 2860          3     4054     PS2 2004       Sports
## 2861          3     4555     GBA 2002       Sports
## 2862          3     9554      GC 2003       Sports
## 2863          3     9545      DS 2008       Sports
## 2864          3    13481     Wii 2008       Sports
## 2865          3    15414     PS2 2008       Sports
## 2866          3     8298     PS2 2009       Sports
## 2867          3     9785      DS 2009       Sports
## 2868          3    10272     Wii 2009       Sports
## 2869          3     7336     Wii 2008       Sports
## 2870          3     8293     PS2 2008       Sports
## 2871          3    11619      DS 2008       Sports
## 2872          3     8323     Wii 2009       Sports
## 2873          3    10293    X360 2009       Sports
## 2874          3    12432     PS2 2009       Sports
## 2875          3     8236      DS 2010       Sports
## 2876          3     9517     Wii 2010       Sports
## 2877          3     9868    X360 2010       Sports
## 2878          3     8674     Wii 2010       Sports
## 2879          3     8967      DS 2010       Sports
## 2880          3    10930    X360 2010       Sports
## 2881          3     1767     PS2 2004      Shooter
## 2882          3     8090      XB 2004      Shooter
## 2883          3    13451      GC 2004      Shooter
## 2884          3     3661      DS 2008       Sports
## 2885          3     7691     Wii 2008       Sports
## 2886          3     7876     PS2 2008       Sports
## 2887          3      263     PS3 2009       Action
## 2888          3      376    X360 2009       Action
## 2889          3     5608      PC 2009       Action
## 2890          3      323     PS4 2015       Action
## 2891          3     1319    XOne 2015       Action
## 2892          3     9571      PC 2015       Action
## 2893          3     3652     PS2 2001    Adventure
## 2894          3     6537      GC 2001    Adventure
## 2895          3     8111     GBA 2001    Adventure
## 2896          3    14586      PC 2011         Misc
## 2897          3    13057     PS3 2011         Misc
## 2898          3    14332    X360 2011         Misc
## 2899          3     7182     PS4 2016      Shooter
## 2900          3     9648    XOne 2016      Shooter
## 2901          3    12007      PC 2016      Shooter
## 2902          3     3583      XB 2005      Shooter
## 2903          3     4435     PS2 2005      Shooter
## 2904          3     4748    X360 2006      Shooter
## 2905          3      100    X360 2011      Shooter
## 2906          3      104     PS3 2011      Shooter
## 2907          3      534      PC 2011      Shooter
## 2908          3      380    X360 2010      Shooter
## 2909          3      478     PS3 2010      Shooter
## 2910          3     2858      PC 2010      Shooter
## 2911          3     4785    X360 2007       Action
## 2912          3     8541     PS3 2007       Action
## 2913          3    11062     PSP 2007       Action
## 2914          3     5451     PS2 2003    Adventure
## 2915          3    10510      XB 2003    Adventure
## 2916          3    11831      GC 2003    Adventure
## 2917          3      516    X360 2007      Shooter
## 2918          3     1320     PS3 2008      Shooter
## 2919          3     4691      PC 2007      Shooter
## 2920          3      732    X360 2010      Shooter
## 2921          3     1201     PS3 2010      Shooter
## 2922          3     6808      PC 2010      Shooter
## 2923          3      867    X360 2013      Shooter
## 2924          3      998     PS3 2013      Shooter
## 2925          3     3036      PC 2013      Shooter
## 2926          3     8530     PS4 2015       Action
## 2927          3    13217    XOne 2015       Action
## 2928          3    14582     PS3 2015       Action
## 2929          3     3490     PS3 2009     Fighting
## 2930          3     5190    X360 2009     Fighting
## 2931          3    16143      PC 2010     Fighting
## 2932          3     9786     PSV 2011     Fighting
## 2933          3    11079     PS3 2011     Fighting
## 2934          3    15996     PSP 2012     Fighting
## 2935          3     2330     PS2 2005       Sports
## 2936          3     3778      XB 2004       Sports
## 2937          3     8607    X360 2006       Sports
## 2938          3     4942     PS2 2002       Action
## 2939          3     7973      XB 2002       Action
## 2940          3    12870      GC 2002       Action
## 2941          3     4647     PS2 2002      Shooter
## 2942          3     7360      XB 2002      Shooter
## 2943          3    10122      GC 2002      Shooter
## 2944          3     2777     PS3 2010       Racing
## 2945          3     3371    X360 2010       Racing
## 2946          3    12385      PC 2010       Racing
## 2947          3     8372     Wii 2007         Misc
## 2948          3     8498      PS 2000         Misc
## 2949          3    12331     PSP 2007         Misc
## 2950          3     3974     Wii 2007         Misc
## 2951          3     6269      DS 2007         Misc
## 2952          3     7897     PS2 2007         Misc
## 2953          3      385    X360 2009      Shooter
## 2954          3      779     PS3 2009      Shooter
## 2955          3     8035      PC 2009      Shooter
## 2956          3     2759    X360 2014      Shooter
## 2957          3     3049     PS3 2014      Shooter
## 2958          3     6073      PC 2014      Shooter
## 2959          3     1278      DS 2006    Adventure
## 2960          3     7343      GC 2006    Adventure
## 2961          3    16157     PS2 2006    Adventure
## 2962          3     5591      DS 2008       Action
## 2963          3     7095     PS2 2008       Action
## 2964          3     7363     Wii 2008       Action
## 2965          3     3736     GBA 2004         Misc
## 2966          3     5021     PS2 2005         Misc
## 2967          3     7553      GC 2005         Misc
## 2968          3     2001    X360 2011      Shooter
## 2969          3     2775     PS3 2011      Shooter
## 2970          3     8132      PC 2011      Shooter
## 2971          3     2242     PS3 2008      Shooter
## 2972          3     2398    X360 2008      Shooter
## 2973          3    15026      PC 2008      Shooter
## 2974          3     8014     PS2 2003       Action
## 2975          3     9947      XB 2003       Action
## 2976          3    14771      GC 2003       Action
## 2977          3     2027    X360 2011      Shooter
## 2978          3     3803     PS3 2011      Shooter
## 2979          3     8618      PC 2011      Shooter
## 2980          3     1924    X360 2008       Action
## 2981          3     3850     Wii 2008       Action
## 2982          3    14797      PC 2008       Action
## 2983          3     2768     PS2 2001       Racing
## 2984          3     5847      GC 2002       Racing
## 2985          3     9623      XB 2002       Racing
## 2986          3     2449     PS2 2002       Racing
## 2987          3     6832      XB 2003       Racing
## 2988          3     8738      GC 2003       Racing
## 2989          3    10721      PC 2009       Racing
## 2990          3    11095     PS3 2009       Racing
## 2991          3    13823    X360 2009       Racing
## 2992          3     2301     PS2 2005       Racing
## 2993          3     3788      XB 2005       Racing
## 2994          3     3934    X360 2006       Racing
## 2995          3     8064     Wii 2011         Misc
## 2996          3    10325     PS3 2011         Misc
## 2997          3    10568    X360 2011         Misc
## 2998          3     3210     Wii 2007       Sports
## 2999          3     7655     PS2 2007       Sports
## 3000          3    12503    X360 2007       Sports
## 3001          3     1050     Wii 2009       Sports
## 3002          3     4821     PS3 2009       Sports
## 3003          3     6416    X360 2009       Sports
## 3004          3     5040     Wii 2011       Sports
## 3005          3     6204    X360 2011       Sports
## 3006          3     6985     PS3 2011       Sports
## 3007          3    14486     PS3 2014      Shooter
## 3008          3    14767    X360 2014      Shooter
## 3009          3    15353    WiiU 2014      Shooter
## 3010          3     4947     PS2 2005       Sports
## 3011          3    10413      XB 2005       Sports
## 3012          3    14151      GC 2005       Sports
## 3013          3     4638     PS2 2008       Sports
## 3014          3     8125     Wii 2008       Sports
## 3015          3     8312     PSP 2008       Sports
## 3016          3     7396     Wii 2011       Sports
## 3017          3     7895     PS3 2011       Sports
## 3018          3     7992    X360 2011       Sports
## 3019          3     6264     PS2 2007       Sports
## 3020          3    12293     Wii 2008       Sports
## 3021          3    13397    X360 2007       Sports
## 3022          3      566     PS2 2005      Shooter
## 3023          3     1828      XB 2005      Shooter
## 3024          3     5522      GC 2005      Shooter
## 3025          3      501     PS2 2004      Shooter
## 3026          3     1655      XB 2004      Shooter
## 3027          3     4871      GC 2004      Shooter
## 3028          3       37    X360 2009      Shooter
## 3029          3       56     PS3 2009      Shooter
## 3030          3     2349      PC 2009      Shooter
## 3031          3     2327     PS3 2009      Shooter
## 3032          3     3334    X360 2009      Shooter
## 3033          3    14222      PC 2009      Shooter
## 3034          3     5925     PS3 2011      Shooter
## 3035          3     6349    X360 2011      Shooter
## 3036          3    10248      PC 2011      Shooter
## 3037          3    12817     PS2 2004       Action
## 3038          3    14966      XB 2004       Action
## 3039          3    15233      GC 2004       Action
## 3040          3    11232     Wii 2011     Fighting
## 3041          3    11829    X360 2011     Fighting
## 3042          3    12126     PS3 2011     Fighting
## 3043          3     7204     PS3 2014       Action
## 3044          3    10491    X360 2014       Action
## 3045          3    13827      PC 2014       Action
## 3046          3     7392     PS3 2011       Sports
## 3047          3    10415     Wii 2011       Sports
## 3048          3    12455    X360 2011       Sports
## 3049          3    12935     PSV 2015    Adventure
## 3050          3    16336     PS4 2015    Adventure
## 3051          3    16419     PS3 2015    Adventure
## 3052          3    13988    X360 2009    Adventure
## 3053          3    15117     PSP 2010    Adventure
## 3054          3    16275     PSV 2014    Adventure
## 3055          3     4952     PS2 2003         Misc
## 3056          3     9401      XB 2004         Misc
## 3057          3    13574     GBA 2002         Misc
## 3058          3     5243     Wii 2007       Action
## 3059          3     9120      DS 2007       Action
## 3060          3    13542     GBA 2005       Action
## 3061          3     5678    X360 2007      Shooter
## 3062          3     7572     PS3 2007      Shooter
## 3063          3    16436      PC 2007      Shooter
## 3064          3    10619     PS2 2005     Platform
## 3065          3    13152      GC 2005     Platform
## 3066          3    15490      XB 2005     Platform
## 3067          3     2198     PS2 2003       Racing
## 3068          3    10525      XB 2004       Racing
## 3069          3    16378      PC 2004       Racing
## 3070          3     9834    X360 2006       Sports
## 3071          3    10679      XB 2005       Sports
## 3072          3     6649     PS2 2005       Sports
## 3073          3     5320     PS2 2007       Sports
## 3074          3     8191    X360 2007       Sports
## 3075          3     9216     PS3 2007       Sports
## 3076          3     7750    X360 2008      Shooter
## 3077          3     7806     PS3 2008      Shooter
## 3078          3    16259      PC 2008      Shooter
## 3079          3     1184     PS2 2002      Shooter
## 3080          3     2402      XB 2002      Shooter
## 3081          3    11696      GC 2003      Shooter
## 3082          3     2681     PS2 2003      Shooter
## 3083          3     6176      XB 2003      Shooter
## 3084          3    13536      GC 2004      Shooter
## 3085          3    10093     PS2 2009       Action
## 3086          3    12793     Wii 2009       Action
## 3087          3    13517      DS 2009       Action
## 3088          3     1481     PS2 2004       Racing
## 3089          3     6199     GBA 2003       Racing
## 3090          3     6821      XB 2003       Racing
## 3091          3      168     PS2 2001     Platform
## 3092          3     1616      XB 2002     Platform
## 3093          3     3409      GC 2002     Platform
## 3094          3      609     PS2 2001       Racing
## 3095          3      961      DC 2000       Racing
## 3096          3     4065      GC 2001       Racing
## 3097          3     9509     PS2 2003       Action
## 3098          3    14157     GBA 2003       Action
## 3099          3    16375      XB 2003       Action
## 3100          3     1452    X360 2011       Action
## 3101          3     1517     PS3 2011       Action
## 3102          3     2781      PC 2011       Action
## 3103          3     2264    X360 2013      Shooter
## 3104          3     2306     PS3 2013      Shooter
## 3105          3     3134      PC 2013      Shooter
## 3106          3     2512    X360 2010         Misc
## 3107          3     2738     PS3 2010         Misc
## 3108          3     3207     Wii 2010         Misc
## 3109          3    11004     PS3 2009      Shooter
## 3110          3    11943    X360 2009      Shooter
## 3111          3    16580      PC 2009      Shooter
## 3112          3     5249     Wii 2010   Simulation
## 3113          3     7654     PS3 2010   Simulation
## 3114          3    11434    X360 2011   Simulation
## 3115          3     1889     PS3 2010       Action
## 3116          3     2256    X360 2010       Action
## 3117          3     7793     PSP 2010       Action
## 3118          3      813     PS3 2011 Role-Playing
## 3119          3     2080    X360 2011 Role-Playing
## 3120          3    11879      PC 2012 Role-Playing
## 3121          3     1191     PS4 2016 Role-Playing
## 3122          3     5270    XOne 2016 Role-Playing
## 3123          3    12901      PC 2016 Role-Playing
## 3124          3     7315     PS2 2001       Sports
## 3125          3    10559      XB 2001       Sports
## 3126          3    13135      GC 2002       Sports
## 3127          3     5232     PS3 2010       Action
## 3128          3     5742    X360 2010       Action
## 3129          3    15792      PC 2010       Action
## 3130          3     1944    X360 2010       Action
## 3131          3     8795      PC 2010       Action
## 3132          3    15201     PS3 2010       Action
## 3133          3     4938      PC 2009   Simulation
## 3134          3     7480     Wii 2009   Simulation
## 3135          3     9978      DS 2009   Simulation
## 3136          3      657    X360 2011       Action
## 3137          3      695     PS3 2011       Action
## 3138          3     7267      PC 2011       Action
## 3139          3     2618    X360 2013       Action
## 3140          3     3256     PS3 2013       Action
## 3141          3    11575      PC 2013       Action
## 3142          3     1265    X360 2010       Action
## 3143          3     1408     PS3 2010       Action
## 3144          3     9255      PC 2010       Action
## 3145          3     5560     PS3 2011       Action
## 3146          3     6249    X360 2011       Action
## 3147          3    12481      PC 2011       Action
## 3148          3      842     PS3 2008       Action
## 3149          3     1364    X360 2008       Action
## 3150          3     3384      PC 2008       Action
## 3151          3     1230    X360 2011      Shooter
## 3152          3     1345     PS3 2011      Shooter
## 3153          3     5575      PC 2011      Shooter
## 3154          3     2077     PS3 2013       Action
## 3155          3     2083    X360 2013       Action
## 3156          3     7650      PC 2013       Action
## 3157          3     9705     Wii 2010       Sports
## 3158          3    11113    X360 2010       Sports
## 3159          3    11364     PS3 2010       Sports
## 3160          3     1045      DS 2007         Misc
## 3161          3     1506     Wii 2009         Misc
## 3162          3    16516      PC 2006         Misc
## 3163          3     5300     Wii 2010         Misc
## 3164          3     5576     PS3 2010         Misc
## 3165          3     6005    X360 2010         Misc
## 3166          3      995     PS2 2004     Fighting
## 3167          3     7142      GC 2004     Fighting
## 3168          3     3717      XB 2004     Fighting
## 3169          3     3531    X360 2013      Shooter
## 3170          3     5245     PS3 2013      Shooter
## 3171          3     7486      PC 2013      Shooter
## 3172          3     5544     Wii 2010     Platform
## 3173          3     8288     PSP 2010     Platform
## 3174          3    10462     PS2 2010     Platform
## 3175          3     5501     PS4 2016 Role-Playing
## 3176          3     8949    XOne 2016 Role-Playing
## 3177          3    15412      PC 2016 Role-Playing
## 3178          3     1945     PS3 2007       Racing
## 3179          3     2380    X360 2007       Racing
## 3180          3    15097      PC 2007       Racing
## 3181          3     1910     PS3 2011       Racing
## 3182          3     2812    X360 2011       Racing
## 3183          3     8679      PC 2011       Racing
## 3184          3     5635     PS4 2016       Racing
## 3185          3    10040    XOne 2016       Racing
## 3186          3    14758      PC 2016       Racing
## 3187          3    10900     PS2 2004     Fighting
## 3188          3    13653      GC 2004     Fighting
## 3189          3    15459      XB 2004     Fighting
## 3190          3     8756     PS2 2005 Role-Playing
## 3191          3    11156      GC 2005 Role-Playing
## 3192          3    14422      XB 2005 Role-Playing
## 3193          3    10807     3DS 2014       Action
## 3194          3    12564     Wii 2014       Action
## 3195          3    14830    WiiU 2014       Action
## 3196          3     1268     Wii 2009         Misc
## 3197          3     5426     PS2 2009         Misc
## 3198          3     6516     PS3 2009         Misc
## 3199          3     1935     Wii 2011       Action
## 3200          3     3200     PS3 2011       Action
## 3201          3     3516    X360 2011       Action
## 3202          3     5236     PS2 2003     Platform
## 3203          3    10587      GC 2003     Platform
## 3204          3    10989      XB 2003     Platform
## 3205          3     9437     GBA 2005     Platform
## 3206          3     9573     PS2 2005     Platform
## 3207          3    12032      GC 2005     Platform
## 3208          3     6293     PS4 2015 Role-Playing
## 3209          3    12073    XOne 2015 Role-Playing
## 3210          3    15766      PC 2014 Role-Playing
## 3211          3      456      GB 1994     Platform
## 3212          3     1308    2600 1981     Platform
## 3213          3     1811     NES 1983     Platform
## 3214          3       72    SNES 1994     Platform
## 3215          3      746      GB 2000     Platform
## 3216          3      836     GBA 2003     Platform
## 3217          3     2636      PS 1994      Shooter
## 3218          3     9087     GBA 2001      Shooter
## 3219          3    14602      PC 1992      Shooter
## 3220          3     1391     PS4 2016      Shooter
## 3221          3     2993    XOne 2016      Shooter
## 3222          3     8140      PC 2016      Shooter
## 3223          3     3438     PS3 2012      Shooter
## 3224          3     4051    X360 2012      Shooter
## 3225          3    14519      PC 2012      Shooter
## 3226          3     3542     Wii 2008     Platform
## 3227          3     4252      DS 2008     Platform
## 3228          3     5037     PS2 2008     Platform
## 3229          3    10147     Wii 2010         Misc
## 3230          3    10966      DS 2010         Misc
## 3231          3    13845     PS2 2010         Misc
## 3232          3     8540     PS2 2002     Platform
## 3233          3    12750      XB 2002     Platform
## 3234          3    14396      GC 2002     Platform
## 3235          3     1818    X360 2011       Action
## 3236          3     2465     PS3 2011       Action
## 3237          3     3156      PC 2011       Action
## 3238          3     4161    X360 2010 Role-Playing
## 3239          3     6459     PS3 2010 Role-Playing
## 3240          3     9291      PC 2010 Role-Playing
## 3241          3      600    X360 2009 Role-Playing
## 3242          3     1064     PS3 2009 Role-Playing
## 3243          3     3880      PC 2009 Role-Playing
## 3244          3     5504     PS3 2014     Fighting
## 3245          3     9737     PSV 2014     Fighting
## 3246          3    11514    X360 2014     Fighting
## 3247          3     4257     PS2 2005     Fighting
## 3248          3     6853      XB 2005     Fighting
## 3249          3     7491      GC 2005     Fighting
## 3250          3     5931     PSV 2016 Role-Playing
## 3251          3     7222     PS4 2016 Role-Playing
## 3252          3     9906     PS3 2016 Role-Playing
## 3253          3     6205     PS4 2016       Action
## 3254          3     7062     PSV 2016       Action
## 3255          3     9540     PS3 2016       Action
## 3256          3     2156     Wii 2012 Role-Playing
## 3257          3     4794    WiiU 2013 Role-Playing
## 3258          3     8429     3DS 2014 Role-Playing
## 3259          3     1617     PS2 2004       Racing
## 3260          3     2693      XB 2004       Racing
## 3261          3    14265     GBA 2005       Racing
## 3262          3     8726     PS2 2001       Racing
## 3263          3    11726      GC 2002       Racing
## 3264          3    14171     GBA 2001       Racing
## 3265          3     6182     PS2 2006       Racing
## 3266          3    12156      XB 2006       Racing
## 3267          3    14601     Wii 2007       Racing
## 3268          3     9613     PS2 2002       Racing
## 3269          3    14598      GC 2003       Racing
## 3270          3    14883     GBA 2003       Racing
## 3271          3     2471    X360 2011      Shooter
## 3272          3     2668     PS3 2011      Shooter
## 3273          3     4764      PC 2011      Shooter
## 3274          3     4889     PS3 2011 Role-Playing
## 3275          3     5123    X360 2011 Role-Playing
## 3276          3     8251      PC 2011 Role-Playing
## 3277          3     1099     PS4 2015       Action
## 3278          3     2556    XOne 2015       Action
## 3279          3     8077      PC 2015       Action
## 3280          3     2868     PS3 2007       Action
## 3281          3     5876    X360 2007       Action
## 3282          3     6728     PS2 2008       Action
## 3283          3     5878     PS4 2014       Action
## 3284          3     8501     PS3 2013       Action
## 3285          3     8990     PSV 2013       Action
## 3286          3     4005     PS3 2008       Action
## 3287          3     5432     PS2 2008       Action
## 3288          3     7757    X360 2008       Action
## 3289          3     4312     PSP 2009       Action
## 3290          3     5979     PS3 2009       Action
## 3291          3     7041    X360 2009       Action
## 3292          3     1524     Wii 2010       Sports
## 3293          3     2253     PS3 2010       Sports
## 3294          3     4925    X360 2010       Sports
## 3295          3    14401     PS2 2002       Puzzle
## 3296          3    16082      XB 2002       Puzzle
## 3297          3    16467      GC 2002       Puzzle
## 3298          3     4338    X360 2008      Shooter
## 3299          3     5325     PS3 2008      Shooter
## 3300          3    15898      PC 2007      Shooter
## 3301          3      429     PS2 2003       Action
## 3302          3     1681      XB 2003       Action
## 3303          3     4321      GC 2003       Action
## 3304          3     8558      DS 2006       Action
## 3305          3     9179    X360 2006       Action
## 3306          3    10169     PSP 2006       Action
## 3307          3     2190     PS4 2015      Shooter
## 3308          3     3254    XOne 2015      Shooter
## 3309          3     8029      PC 2015      Shooter
## 3310          3     3804    X360 2009      Shooter
## 3311          3     4082     PS3 2009      Shooter
## 3312          3    11919      PC 2009      Shooter
## 3313          3     4238     PS3 2011      Shooter
## 3314          3     4350    X360 2011      Shooter
## 3315          3     8727      PC 2011      Shooter
## 3316          3     9992     PS2 2002       Racing
## 3317          3    14367      GC 2002       Racing
## 3318          3    15365     GBA 2002       Racing
## 3319          3     1438     PS3 2010       Racing
## 3320          3     2347    X360 2010       Racing
## 3321          3    12764      PC 2010       Racing
## 3322          3     1933     PS3 2012       Racing
## 3323          3     3950    X360 2012       Racing
## 3324          3     8930      PC 2012       Racing
## 3325          3     4067     PS3 2014       Racing
## 3326          3     6555    X360 2014       Racing
## 3327          3    10697      PC 2014       Racing
## 3328          3     3093     PS4 2015       Racing
## 3329          3     6827    XOne 2015       Racing
## 3330          3    13342      PC 2015       Racing
## 3331          3     6382     PS4 2016       Racing
## 3332          3    11142    XOne 2016       Racing
## 3333          3    15303      PC 2016       Racing
## 3334          3     5344     PS3 2012       Racing
## 3335          3     6105    X360 2012       Racing
## 3336          3    15068      PC 2012       Racing
## 3337          3     3226     PS2 2001       Sports
## 3338          3     8144      GC 2001       Sports
## 3339          3     8828      PS 2001       Sports
## 3340          3     5509     PS3 2008       Sports
## 3341          3     5950    X360 2008       Sports
## 3342          3    10856      DS 2008       Sports
## 3343          3      209    X360 2008 Role-Playing
## 3344          3      300     PS3 2008 Role-Playing
## 3345          3     2105      PC 2008 Role-Playing
## 3346          3      110     PS4 2015 Role-Playing
## 3347          3      288    XOne 2015 Role-Playing
## 3348          3     1632      PC 2015 Role-Playing
## 3349          3      290    X360 2010 Role-Playing
## 3350          3      431     PS3 2010 Role-Playing
## 3351          3     1743      PC 2010 Role-Playing
## 3352          3     7872     Wii 2011         Misc
## 3353          3    10026     PS3 2011         Misc
## 3354          3    11652    X360 2011         Misc
## 3355          3     4011     PS2 2005       Action
## 3356          3     6357      XB 2005       Action
## 3357          3     6881      GC 2005       Action
## 3358          3     1153    X360 2008       Action
## 3359          3     1385     PS3 2008       Action
## 3360          3     4078      PC 2008       Action
## 3361          3      383     PS3 2012      Shooter
## 3362          3      460    X360 2012      Shooter
## 3363          3     2108      PC 2012      Shooter
## 3364          3      772     PS4 2016       Action
## 3365          3     2436    XOne 2016       Action
## 3366          3     9252      PC 2016       Action
## 3367          3     2104      PC 2012   Simulation
## 3368          3     4955    X360 2013   Simulation
## 3369          3     8612     PS3 2013   Simulation
## 3370          3     2399     PS2 2005     Fighting
## 3371          3     3342      XB 2005     Fighting
## 3372          3     8275      GC 2005     Fighting
## 3373          3      985    SNES 1991 Role-Playing
## 3374          3     2706     NES 1988 Role-Playing
## 3375          3     6671      WS 2001 Role-Playing
## 3376          3     2129     PS4 2015 Role-Playing
## 3377          3     2546     PSP 2011 Role-Playing
## 3378          3     6703    XOne 2015 Role-Playing
## 3379          3     1256      PC 2010 Role-Playing
## 3380          3     1823     PS3 2013 Role-Playing
## 3381          3     2832     PS4 2014 Role-Playing
## 3382          3     9729     PS4 2015       Action
## 3383          3    15271     PS3 2015       Action
## 3384          3    15643      PC 2015       Action
## 3385          3     8149     PS2 2002       Action
## 3386          3    11550      XB 2002       Action
## 3387          3    14662      GC 2002       Action
## 3388          3     5946     PS3 2012     Fighting
## 3389          3    12296    X360 2012     Fighting
## 3390          3    15409    WiiU 2013     Fighting
## 3391          3     4142     Wii 2008       Racing
## 3392          3     7637     PS2 2008       Racing
## 3393          3     9058     PSP 2008       Racing
## 3394          3    16310      GC 2003       Racing
## 3395          3    10555     PS2 2003       Racing
## 3396          3    14462      XB 2003       Racing
## 3397          3     3860     PS2 2003      Shooter
## 3398          3     7087      XB 2003      Shooter
## 3399          3     9637      GC 2003      Shooter
## 3400          3     1942     PS2 2002       Racing
## 3401          3    10897      GC 2002       Racing
## 3402          3    16212     GBA 2003       Racing
## 3403          3    11091     PS2 2003       Racing
## 3404          3    15138      XB 2003       Racing
## 3405          3    15671      GC 2003       Racing
## 3406          3    13796     PS3 2009     Strategy
## 3407          3    15150     Wii 2009     Strategy
## 3408          3    15191      DS 2009     Strategy
## 3409          3    10457     PS2 2005     Platform
## 3410          3    13321      GC 2005     Platform
## 3411          3    14740      XB 2005     Platform
## 3412          3     5962     PS3 2010      Shooter
## 3413          3     7597    X360 2010      Shooter
## 3414          3    12873      PC 2010      Shooter
## 3415          3     5703    X360 2009       Racing
## 3416          3     6749     PS3 2009       Racing
## 3417          3    15193      PC 2009       Racing
## 3418          3    12155     PS2 2004     Strategy
## 3419          3    14606      XB 2004     Strategy
## 3420          3    15028      GC 2004     Strategy
## 3421          3     4883     PS3 2013       Racing
## 3422          3     6056    X360 2013       Racing
## 3423          3    12102      PC 2013       Racing
## 3424          3     7370     PS3 2014       Racing
## 3425          3    10581    X360 2014       Racing
## 3426          3    14781      PC 2014       Racing
## 3427          3     6546    X360 2012 Role-Playing
## 3428          3     6635     PS3 2012 Role-Playing
## 3429          3    11371      PC 2012 Role-Playing
## 3430          3     1765     PS2 2001       Action
## 3431          3     8104      GC 2002       Action
## 3432          3     8415      XB 2002       Action
## 3433          3     4999     PS3 2010       Sports
## 3434          3    11333    X360 2010       Sports
## 3435          3    10957     Wii 2010       Sports
## 3436          3      595    X360 2009       Action
## 3437          3      806     PS3 2010       Action
## 3438          3    10835      PC 2010       Action
## 3439          3     7669     PS2 2003     Strategy
## 3440          3     9325      XB 2003     Strategy
## 3441          3    11779      GC 2003     Strategy
## 3442          3     8290     PS2 2003     Strategy
## 3443          3    11520      XB 2003     Strategy
## 3444          3    15732      GC 2003     Strategy
## 3445          3     5520      DS 2008    Adventure
## 3446          3     8281     Wii 2008    Adventure
## 3447          3    11872     PS2 2008    Adventure
## 3448          3       52    X360 2008       Action
## 3449          3       57     PS3 2008       Action
## 3450          3     2359      PC 2008       Action
## 3451          3     4629     PS3 2010         Misc
## 3452          3     4739    X360 2010         Misc
## 3453          3     5065     Wii 2010         Misc
## 3454          3     7460    X360 2010      Shooter
## 3455          3     9406     Wii 2010      Shooter
## 3456          3    14092     PS3 2010      Shooter
## 3457          3    13937      DS 2006      Shooter
## 3458          3    14733     GBA 2006      Shooter
## 3459          3    16337     PS2 2006      Shooter
## 3460          3    12470     Wii 2009    Adventure
## 3461          3    13429      DS 2009    Adventure
## 3462          3    15112      PC 2009    Adventure
## 3463          3    11253     PSP 2008     Fighting
## 3464          3    12420     PS2 2008     Fighting
## 3465          3    14372     Wii 2009     Fighting
## 3466          3     2050     Wii 2010         Misc
## 3467          3     2407    X360 2010         Misc
## 3468          3     2523     PS3 2010         Misc
## 3469          3    12802     PS4 2015       Sports
## 3470          3    13301     PS3 2015       Sports
## 3471          3    16394    X360 2015       Sports
## 3472          3     5737      DS 2006       Action
## 3473          3     6636      GC 2006       Action
## 3474          3     9257     Wii 2006       Action
## 3475          3     9976     PS2 2008    Adventure
## 3476          3    10888     PSP 2008    Adventure
## 3477          3    11155     Wii 2008    Adventure
## 3478          3     1330     Wii 2008       Puzzle
## 3479          3     3512     PS2 2008       Puzzle
## 3480          3     7269      DS 2009       Puzzle
## 3481          3     2524     Wii 2010         Misc
## 3482          3     6750     PS3 2010         Misc
## 3483          3     7377    X360 2010         Misc
## 3484          3     8138     PS3 2011      Shooter
## 3485          3    10113     Wii 2011      Shooter
## 3486          3    15612      PC 2011      Shooter
## 3487          3     8412     PS3 2008       Action
## 3488          3    10307    X360 2008       Action
## 3489          3    13663     PSP 2008       Action
## 3490          3     6039     PS2 2005   Simulation
## 3491          3     9498      XB 2005   Simulation
## 3492          3    15433      PC 2005   Simulation
## 3493          3     1512     Wii 2008         Misc
## 3494          3     5357     PS2 2008         Misc
## 3495          3     7681    X360 2008         Misc
## 3496          3      483     PS2 2002       Action
## 3497          3     9503      GC 2003       Action
## 3498          3     1699      XB 2002       Action
## 3499          3      747     PS3 2012       Action
## 3500          3      999    X360 2012       Action
## 3501          3     6709      PC 2012       Action
## 3502          3     1306    X360 2011      Shooter
## 3503          3     2275     PS3 2011      Shooter
## 3504          3     6796      PC 2011      Shooter
## 3505          3     5731     PS4 2016      Shooter
## 3506          3     9702    XOne 2016      Shooter
## 3507          3    15342      PC 2016      Shooter
## 3508          3     4178     PS2 2002       Racing
## 3509          3     8474     GBA 2002       Racing
## 3510          3    10153      GC 2002       Racing
## 3511          3     3385     PS2 2004       Racing
## 3512          3     4378     GBA 2004       Racing
## 3513          3    10534      XB 2004       Racing
## 3514          3     1953     PS2 2003       Action
## 3515          3     5471      XB 2003       Action
## 3516          3     7893      GC 2003       Action
## 3517          3     6579     PS3 2011       Action
## 3518          3     7246    X360 2011       Action
## 3519          3    12948      PC 2011       Action
## 3520          3     4865     PS2 2003     Platform
## 3521          3    10939      GC 2003     Platform
## 3522          3    11819      XB 2003     Platform
## 3523          3     8834     PS2 2005    Adventure
## 3524          3    10668      XB 2005    Adventure
## 3525          3    15203      PC 2005    Adventure
## 3526          3     8568     PS2 2003         Misc
## 3527          3    12349      GC 2004         Misc
## 3528          3    13382      XB 2004         Misc
## 3529          3    16330      PC 2012      Shooter
## 3530          3    11965     PS3 2012      Shooter
## 3531          3    12487    X360 2012      Shooter
## 3532          3     5579     PS3 2014     Fighting
## 3533          3     6473     PSV 2014     Fighting
## 3534          3     6695     PS4 2015     Fighting
## 3535          3    10097     PS3 2011   Simulation
## 3536          3    10995    X360 2011   Simulation
## 3537          3    13841      PC 2011   Simulation
## 3538          3      364     PS2 2001      Shooter
## 3539          3     2315      XB 2002      Shooter
## 3540          3     2825      GC 2002      Shooter
## 3541          3     5233     PS3 2012      Shooter
## 3542          3     5929    X360 2012      Shooter
## 3543          3     9391    WiiU 2012      Shooter
## 3544          3     8223     PSV 2016       Sports
## 3545          3     8402     PS4 2016       Sports
## 3546          3    10158     PS3 2016       Sports
## 3547          3     7493     PS3 2012       Action
## 3548          3     8810     PSP 2012       Action
## 3549          3    11139     PSV 2012       Action
## 3550          3     6487     PS3 2013       Sports
## 3551          3     8353     PSP 2013       Sports
## 3552          3    10773     PSV 2013       Sports
## 3553          3    11025    X360 2011       Racing
## 3554          3    11463     Wii 2011       Racing
## 3555          3    11768     PS3 2011       Racing
## 3556          3     4653     GBA 2001     Platform
## 3557          3     4707     PS2 2002     Platform
## 3558          3    11184      GC 2002     Platform
## 3559          3     5416    X360 2011       Sports
## 3560          3     6498     PS3 2011       Sports
## 3561          3    13323      PC 2011       Sports
## 3562          3    11158     Wii 2008       Action
## 3563          3    11926     PS2 2008       Action
## 3564          3    12605    X360 2008       Action
## 3565          3     6399     PS2 2003   Simulation
## 3566          3    12146      XB 2003   Simulation
## 3567          3    14889      PC 2003   Simulation
## 3568          3     9047    X360 2006       Action
## 3569          3    15751      PC 2006       Action
## 3570          3    15953     PS2 2006       Action
## 3571          3      978     PS3 2010       Action
## 3572          3     1134    X360 2010       Action
## 3573          3     9549      PC 2010       Action
## 3574          3      949     PS4 2015       Action
## 3575          3     2369    XOne 2015       Action
## 3576          3     9138      PC 2015       Action
## 3577          3       61     Wii 2011         Misc
## 3578          3      840    X360 2011         Misc
## 3579          3     3212     PS3 2011         Misc
## 3580          3     4763    X360 2011         Misc
## 3581          3     5957     Wii 2011         Misc
## 3582          3     6662     PS3 2011         Misc
## 3583          3    11554    WiiU 2015       Action
## 3584          3    11867    X360 2015       Action
## 3585          3    12119    XOne 2015       Action
## 3586          3    12837     PS4 2016       Action
## 3587          3    13269     PSV 2016       Action
## 3588          3    13622     PS3 2016       Action
## 3589          3     3398     PS3 2010      Shooter
## 3590          3     4031    X360 2010      Shooter
## 3591          3    11933      PC 2010      Shooter
## 3592          3     5845     PS2 2005         Misc
## 3593          3    11922      GC 2005         Misc
## 3594          3    12209      XB 2005         Misc
## 3595          3     5565     Wii 2008         Misc
## 3596          3    10013     PS3 2008         Misc
## 3597          3    11103    X360 2008         Misc
## 3598          3     2913     PS2 2003      Shooter
## 3599          3     6837      XB 2003      Shooter
## 3600          3    15279     GBA 2004      Shooter
## 3601          3     9348     PS2 2004       Action
## 3602          3    12943      XB 2004       Action
## 3603          3    13541      GC 2004       Action
## 3604          3     2351    X360 2012 Role-Playing
## 3605          3     2390     PS3 2012 Role-Playing
## 3606          3     5788      PC 2012 Role-Playing
## 3607          3    10827     PSP 2010    Adventure
## 3608          3    14404     PS2 2010    Adventure
## 3609          3    16531     3DS 2015    Adventure
## 3610          3    14548    X360 2015       Action
## 3611          3    15174     PS3 2015       Action
## 3612          3    15339     3DS 2015       Action
## 3613          3     5821     3DS 2013    Adventure
## 3614          3     8639     PSV 2013    Adventure
## 3615          3    14355      DS 2013    Adventure
## 3616          3     3767     PS2 2003       Action
## 3617          3     7813      XB 2003       Action
## 3618          3    16450      PC 2003       Action
## 3619          3     6569    X360 2008      Shooter
## 3620          3     9332     PS3 2008      Shooter
## 3621          3    15544      PC 2008      Shooter
## 3622          3     2724     PS2 2001     Fighting
## 3623          3     9326      XB 2002     Fighting
## 3624          3     9560      GC 2002     Fighting
## 3625          3    14554     PS3 2011       Sports
## 3626          3    14871     Wii 2011       Sports
## 3627          3    15613    X360 2011       Sports
## 3628          3     5098     PS4 2016    Adventure
## 3629          3    10049    XOne 2016    Adventure
## 3630          3    13564      PC 2016    Adventure
## 3631          3     7978     PSP 2012 Role-Playing
## 3632          3    10499     3DS 2013 Role-Playing
## 3633          3    13571     PSV 2012 Role-Playing
## 3634          3    13047     PS2 2009    Adventure
## 3635          3    13668     PSP 2010    Adventure
## 3636          3    14860     PSV 2012       Action
## 3637          3     4991     PS2 2007       Action
## 3638          3     7005     Wii 2007       Action
## 3639          3    11444    X360 2007       Action
## 3640          3     3953     PS2 2003     Platform
## 3641          3     8172     GBA 2003     Platform
## 3642          3     8309      GC 2003     Platform
## 3643          3     3894     PS4 2014 Role-Playing
## 3644          3     7313    XOne 2014 Role-Playing
## 3645          3    14472      PC 2014 Role-Playing
## 3646          3     2162     PS3 2010      Shooter
## 3647          3     2699    X360 2010      Shooter
## 3648          3    14791      PC 2010      Shooter
## 3649          3     7290     PS3 2013      Shooter
## 3650          3     9780    X360 2013      Shooter
## 3651          3    13688      PC 2013      Shooter
## 3652          3     3427    X360 2008       Action
## 3653          3     3915     PS3 2008       Action
## 3654          3    15702      PC 2008       Action
## 3655          3     2239     PS2 2007       Sports
## 3656          3     5730     PS3 2007       Sports
## 3657          3     6180     PSP 2007       Sports
## 3658          3     2938     PS3 2008       Sports
## 3659          3     4631     PS2 2008       Sports
## 3660          3     5533     PSP 2008       Sports
## 3661          3     2851     PS3 2009       Sports
## 3662          3     5500     PS2 2009       Sports
## 3663          3     6552     PSP 2009       Sports
## 3664          3     2880     PS3 2010       Sports
## 3665          3     4693     PS2 2010       Sports
## 3666          3     7549     PSP 2010       Sports
## 3667          3     3493     PS3 2011       Sports
## 3668          3     8621     PSP 2011       Sports
## 3669          3     9396     PS2 2011       Sports
## 3670          3     3113     PS4 2014       Sports
## 3671          3     4961     PS3 2014       Sports
## 3672          3     9290     PSV 2014       Sports
## 3673          3     2273     PS4 2015       Sports
## 3674          3     4930     PS3 2015       Sports
## 3675          3    14082     PSV 2015       Sports
## 3676          3     8799     PS2 2008       Sports
## 3677          3     9343     Wii 2008       Sports
## 3678          3    12677      DS 2008       Sports
## 3679          3     3775     PS2 2003       Sports
## 3680          3    10881      XB 2003       Sports
## 3681          3    13628      GC 2003       Sports
## 3682          3     6595     PS2 2004       Racing
## 3683          3    10737      XB 2004       Racing
## 3684          3    13193     PSP 2006       Racing
## 3685          3     1466     PS2 2004       Sports
## 3686          3     3408      XB 2004       Sports
## 3687          3     6608      GC 2004       Sports
## 3688          3     1217     PS2 2005       Sports
## 3689          3     2210      XB 2005       Sports
## 3690          3     5547      GC 2005       Sports
## 3691          3     3624     PS2 2001       Racing
## 3692          3     8684     GBA 2001       Racing
## 3693          3     9460      XB 2001       Racing
## 3694          3     6172     PS2 2002       Racing
## 3695          3    10808      XB 2002       Racing
## 3696          3    10988      GC 2002       Racing
## 3697          3    11522     PS4 2016       Racing
## 3698          3    13176    XOne 2016       Racing
## 3699          3    16326      PC 2016       Racing
## 3700          3     1087      PS 2000       Sports
## 3701          3     1260     PS2 2000       Sports
## 3702          3     3177     N64 2000       Sports
## 3703          3     2933     PS2 2004       Action
## 3704          3     7053      XB 2004       Action
## 3705          3    13370      PC 2002       Action
## 3706          3     1196    X360 2010       Action
## 3707          3     1239     PS3 2010       Action
## 3708          3     4841      PC 2010       Action
## 3709          3    10787    X360 2011       Action
## 3710          3    11502     PS3 2010       Action
## 3711          3    11658     Wii 2011       Action
## 3712          3     3594     PS2 2007       Action
## 3713          3     3714     Wii 2007       Action
## 3714          3     5664     PSP 2007       Action
## 3715          3     7465     PS3 2011       Action
## 3716          3     7721     Wii 2011       Action
## 3717          3     8123    X360 2011       Action
## 3718          3     2719     PS2 2002     Fighting
## 3719          3     9095      DC 2000     Fighting
## 3720          3     9261      XB 2002     Fighting
## 3721          3      449    X360 2010 Role-Playing
## 3722          3     1283     PS3 2011 Role-Playing
## 3723          3     4869      PC 2010 Role-Playing
## 3724          3     4702    X360 2012       Action
## 3725          3     4717     PS3 2012       Action
## 3726          3     6237      PC 2012       Action
## 3727          3     1464     PS2 2003      Shooter
## 3728          3     3144      XB 2003      Shooter
## 3729          3    14725      PC 2003      Shooter
## 3730          3      910     PS3 2012      Shooter
## 3731          3     1103    X360 2012      Shooter
## 3732          3     4535      PC 2012      Shooter
## 3733          3     1621     PS3 2007      Shooter
## 3734          3     1851    X360 2007      Shooter
## 3735          3    12831      PC 2007      Shooter
## 3736          3      115     PS2 2002      Shooter
## 3737          3     1270      XB 2002      Shooter
## 3738          3     3395      GC 2002      Shooter
## 3739          3      191     PS2 2003      Shooter
## 3740          3     1735      XB 2003      Shooter
## 3741          3     4580      GC 2003      Shooter
## 3742          3     1313     PS3 2012       Action
## 3743          3     1727    X360 2012       Action
## 3744          3     5487      PC 2012       Action
## 3745          3     3428     PS2 2004     Platform
## 3746          3     4634      GC 2004     Platform
## 3747          3     9466      XB 2005     Platform
## 3748          3     1951    X360 2008      Shooter
## 3749          3     2385     PS3 2008      Shooter
## 3750          3     5039     PS2 2008      Shooter
## 3751          3     5333     PS2 2003      Shooter
## 3752          3     8267      XB 2003      Shooter
## 3753          3    10463      GC 2003      Shooter
## 3754          3     4088     PSV 2012       Action
## 3755          3    10546     PS3 2011       Action
## 3756          3    16536    X360 2011       Action
## 3757          3     8808     Wii 2006      Shooter
## 3758          3    12971     PSP 2007      Shooter
## 3759          3    16195     PS2 2007      Shooter
## 3760          3     1303     PS2 2003         Misc
## 3761          3     4558      XB 2003         Misc
## 3762          3     8437      GC 2003         Misc
## 3763          3     3007     PS2 2004         Misc
## 3764          3     5785      XB 2004         Misc
## 3765          3     8520      GC 2004         Misc
## 3766          3     8539     PS2 2005         Misc
## 3767          3    11504      XB 2005         Misc
## 3768          3    12093      GC 2005         Misc
## 3769          3    13437     PS4 2016     Platform
## 3770          3    15469    WiiU 2016     Platform
## 3771          3    16565    XOne 2016     Platform
## 3772          3     5625    X360 2011         Misc
## 3773          3     6503     Wii 2010         Misc
## 3774          3     9863      DS 2010         Misc
## 3775          3     1738    X360 2008     Platform
## 3776          3     1790     PS3 2008     Platform
## 3777          3    12705      PC 2009     Platform
## 3778          3     5663     PS4 2016     Platform
## 3779          3     8862    XOne 2016     Platform
## 3780          3    13102      PC 2016     Platform
## 3781          3     8219      PC 2011    Adventure
## 3782          3    10151     PS3 2011    Adventure
## 3783          3    12405    X360 2011    Adventure
## 3784          3     3946     PS2 2002         Misc
## 3785          3     8047      XB 2002         Misc
## 3786          3     9592      GC 2002         Misc
## 3787          3     2726     Wii 2010         Misc
## 3788          3     4744     PS3 2010         Misc
## 3789          3     6123    X360 2010         Misc
## 3790          3      537     3DS 2011 Role-Playing
## 3791          3      720     Wii 2009 Role-Playing
## 3792          3     2852    WiiU 2012 Role-Playing
## 3793          3     3108     PS2 2002       Racing
## 3794          3    10526     GBA 2002       Racing
## 3795          3    13386      GC 2002       Racing
## 3796          3     5666     Wii 2008 Role-Playing
## 3797          3     9071      DS 2008 Role-Playing
## 3798          3    10174     PS2 2008 Role-Playing
## 3799          3     1223    SNES 1994     Fighting
## 3800          3     1460     GEN 1994     Fighting
## 3801          3     3680      PS 1995     Fighting
## 3802          3      554     PS4 2015     Fighting
## 3803          3     1446    XOne 2015     Fighting
## 3804          3    13025      PC 2015     Fighting
## 3805          3      916     PS2 2004     Fighting
## 3806          3     2715      XB 2004     Fighting
## 3807          3    10172      GC 2005     Fighting
## 3808          3     4950     PS3 2008       Racing
## 3809          3     5323    X360 2008       Racing
## 3810          3     7169     PS2 2008       Racing
## 3811          3      338      DS 2007   Simulation
## 3812          3     1082     Wii 2007   Simulation
## 3813          3    14731      PC 2008   Simulation
## 3814          3     6088    X360 2007       Racing
## 3815          3     6953     PS2 2007       Racing
## 3816          3     7046     PS3 2007       Racing
## 3817          3     3777     PS2 2008       Racing
## 3818          3     6586     PS3 2008       Racing
## 3819          3     6623    X360 2008       Racing
## 3820          3     1380     PS2 2004       Racing
## 3821          3     4323      XB 2004       Racing
## 3822          3     9701      GC 2004       Racing
## 3823          3     5851    X360 2011       Racing
## 3824          3     6369     PS3 2011       Racing
## 3825          3     6947     Wii 2011       Racing
## 3826          3     3365     PS2 2001       Racing
## 3827          3     7516      XB 2001       Racing
## 3828          3     8564     GBA 2002       Racing
## 3829          3     1751     PS2 2001       Racing
## 3830          3     4601      PS 2001       Racing
## 3831          3     5480      XB 2001       Racing
## 3832          3     5789      GC 2002       Racing
## 3833          3     6376      XB 2002       Racing
## 3834          3     1651     PS2 2003       Racing
## 3835          3     6442     PS3 2006       Sports
## 3836          3     7627     PSP 2006       Sports
## 3837          3    15675     PS2 2006       Sports
## 3838          3     9451     PS3 2007       Sports
## 3839          3     9539     PS2 2007       Sports
## 3840          3    14576     PSP 2007       Sports
## 3841          3     8327     PSP 2008       Sports
## 3842          3     8442     PS2 2008       Sports
## 3843          3     8843     PS3 2008       Sports
## 3844          3     1650     PS2 2002       Sports
## 3845          3     7581      XB 2002       Sports
## 3846          3     9879      GC 2002       Sports
## 3847          3     1978     PS2 2002       Sports
## 3848          3     5665      XB 2002       Sports
## 3849          3     8688      GC 2002       Sports
## 3850          3     2365     PS2 2005       Action
## 3851          3     5205      XB 2005       Action
## 3852          3     7029    X360 2005       Action
## 3853          3     2435    X360 2007       Sports
## 3854          3     3345     PS2 2007       Sports
## 3855          3     3660     PS3 2007       Sports
## 3856          3     1559    X360 2008       Sports
## 3857          3     3286     PS3 2008       Sports
## 3858          3     4757     PS2 2008       Sports
## 3859          3     1843     GEN 1994       Sports
## 3860          3     2048    SNES 1995       Sports
## 3861          3     6716      PS 1995       Sports
## 3862          3     3693     PS3 2009       Sports
## 3863          3     4387    X360 2009       Sports
## 3864          3     6863     PSP 2009       Sports
## 3865          3      932     PS2 2001       Sports
## 3866          3     3876      PS 2001       Sports
## 3867          3     4862      XB 2001       Sports
## 3868          3     1106     PS2 2002       Sports
## 3869          3     5903      GC 2002       Sports
## 3870          3     5164      XB 2002       Sports
## 3871          3      841     PS2 2003       Sports
## 3872          3     3916      XB 2003       Sports
## 3873          3     6374      GC 2003       Sports
## 3874          3      592     PS2 2004       Sports
## 3875          3     2323      XB 2004       Sports
## 3876          3     4394      GC 2004       Sports
## 3877          3     1949     PS2 2005       Sports
## 3878          3     5602      XB 2005       Sports
## 3879          3     5988      GC 2005       Sports
## 3880          3      877     PS2 2003       Sports
## 3881          3     2979      XB 2003       Sports
## 3882          3     3755      GC 2003       Sports
## 3883          3     6246     PS2 2008       Sports
## 3884          3     7265    X360 2008       Sports
## 3885          3     8457     PS3 2008       Sports
## 3886          3     2250    X360 2010       Sports
## 3887          3     2464     PS3 2010       Sports
## 3888          3     5025     PS2 2010       Sports
## 3889          3     1346     PS2 2002       Sports
## 3890          3     3841      XB 2002       Sports
## 3891          3     7446      GC 2002       Sports
## 3892          3     1097     PS2 2003       Sports
## 3893          3     4510      XB 2003       Sports
## 3894          3     8751      GC 2003       Sports
## 3895          3     1133     PS2 2004       Sports
## 3896          3     2983      XB 2004       Sports
## 3897          3     7175      GC 2004       Sports
## 3898          3     6528     PS2 2007       Sports
## 3899          3     7350    X360 2007       Sports
## 3900          3    10945     PS3 2007       Sports
## 3901          3     1493     PS2 2002       Sports
## 3902          3     3875      XB 2002       Sports
## 3903          3     7281      GC 2002       Sports
## 3904          3     6193     PS2 2002       Sports
## 3905          3    10849      XB 2002       Sports
## 3906          3    11120      GC 2002       Sports
## 3907          3     4487     PS2 2002       Sports
## 3908          3     9104      XB 2002       Sports
## 3909          3     9197      GC 2002       Sports
## 3910          3     7101     PS2 2003       Sports
## 3911          3    12913      XB 2003       Sports
## 3912          3    15152      GC 2003       Sports
## 3913          3     1360     PS2 2004       Sports
## 3914          3     3054      XB 2004       Sports
## 3915          3     5331      GC 2004       Sports
## 3916          3     1142     PS2 2004       Sports
## 3917          3     4096      XB 2004       Sports
## 3918          3     7662      GC 2004       Sports
## 3919          3     3495     PS2 2005       Sports
## 3920          3     6678      XB 2005       Sports
## 3921          3    11398      GC 2005       Sports
## 3922          3     1682     PS2 2001       Sports
## 3923          3     6341      XB 2001       Sports
## 3924          3     9707     GBA 2002       Sports
## 3925          3     2220     PS2 2002       Sports
## 3926          3     7464      XB 2002       Sports
## 3927          3     9409      GC 2002       Sports
## 3928          3     2139     PS2 2003       Sports
## 3929          3     8199      XB 2003       Sports
## 3930          3    10566      GC 2003       Sports
## 3931          3     4344     PS2 2004       Sports
## 3932          3     8690      XB 2004       Sports
## 3933          3    12092      GC 2004       Sports
## 3934          3     7470     PS2 2002       Sports
## 3935          3     9988      XB 2002       Sports
## 3936          3    15647      GC 2002       Sports
## 3937          3     4579     PS2 2005       Sports
## 3938          3     7364      XB 2005       Sports
## 3939          3    10654    X360 2005       Sports
## 3940          3     9672     PS3 2006       Sports
## 3941          3    11328    X360 2006       Sports
## 3942          3    16362      XB 2006       Sports
## 3943          3     3569     PS2 2001       Sports
## 3944          3     6283      XB 2001       Sports
## 3945          3     7444      GC 2001       Sports
## 3946          3     6211     PS2 2002       Sports
## 3947          3    10111      XB 2002       Sports
## 3948          3    11643      GC 2002       Sports
## 3949          3    13735      GC 2003       Sports
## 3950          3     7827     PS2 2003       Sports
## 3951          3    12243      XB 2003       Sports
## 3952          3    10681     PS3 2010         Misc
## 3953          3    13637     Wii 2010         Misc
## 3954          3    14583    X360 2010         Misc
## 3955          3    12214    X360 2011         Misc
## 3956          3    10300     Wii 2011         Misc
## 3957          3    13326     PS3 2011         Misc
## 3958          3    10810     PS4 2014 Role-Playing
## 3959          3    11266     PSV 2014 Role-Playing
## 3960          3    13002     PS3 2014 Role-Playing
## 3961          3      651     PS4 2015       Racing
## 3962          3     2996    XOne 2015       Racing
## 3963          3    14533      PC 2016       Racing
## 3964          3      782     PS2 2002       Racing
## 3965          3     2514      XB 2002       Racing
## 3966          3     2589      GC 2002       Racing
## 3967          3     2965     PS3 2011       Racing
## 3968          3     4441    X360 2011       Racing
## 3969          3     7853      PC 2011       Racing
## 3970          3     4016     PS2 2007     Platform
## 3971          3     4484     Wii 2007     Platform
## 3972          3    13233      DS 2007     Platform
## 3973          3     8653     Wii 2011       Sports
## 3974          3     9505    X360 2011       Sports
## 3975          3    10478      DS 2011       Sports
## 3976          3     4714     PS2 2005    Adventure
## 3977          3     5272      GC 2005    Adventure
## 3978          3    10263      DS 2006    Adventure
## 3979          3     5439      DS 2009       Action
## 3980          3     5497     Wii 2009       Action
## 3981          3    10230    X360 2009       Action
## 3982          3     4443     PS3 2012       Action
## 3983          3     6724    X360 2012       Action
## 3984          3     7745    WiiU 2012       Action
## 3985          3    13489     PS4 2016         Misc
## 3986          3    13870     PSV 2016         Misc
## 3987          3    14180     PS3 2016         Misc
## 3988          3     8089     PS4 2016 Role-Playing
## 3989          3     8874     PSV 2016 Role-Playing
## 3990          3    12490     PS3 2016 Role-Playing
## 3991          3     3181     Wii 2008       Action
## 3992          3     3230     PS2 2006       Action
## 3993          3     9094     PS3 2012       Action
## 3994          3     6126     PS4 2016     Fighting
## 3995          3    10266     PSV 2016     Fighting
## 3996          3    13765    XOne 2016     Fighting
## 3997          3     4363     PS4 2015       Action
## 3998          3     6051     PS3 2015       Action
## 3999          3     7305     PSV 2015       Action
## 4000          3     2221    X360 2009      Shooter
## 4001          3     2274     PS3 2009      Shooter
## 4002          3    13183      PC 2009      Shooter
## 4003          3     5442     PS3 2011      Shooter
## 4004          3     6050    X360 2011      Shooter
## 4005          3    11918      PC 2011      Shooter
## 4006          3     5577    X360 2009       Action
## 4007          3     5603     PS3 2009       Action
## 4008          3    14217      PC 2009       Action
## 4009          3     1028     PS4 2016      Shooter
## 4010          3     2446    XOne 2016      Shooter
## 4011          3     4511      PC 2016      Shooter
## 4012          3    16060     PSP 2007       Sports
## 4013          3    15868      DS 2007       Sports
## 4014          3     6847     Wii 2008       Sports
## 4015          3    10070     PS3 2010       Sports
## 4016          3    10106     Wii 2010       Sports
## 4017          3    15037    X360 2010       Sports
## 4018          3    11353      GC 2006       Racing
## 4019          3    13658     PSP 2006       Racing
## 4020          3    15140     PS2 2006       Racing
## 4021          3     6854      DS 2008   Simulation
## 4022          3     8499     GBA 2006   Simulation
## 4023          3    10341     Wii 2009   Simulation
## 4024          3    12169     3DS 2014       Action
## 4025          3    14054    WiiU 2014       Action
## 4026          3    15024     Wii 2014       Action
## 4027          3     1856      DS 2007   Simulation
## 4028          3     3441     Wii 2007   Simulation
## 4029          3     3582     PS2 2007   Simulation
## 4030          3     2033      DS 2007   Simulation
## 4031          3     4371     Wii 2007   Simulation
## 4032          3     5104     PS2 2006   Simulation
## 4033          3     4461      DS 2007   Simulation
## 4034          3     4560     Wii 2007   Simulation
## 4035          3     6465     PS2 2007   Simulation
## 4036          3     3346     Wii 2011       Action
## 4037          3     3581      DS 2011       Action
## 4038          3     5521     PS3 2011       Action
## 4039          3    10709     PS2 2003     Platform
## 4040          3    12988      GC 2003     Platform
## 4041          3    12999     GBA 2003     Platform
## 4042          3     9100     PS2 2008       Puzzle
## 4043          3    11013      DS 2008       Puzzle
## 4044          3    12158     PSP 2008       Puzzle
## 4045          3     4213     GBA 2006    Adventure
## 4046          3     6142     PSP 2006    Adventure
## 4047          3     6581      DS 2006    Adventure
## 4048          3     4352     PS4 2016      Shooter
## 4049          3     4432    XOne 2016      Shooter
## 4050          3    13438      PC 2016      Shooter
## 4051          3     5425      DS 2009   Simulation
## 4052          3    10789     Wii 2009   Simulation
## 4053          3    16514      PC 2009   Simulation
## 4054          3      791    X360 2011      Shooter
## 4055          3     1018     PS3 2011      Shooter
## 4056          3     2701      PC 2011      Shooter
## 4057          3     2883     PS2 2004       Action
## 4058          3     4035     GBA 2003       Action
## 4059          3     4815      GC 2004       Action
## 4060          3     2987     PS2 2005       Action
## 4061          3     3474      XB 2005       Action
## 4062          3     8923      GC 2005       Action
## 4063          3     1122     PS2 2004       Action
## 4064          3     2582      XB 2004       Action
## 4065          3     7718      GC 2004       Action
## 4066          3     6138     PS4 2016       Sports
## 4067          3    12414     PS3 2016       Sports
## 4068          3    14741    XOne 2016       Sports
## 4069          3     6844     PSP 2010       Sports
## 4070          3     7473     PS3 2010       Sports
## 4071          3    10426     PS2 2010       Sports
## 4072          3     6810     PSP 2011       Sports
## 4073          3     8084     PS3 2011       Sports
## 4074          3    11973     3DS 2011       Sports
## 4075          3     7673     PSP 2012       Sports
## 4076          3     7952     PS3 2012       Sports
## 4077          3    12737     PSV 2012       Sports
## 4078          3     7651     PS3 2013       Sports
## 4079          3     7663     PSP 2013       Sports
## 4080          3    12352     PSV 2013       Sports
## 4081          3     9193     PS3 2014       Sports
## 4082          3    11098     PSP 2014       Sports
## 4083          3    12099     PSV 2014       Sports
## 4084          3     6706     SAT 1998       Sports
## 4085          3     6986      DC 1999       Sports
## 4086          3     7882      DS 2008       Sports
## 4087          3     2006     PS4 2015       Racing
## 4088          3     7050    XOne 2015       Racing
## 4089          3    10167      PC 2015       Racing
## 4090          3     8712     PS4 2013     Platform
## 4091          3    13248     PSV 2013     Platform
## 4092          3    16181     PS3 2013     Platform
## 4093          3     5852      DS 2009       Puzzle
## 4094          3    12909     Wii 2009       Puzzle
## 4095          3    14120     PSP 2009       Puzzle
## 4096          3     7695     PSP 2006       Puzzle
## 4097          3    14653     Wii 2009       Puzzle
## 4098          3    15181     PS2 2006       Puzzle
## 4099          3     3921     PS3 2010     Strategy
## 4100          3     6254      PC 2010     Strategy
## 4101          3     6294    X360 2010     Strategy
## 4102          3     6131     PS2 2003       Racing
## 4103          3    11165      XB 2003       Racing
## 4104          3    11690      GC 2003       Racing
## 4105          3     1137    X360 2011      Shooter
## 4106          3     1470     PS3 2011      Shooter
## 4107          3     5120      PC 2011      Shooter
## 4108          3     4845      GC 2006       Action
## 4109          3     5114     PS2 2006       Action
## 4110          3     7191     Wii 2006       Action
## 4111          3     5230     PS2 2004       Sports
## 4112          3     8605      XB 2004       Sports
## 4113          3    12548     GBA 2004       Sports
## 4114          3     3356     PS2 2001       Racing
## 4115          3    12186      XB 2001       Racing
## 4116          3     9236      GC 2002       Racing
## 4117          3     2535     PS2 2000     Fighting
## 4118          3     3845      PS 2000     Fighting
## 4119          3     6873     N64 2000     Fighting
## 4120          3     1258     PS2 2002      Shooter
## 4121          3     9757      XB 2003      Shooter
## 4122          3    14172      GC 2003      Shooter
## 4123          3     4307     PS3 2011      Shooter
## 4124          3     4920    X360 2011      Shooter
## 4125          3    11181      PC 2011      Shooter
## 4126          3     2383    X360 2009      Shooter
## 4127          3     2747     PS3 2009      Shooter
## 4128          3    14207      PC 2009      Shooter
## 4129          3    12151     PS2 2002       Sports
## 4130          3    14118      XB 2002       Sports
## 4131          3    15136      GC 2002       Sports
## 4132          3     5275     PS3 2013       Action
## 4133          3     8050    X360 2013       Action
## 4134          3    12498      PC 2013       Action
## 4135          3      202      PS 1996       Action
## 4136          3     8444     SAT 1997       Action
## 4137          3     9673     PS3 2006       Action
## 4138          3      152      PS 1998       Action
## 4139          3     3592     N64 1999       Action
## 4140          3    12676      GC 2003       Action
## 4141          3      197     PS3 2009       Action
## 4142          3      372    X360 2009       Action
## 4143          3    12096      PC 2009       Action
## 4144          3     1708     PS3 2012       Action
## 4145          3     2649    X360 2012       Action
## 4146          3    13753      PC 2012       Action
## 4147          3     1375     PSP 2004       Racing
## 4148          3     2603      PS 1994       Racing
## 4149          3     7667     PSV 2011       Racing
## 4150          3     8108     PS3 2012       Racing
## 4151          3     9942    X360 2012       Racing
## 4152          3    15392      PC 2012       Racing
## 4153          3     1526    XOne 2015    Adventure
## 4154          3     4874    X360 2015    Adventure
## 4155          3    10733      PC 2016    Adventure
## 4156          3     6920     PS3 2012 Role-Playing
## 4157          3     7061      PC 2012 Role-Playing
## 4158          3     8956    X360 2012 Role-Playing
## 4159          3     8304     PS2 2003       Action
## 4160          3    11557      XB 2003       Action
## 4161          3    14363      GC 2003       Action
## 4162          3     3295     PS2 2002      Shooter
## 4163          3     8495      GC 2002      Shooter
## 4164          3     7384      XB 2002      Shooter
## 4165          3    10383     PS3 2012    Adventure
## 4166          3    15306    X360 2012    Adventure
## 4167          3    15692     PSV 2014    Adventure
## 4168          3    10832     Wii 2011         Misc
## 4169          3    11945     PS3 2011         Misc
## 4170          3    13304    X360 2011         Misc
## 4171          3     7074     PS4 2016       Sports
## 4172          3     9713    XOne 2016       Sports
## 4173          3    15153      PC 2016       Sports
## 4174          3     2522     PS2 2002     Platform
## 4175          3     6169     GBA 2002     Platform
## 4176          3     7025      GC 2002     Platform
## 4177          3     1759     PS3 2011         Misc
## 4178          3     1825    X360 2011         Misc
## 4179          3     9842      PC 2011         Misc
## 4180          3     2418     PS2 2002     Fighting
## 4181          3     8872      XB 2002     Fighting
## 4182          3    10845      GC 2002     Fighting
## 4183          3     7130     PS2 2003       Action
## 4184          3     9392      XB 2003       Action
## 4185          3    13174      GC 2003       Action
## 4186          3     1799     PS2 2005 Role-Playing
## 4187          3    11206      XB 2005 Role-Playing
## 4188          3    14546      PC 2009 Role-Playing
## 4189          3     5091     PS3 2009       Action
## 4190          3     6084    X360 2009       Action
## 4191          3    15125      PC 2009       Action
## 4192          3     9068     PS3 2011       Racing
## 4193          3    12198    X360 2011       Racing
## 4194          3    14264      PC 2011       Racing
## 4195          3     7841     PS2 2008         Misc
## 4196          3     8934     PSP 2008         Misc
## 4197          3    11885     Wii 2008         Misc
## 4198          3     3715     PS2 2004       Racing
## 4199          3     6804      XB 2004       Racing
## 4200          3    11258      GC 2004       Racing
## 4201          3     1102     PS2 2000       Sports
## 4202          3     2229     PS3 2012       Sports
## 4203          3     2823    X360 2012       Sports
## 4204          3     3247     PS3 2009 Role-Playing
## 4205          3     3699    X360 2009 Role-Playing
## 4206          3    12479      PC 2008 Role-Playing
## 4207          3     9869     PS3 2014 Role-Playing
## 4208          3    12597    X360 2014 Role-Playing
## 4209          3    15148      PC 2014 Role-Playing
## 4210          3      462    X360 2008       Action
## 4211          3     1061     PS3 2008       Action
## 4212          3    13906      PC 2009       Action
## 4213          3      544    X360 2011       Action
## 4214          3      617     PS3 2011       Action
## 4215          3     5059      PC 2011       Action
## 4216          3    10981     PSP 2008     Fighting
## 4217          3     8842     PS2 2008     Fighting
## 4218          3    12372     Wii 2008     Fighting
## 4219          3     3291     PS2 2006       Action
## 4220          3    11594    X360 2006       Action
## 4221          3    14690     PS3 2013       Action
## 4222          3     6554     PS3 2014       Action
## 4223          3     6893     PS4 2014       Action
## 4224          3    10234     PSV 2014       Action
## 4225          3    10114     PS4 2015       Action
## 4226          3    10121     PS3 2015       Action
## 4227          3    12893     PSV 2015       Action
## 4228          3    11077     PS4 2015       Action
## 4229          3    12738     PS3 2015       Action
## 4230          3    12852     PSV 2015       Action
## 4231          3    10875     PS2 2004     Platform
## 4232          3    13610      XB 2004     Platform
## 4233          3    13986      GC 2004     Platform
## 4234          3     9151     Wii 2009         Misc
## 4235          3     9292    X360 2009         Misc
## 4236          3     9411     PS3 2009         Misc
## 4237          3     2097     Wii 2009       Action
## 4238          3     2401      DS 2009       Action
## 4239          3     5505     PS2 2009       Action
## 4240          3      788     PS2 2002     Platform
## 4241          3     5956      GC 2002     Platform
## 4242          3     9117      XB 2003     Platform
## 4243          3     4288     Wii 2010       Action
## 4244          3     4872      DS 2010       Action
## 4245          3     6390     PS2 2010       Action
## 4246          3     6639      DS 2009         Misc
## 4247          3     6645      PS 1999         Misc
## 4248          3    11076     PSP 2009         Misc
## 4249          3     9043     PS2 2004    Adventure
## 4250          3    11949      XB 2004    Adventure
## 4251          3    13089      GC 2004    Adventure
## 4252          3    13913      PC 2009    Adventure
## 4253          3    14577     Wii 2009    Adventure
## 4254          3    16589      DS 2009    Adventure
## 4255          3    12097     Wii 2008    Adventure
## 4256          3    13055      DS 2008    Adventure
## 4257          3    13444      PC 2006    Adventure
## 4258          3     9826     PS2 2002       Sports
## 4259          3    12121      GC 2002       Sports
## 4260          3    12867      XB 2002       Sports
## 4261          3     5708     Wii 2010         Misc
## 4262          3     6221      DS 2010         Misc
## 4263          3    13199      PC 2010         Misc
## 4264          3     4943     Wii 2010         Misc
## 4265          3     6179      DS 2010         Misc
## 4266          3    13420      PC 2010         Misc
## 4267          3     2103      GC 2005     Platform
## 4268          3     3339     PS2 2005     Platform
## 4269          3     8107      XB 2005     Platform
## 4270          3     5780     SAT 1997 Role-Playing
## 4271          3     5909     3DS 2012 Role-Playing
## 4272          3     8960      PS 1999 Role-Playing
## 4273          3     9362     3DS 2015     Platform
## 4274          3    10400    WiiU 2015     Platform
## 4275          3    11724     PS4 2015     Platform
## 4276          3      927     PS2 2004     Platform
## 4277          3     2032      GC 2004     Platform
## 4278          3     3670      XB 2004     Platform
## 4279          3     6059     PS2 2002         Misc
## 4280          3     9487      XB 2002         Misc
## 4281          3    13079      GC 2003         Misc
## 4282          3     5769     Wii 2008         Misc
## 4283          3     6918      DS 2008         Misc
## 4284          3    12044     PS2 2008         Misc
## 4285          3     2498    X360 2008     Strategy
## 4286          3     2623     PS3 2008     Strategy
## 4287          3     4250      DS 2008     Strategy
## 4288          3     7678     PSP 2007     Strategy
## 4289          3     8467     Wii 2010     Strategy
## 4290          3     9190      XB 2005     Strategy
## 4291          3     3422     PS2 2010       Action
## 4292          3     4097     Wii 2009       Action
## 4293          3     5812     PSP 2010       Action
## 4294          3     6834     PS3 2010      Shooter
## 4295          3    13136      PC 2010      Shooter
## 4296          3     5627    X360 2010      Shooter
## 4297          3    10460     PS3 2009       Racing
## 4298          3    11054     Wii 2009       Racing
## 4299          3    13941    X360 2009       Racing
## 4300          3    11800      GC 2000       Racing
## 4301          3    14002      XB 2002       Racing
## 4302          3    14493     GBA 2004       Racing
## 4303          3     2120     PS3 2012      Shooter
## 4304          3     2453    X360 2012      Shooter
## 4305          3    15272    WiiU 2013      Shooter
## 4306          3     1758    X360 2010      Shooter
## 4307          3     2595     PS3 2011      Shooter
## 4308          3     8654      PC 2010      Shooter
## 4309          3     5307     PS3 2013      Shooter
## 4310          3     7301    X360 2013      Shooter
## 4311          3    11312      PC 2013      Shooter
## 4312          3    12390     PS4 2016       Action
## 4313          3    13873    XOne 2016       Action
## 4314          3    15661      PC 2016       Action
## 4315          3     1244     Wii 2010       Racing
## 4316          3     1890      DS 2010       Racing
## 4317          3     2112     PS3 2010       Racing
## 4318          3      481     PS2 2003     Platform
## 4319          3     1159      GC 2003     Platform
## 4320          3     2309      XB 2003     Platform
## 4321          3     2269      GC 2006       Racing
## 4322          3     3952     PS2 2006       Racing
## 4323          3     9488      XB 2006       Racing
## 4324          3      821     PS2 2003     Fighting
## 4325          3     1253      GC 2003     Fighting
## 4326          3     2066      XB 2003     Fighting
## 4327          3     2118     PS3 2014 Role-Playing
## 4328          3     2179    X360 2014 Role-Playing
## 4329          3     7684      PC 2014 Role-Playing
## 4330          3     7144     PS2 2005       Action
## 4331          3     9577      XB 2005       Action
## 4332          3    12051      GC 2005       Action
## 4333          3     4429     PS2 2003       Action
## 4334          3     8342      XB 2003       Action
## 4335          3    12138      GC 2003       Action
## 4336          3     3548     PS3 2012      Shooter
## 4337          3     4527    X360 2012      Shooter
## 4338          3     7135      PC 2012      Shooter
## 4339          3    10852     PS2 2003       Racing
## 4340          3    12834      XB 2003       Racing
## 4341          3    15497      GC 2003       Racing
## 4342          3     4759     Wii 2008       Racing
## 4343          3     5199      DS 2008       Racing
## 4344          3     7339     PS2 2008       Racing
## 4345          3     4364     PS2 2003       Action
## 4346          3     9122      GC 2003       Action
## 4347          3     9996      XB 2003       Action
## 4348          3      442      PS 2000       Action
## 4349          3     2234    2600 1981       Action
## 4350          3     3796     N64 2000       Action
## 4351          3     3442     PS2 2008       Action
## 4352          3     3521      DS 2008       Action
## 4353          3     3763     Wii 2008       Action
## 4354          3     3914     Wii 2006     Platform
## 4355          3     4038      DS 2006     Platform
## 4356          3     5531      GC 2006     Platform
## 4357          3    12413     3DS 2013      Shooter
## 4358          3    13414    X360 2013      Shooter
## 4359          3    13452    WiiU 2013      Shooter
## 4360          3     1693     GBA 2002     Platform
## 4361          3     1897     PS2 2002     Platform
## 4362          3     7675      GC 2002     Platform
## 4363          3     1148      DS 2007       Action
## 4364          3     3266     Wii 2007       Action
## 4365          3     4489     PS2 2007       Action
## 4366          3     8615      DS 2009       Action
## 4367          3    11817    X360 2009       Action
## 4368          3    11904     PSP 2009       Action
## 4369          3    11173    X360 2015     Platform
## 4370          3    13019     PSV 2015     Platform
## 4371          3    14152     3DS 2015     Platform
## 4372          3     1096     PS2 2001       Racing
## 4373          3     5417      XB 2002       Racing
## 4374          3     7587      GC 2002       Racing
## 4375          3     3139     PS2 2004     Platform
## 4376          3     6094      GC 2004     Platform
## 4377          3     9136      XB 2004     Platform
## 4378          3    11880     PS2 2006         Misc
## 4379          3    14306     PSP 2006         Misc
## 4380          3    14389      XB 2006         Misc
## 4381          3     6572     PS3 2013       Action
## 4382          3     7147    X360 2013       Action
## 4383          3    14705      PC 2013       Action
## 4384          3       93     PS4 2015      Shooter
## 4385          3      379    XOne 2015      Shooter
## 4386          3     3757      PC 2015      Shooter
## 4387          3      353     PS2 2004      Shooter
## 4388          3     1007      XB 2004      Shooter
## 4389          3     7613      PC 2004      Shooter
## 4390          3     3991     PS2 2002      Shooter
## 4391          3     4861      GC 2002      Shooter
## 4392          3     9582      XB 2003      Shooter
## 4393          3    13083     PSV 2015    Adventure
## 4394          3    13125     PS4 2015    Adventure
## 4395          3    14823     PS3 2015    Adventure
## 4396          3    11439    X360 2011    Adventure
## 4397          3    12627     PSP 2012       Action
## 4398          3    15460     PS3 2012    Adventure
## 4399          3     8215     PS3 2009     Strategy
## 4400          3     8744    X360 2009     Strategy
## 4401          3    15294      PC 2009     Strategy
## 4402          3     2437      PS 1996     Fighting
## 4403          3     5647     SAT 1995     Fighting
## 4404          3     8428    SNES 1996     Fighting
## 4405          3      275     PS3 2009     Fighting
## 4406          3      484    X360 2009     Fighting
## 4407          3     9477      PC 2008     Fighting
## 4408          3     2277     PS2 2002       Sports
## 4409          3     6128      XB 2002       Sports
## 4410          3     9817      GC 2002       Sports
## 4411          3     3265     PS2 2004       Sports
## 4412          3    12389      GC 2005       Sports
## 4413          3    13573      XB 2004       Sports
## 4414          3     3154    X360 2007       Racing
## 4415          3     3806     PS3 2007       Racing
## 4416          3     6356     PS2 2007       Racing
## 4417          3     8826      GC 2006     Platform
## 4418          3    11375     PSP 2006     Platform
## 4419          3    14811     PS2 2006     Platform
## 4420          3     9655     PS3 2011     Fighting
## 4421          3    11008     PSV 2012     Fighting
## 4422          3    11370    X360 2011     Fighting
## 4423          3     4289     PSV 2015 Role-Playing
## 4424          3     7009     PS4 2015 Role-Playing
## 4425          3    10673     PS3 2015 Role-Playing
## 4426          3     9195      DS 2008       Action
## 4427          3    10493      XB 2003       Action
## 4428          3    14581      PC 2002       Action
## 4429          3     8002    X360 2012      Shooter
## 4430          3     8841     PS3 2012      Shooter
## 4431          3    12528      PC 1992     Strategy
## 4432          3     6600     PSP 2005       Racing
## 4433          3     9595      XB 2004       Racing
## 4434          3    12748     PS2 2004       Racing
## 4435          3    11321     PS2 2006       Racing
## 4436          3    14135      XB 2006       Racing
## 4437          3    15346      PC 2006       Racing
## 4438          3     1780     PS2 2003     Platform
## 4439          3     3678     GBA 2003     Platform
## 4440          3     4790      GC 2003     Platform
## 4441          3     3473      PS 1998 Role-Playing
## 4442          3     4876    SNES 1995 Role-Playing
## 4443          3     6103     GBA 2003 Role-Playing
## 4444          3     8465     PS2 2002     Platform
## 4445          3    11567      GC 2002     Platform
## 4446          3    11975      XB 2002     Platform
## 4447          3     5559      GC 2006       Action
## 4448          3     6615     PS2 2006       Action
## 4449          3     8225     GBA 2005       Action
## 4450          3     6413     PS3 2014    Adventure
## 4451          3     7224    X360 2014    Adventure
## 4452          3     9408     3DS 2014    Adventure
## 4453          3      541     PS3 2009     Fighting
## 4454          3     1504    X360 2009     Fighting
## 4455          3     5598     PSP 2009     Fighting
## 4456          3     2372     PS3 2012     Fighting
## 4457          3     5283    X360 2012     Fighting
## 4458          3     7980    WiiU 2012     Fighting
## 4459          3     3464     PS2 2003       Action
## 4460          3     9077      XB 2003       Action
## 4461          3    12707     GBA 2003       Action
## 4462          3     8374     PS2 2004      Shooter
## 4463          3    12492      XB 2004      Shooter
## 4464          3    15253      GC 2004      Shooter
## 4465          3     3923     PSP 2007       Racing
## 4466          3     5588    X360 2006       Racing
## 4467          3    15124      PC 2007       Racing
## 4468          3     7722      PC 2011       Racing
## 4469          3     3143     PS3 2011       Racing
## 4470          3     2949    X360 2011       Racing
## 4471          3      802     PS2 2002       Puzzle
## 4472          3     1049     GBA 2001       Puzzle
## 4473          3     7223      GC 2002       Puzzle
## 4474          3     3949     GBA 2004       Action
## 4475          3     3993     PS2 2004       Action
## 4476          3     6202      GC 2004       Action
## 4477          3     4622     PS2 2003       Action
## 4478          3     5313     GBA 2003       Action
## 4479          3    10194      GC 2003       Action
## 4480          3     1019     Wii 2009         Misc
## 4481          3     1503    X360 2009         Misc
## 4482          3     1817     PS3 2009         Misc
## 4483          3     7536     PS2 2005         Misc
## 4484          3     9864     GBA 2005         Misc
## 4485          3    13422      XB 2005         Misc
## 4486          3     5994     PS3 2013      Shooter
## 4487          3     6945    X360 2013      Shooter
## 4488          3    12954      PC 2013      Shooter
## 4489          3     5969    X360 2009      Shooter
## 4490          3     6626     PS3 2009      Shooter
## 4491          3    16286      PC 2009      Shooter
## 4492          3    10893     PS4 2015       Action
## 4493          3    15575      PC 2015       Action
## 4494          3    15615    XOne 2015       Action
## 4495          3     8246     PS3 2011       Action
## 4496          3     8825    X360 2011       Action
## 4497          3    14086      PC 2011       Action
## 4498          3     4908    X360 2012      Shooter
## 4499          3     5464     PS3 2012      Shooter
## 4500          3     9201      PC 2012      Shooter
## 4501          3      251    X360 2006 Role-Playing
## 4502          3      446     PS3 2007 Role-Playing
## 4503          3     6507      PC 2006 Role-Playing
## 4504          3     1036     PS4 2015 Role-Playing
## 4505          3     1563    XOne 2015 Role-Playing
## 4506          3     2317      PC 2014 Role-Playing
## 4507          3       76    X360 2011 Role-Playing
## 4508          3      127     PS3 2011 Role-Playing
## 4509          3      311      PC 2011 Role-Playing
## 4510          3     5315     PS2 2004     Platform
## 4511          3     5377     GBA 2004     Platform
## 4512          3     7576      GC 2004     Platform
## 4513          3    10159     Wii 2007      Shooter
## 4514          3    11760     PS3 2008      Shooter
## 4515          3    12643    X360 2007      Shooter
## 4516          3    11709     PSP 2005       Sports
## 4517          3    13470     PS2 2006       Sports
## 4518          3    15650      XB 2006       Sports
## 4519          3     3756     PS2 2005       Action
## 4520          3     7018      XB 2005       Action
## 4521          3     8922      GC 2005       Action
## 4522          3      668     PS2 2004       Action
## 4523          3      819     GBA 2004       Action
## 4524          3     2463      GC 2004       Action
## 4525          3     7083     PS2 2003       Racing
## 4526          3    11449      XB 2003       Racing
## 4527          3    14208      GC 2003       Racing
## 4528          3     6141     SAT 1995     Fighting
## 4529          3     7500      NG 1995     Fighting
## 4530          3     8303      PS 1996     Fighting
## 4531          3     7423     SAT 1996     Fighting
## 4532          3    11471      PS 1997     Fighting
## 4533          3    12789      NG 1996     Fighting
## 4534          3     7543     PS2 2006     Fighting
## 4535          3     9794     Wii 2008     Fighting
## 4536          3    11825     PSP 2008     Fighting
## 4537          3     7318     PSP 2006 Role-Playing
## 4538          3    12022     PSV 2015 Role-Playing
## 4539          3    13777     PS3 2012 Role-Playing
## 4540          3    11912     PSP 2008 Role-Playing
## 4541          3    15372     PSV 2016 Role-Playing
## 4542          3    16087     PS3 2013 Role-Playing
## 4543          3     4575     PS2 2007     Platform
## 4544          3     5092      DS 2007     Platform
## 4545          3     7189     Wii 2007     Platform
## 4546          3     3451     PS2 2004 Role-Playing
## 4547          3     6041      GC 2004 Role-Playing
## 4548          3     7219     GBA 2004 Role-Playing
## 4549          3     7998      PC 2011       Action
## 4550          3     2417     PS3 2011       Action
## 4551          3     2424    X360 2011       Action
## 4552          3     6697     PS2 2008       Action
## 4553          3    11100     Wii 2008       Action
## 4554          3    11111      DS 2008       Action
## 4555          3     7474     Wii 2008         Misc
## 4556          3     7729      DS 2008         Misc
## 4557          3     8397     PS2 2008         Misc
## 4558          3      951    X360 2007      Shooter
## 4559          3     1906     PS3 2007      Shooter
## 4560          3     9064      PC 2007      Shooter
## 4561          3    14482     3DS 2015       Action
## 4562          3    14837     PS4 2015       Action
## 4563          3    14890    X360 2015       Action
## 4564          3     7116     PS2 2004    Adventure
## 4565          3     7848     GBA 2004    Adventure
## 4566          3    10289      GC 2004    Adventure
## 4567          3     7740     PS3 2008 Role-Playing
## 4568          3     8317    X360 2008 Role-Playing
## 4569          3    16511      PC 2008 Role-Playing
## 4570          3     3893    X360 2009       Action
## 4571          3     3992     PS3 2009       Action
## 4572          3    12657      PC 2009       Action
## 4573          3      225     PS2 2003       Racing
## 4574          3     1448      XB 2003       Racing
## 4575          3     2086      GC 2003       Racing
## 4576          3    16496     3DS 2015       Action
## 4577          3     4561      DS 2011       Action
## 4578          3    13572      PS 1998       Action
## 4579          3     7761     Wii 2008       Action
## 4580          3    10166    X360 2008       Action
## 4581          3    11295      DS 2008       Action
## 4582          3     5328     PS2 2008     Platform
## 4583          3    12142      DS 2008     Platform
## 4584          3    13469     Wii 2008     Platform
## 4585          3    13097     PS4 2016 Role-Playing
## 4586          3    15344    XOne 2016 Role-Playing
## 4587          3    16402      PC 2016 Role-Playing
## 4588          3     6545     PS3 2012    Adventure
## 4589          3    11900      PC 2012    Adventure
## 4590          3    15323    X360 2012    Adventure
## 4591          3    10866    WiiU 2014       Action
## 4592          3    11568    X360 2014       Action
## 4593          3    14977     PS3 2014       Action
## 4594          3     3179    X360 2013      Shooter
## 4595          3     3816     PS3 2013      Shooter
## 4596          3     9927    WiiU 2013      Shooter
## 4597          3     3812     PS2 2005       Action
## 4598          3     6122      XB 2005       Action
## 4599          3     6217     PSP 2007       Action
## 4600          3      332     PS4 2015 Role-Playing
## 4601          3     1607    XOne 2015 Role-Playing
## 4602          3     3028      PC 2015 Role-Playing
## 4603          3     5454     Wii 2010         Misc
## 4604          3     9267     PS3 2010         Misc
## 4605          3    10822    X360 2010         Misc
## 4606          3     3507      PS 1994   Simulation
## 4607          3    11283     SAT 1994   Simulation
## 4608          3    11971      DS 2007   Simulation
## 4609          3     2457     PS3 2010       Sports
## 4610          3     3619     Wii 2010       Sports
## 4611          3     3805    X360 2010       Sports
## 4612          3     2311     PS3 2011       Sports
## 4613          3     3229    X360 2011       Sports
## 4614          3     5119     Wii 2011       Sports
## 4615          3     1120     PS2 2002       Sports
## 4616          3     4434      XB 2002       Sports
## 4617          3     7099      GC 2002       Sports
## 4618          3    13377     PSV 2012    Adventure
## 4619          3    13822     3DS 2012    Adventure
## 4620          3    16537     PSP 2012    Adventure
## 4621          3     4675    X360 2007      Shooter
## 4622          3     8606     PS3 2007      Shooter
## 4623          3    16290      PC 2007      Shooter
## 4624          3     2936     PS2 2002      Shooter
## 4625          3     3163      XB 2002      Shooter
## 4626          3     4476      GC 2002      Shooter
## 4627          3     6812     PS2 2005      Shooter
## 4628          3     8538      XB 2005      Shooter
## 4629          3    11493      GC 2005      Shooter
## 4630          3      495    XOne 2014      Shooter
## 4631          3     1405    X360 2014      Shooter
## 4632          3     3459      PC 2014      Shooter
## 4633          3     1425      XB 2004      Shooter
## 4634          3     1909     PS2 2004      Shooter
## 4635          3    11894      GC 2005      Shooter
## 4636          3     2011     PS3 2007      Shooter
## 4637          3     2030    X360 2007      Shooter
## 4638          3     3798     PSP 2007      Shooter
## 4639          3     1301    X360 2012      Shooter
## 4640          3     2166     PS3 2012      Shooter
## 4641          3     8129      PC 2012      Shooter
## 4642          3     3461    X360 2009       Action
## 4643          3     3559     PS3 2009       Action
## 4644          3    13485      PC 2009       Action
## 4645          3     1199      XB 2003      Shooter
## 4646          3     2550     PS2 2004      Shooter
## 4647          3    12797      GC 2004      Shooter
## 4648          3     4695      XB 2005      Shooter
## 4649          3     5326     PS2 2005      Shooter
## 4650          3    13359      GC 2005      Shooter
## 4651          3      760     PS4 2015      Shooter
## 4652          3     1533    XOne 2015      Shooter
## 4653          3     7213      PC 2015      Shooter
## 4654          3      872    X360 2006      Shooter
## 4655          3     1588     PS3 2007      Shooter
## 4656          3     2769     PSP 2007      Shooter
## 4657          3      637    X360 2008      Shooter
## 4658          3     1450     PS3 2008      Shooter
## 4659          3    15007      PC 2008      Shooter
## 4660          3      352     PS4 2016      Shooter
## 4661          3      847    XOne 2016      Shooter
## 4662          3     5106      PC 2016      Shooter
## 4663          3    14679      XB 2002     Fighting
## 4664          3     6501     PS2 2002     Fighting
## 4665          3    12069      GC 2003     Fighting
## 4666          3      230      PS 1996       Action
## 4667          3     2024      PC 1996       Action
## 4668          3     5242      PC 2013       Action
## 4669          3     3241      XB 2005       Sports
## 4670          3     4588      GC 2005       Sports
## 4671          3     5616    X360 2005       Sports
## 4672          3      203      PS 1999       Sports
## 4673          3      780     N64 2000       Sports
## 4674          3     1475      GB 2000       Sports
## 4675          3      226      PS 2000       Sports
## 4676          3     1713     GBA 2001       Sports
## 4677          3     2707     N64 2001       Sports
## 4678          3     2193     Wii 2009       Sports
## 4679          3     3298    X360 2009       Sports
## 4680          3     3350     PS3 2009       Sports
## 4681          3     3589     Wii 2010       Sports
## 4682          3     6132     PS3 2010       Sports
## 4683          3     6535    X360 2010       Sports
## 4684          3     2247     PS2 2001   Simulation
## 4685          3     8853      GC 2002   Simulation
## 4686          3    10502     GBA 2004   Simulation
## 4687          3     2866     PS3 2011       Sports
## 4688          3     4589    X360 2011       Sports
## 4689          3     8715     Wii 2011       Sports
## 4690          3    10251     Wii 2009       Action
## 4691          3    11080     PS3 2009       Action
## 4692          3    11428    X360 2009       Action
## 4693          3    10182     Wii 2008         Misc
## 4694          3    14657      PC 2008         Misc
## 4695          3    16041     PS2 2008         Misc
## 4696          3    10395     PSV 2016       Action
## 4697          3    11426     PS4 2016       Action
## 4698          3    15616     PS3 2016       Action
## 4699          3     5879     PSV 2014       Action
## 4700          3     8416     PS4 2015       Action
## 4701          3    13428     PSP 2014       Action
## 4702          3     5623     PS4 2016       Action
## 4703          3    12581    XOne 2016       Action
## 4704          3    16389      PC 2016       Action
## 4705          3     4426    X360 2012       Action
## 4706          3     4741     PS3 2012       Action
## 4707          3    16540      PC 2012       Action
## 4708          3     8328     3DS 2012       Action
## 4709          3     9208    WiiU 2012       Action
## 4710          3    15862     Wii 2012       Action
## 4711          3     3465    X360 2010      Shooter
## 4712          3     3913     PS3 2010      Shooter
## 4713          3    16504      PC 2010      Shooter
## 4714          3     4507     PS4 2014       Racing
## 4715          3     6780    XOne 2014       Racing
## 4716          3    14246      PC 2014       Racing
## 4717          3     8665     PS2 2004      Shooter
## 4718          3    13448      XB 2004      Shooter
## 4719          3    15894      GC 2004      Shooter
## 4720          3     5884     PS4 2015   Simulation
## 4721          3     9904      PC 2014   Simulation
## 4722          3    11806    X360 2014   Simulation
## 4723          3     2723     PS2 2005       Action
## 4724          3     6244      XB 2005       Action
## 4725          3     8266      GC 2005       Action
## 4726          3      412     PS2 2003       Action
## 4727          3     1401      XB 2003       Action
## 4728          3     3562      GC 2003       Action
## 4729          3    10143    X360 2010         Misc
## 4730          3    10529     Wii 2010         Misc
## 4731          3    10940     PS3 2010         Misc
## 4732          3     2741    X360 2008       Action
## 4733          3     3006     PS3 2008       Action
## 4734          3    15983      PC 2008       Action
## 4735          3     3704    X360 2011 Role-Playing
## 4736          3     4123     PS3 2011 Role-Playing
## 4737          3     7523      PC 2011 Role-Playing
## 4738          3     1724     PS2 2002     Platform
## 4739          3     6330      GC 2002     Platform
## 4740          3     8020      XB 2002     Platform
## 4741          3     2648    X360 2011       Sports
## 4742          3     7642     PS3 2011       Sports
## 4743          3     7659     Wii 2011       Sports
## 4744          3     1357     PS3 2010     Fighting
## 4745          3     1479    X360 2010     Fighting
## 4746          3     7345     PSP 2010     Fighting
## 4747          3     8840     Wii 2007         Misc
## 4748          3    12039     PSP 2007         Misc
## 4749          3    16348     PS2 2006         Misc
## 4750          3     5467     PSV 2011     Fighting
## 4751          3    10649     PS3 2011     Fighting
## 4752          3    12006    X360 2011     Fighting
## 4753          3     3009     PS3 2007      Shooter
## 4754          3     4155    X360 2008      Shooter
## 4755          3    12398      PC 2007      Shooter
## 4756          3    12934     PSV 2016         Misc
## 4757          3    13616     PS4 2016         Misc
## 4758          3    16039     PS3 2016         Misc
## 4759          3    11845     PSV 2015    Adventure
## 4760          3    12694     PS4 2015    Adventure
## 4761          3    13338     PS3 2015    Adventure
## 4762          3    12806     PS2 2002       Racing
## 4763          3    13310     GBA 2002       Racing
## 4764          3    15873      XB 2003       Racing
## 4765          3    12404     PS4 2016       Racing
## 4766          3    15206    XOne 2016       Racing
## 4767          3    16247      PC 2016       Racing
## 4768          3     4423     PS2 2004       Action
## 4769          3     8115      XB 2007       Action
## 4770          3    10609     GBA 2004       Action
## 4771          3     9389    X360 2010 Role-Playing
## 4772          3     9551     PS3 2010 Role-Playing
## 4773          3    12922      PC 2009 Role-Playing
## 4774          3     6806     PS2 2003     Platform
## 4775          3    10441      XB 2003     Platform
## 4776          3    12474      GC 2003     Platform
## 4777          3     4982     PS3 2009       Sports
## 4778          3     5036     Wii 2009       Sports
## 4779          3     5458    X360 2009       Sports
## 4780          3     8419     PS3 2011       Racing
## 4781          3    11708    X360 2011       Racing
## 4782          3    15525      PC 2011       Racing
## 4783          3    12878     PS2 2001       Sports
## 4784          3    15795     GBA 2002       Sports
## 4785          3    16141      XB 2002       Sports
## 4786          3     1560    X360 2011     Fighting
## 4787          3     1714     PS3 2011     Fighting
## 4788          3     5235     Wii 2011     Fighting
## 4789          3     1399     PS3 2012       Action
## 4790          3     1547    X360 2012       Action
## 4791          3     8683     Wii 2012       Action
## 4792          3      597     PS2 2006     Fighting
## 4793          3     3044     PSP 2006     Fighting
## 4794          3     3919    X360 2006     Fighting
## 4795          3     8552     PS2 2003       Sports
## 4796          3    12925      XB 2003       Sports
## 4797          3    15322     GBA 2003       Sports
## 4798          3     6959     PS2 2003     Platform
## 4799          3    11981      GC 2003     Platform
## 4800          3    14593      XB 2003     Platform
## 4801          3     3525    X360 2011      Shooter
## 4802          3     4247     PS3 2011      Shooter
## 4803          3     7534      PC 2011      Shooter
## 4804          3     2406     PS2 2007       Action
## 4805          3     7588     PSP 2008       Action
## 4806          3     7707    X360 2007       Action
## 4807          3     6095     PSP 2008       Action
## 4808          3     9572     PS2 2008       Action
## 4809          3    12642    X360 2008       Action
## 4810          3    10583     PS4 2015 Role-Playing
## 4811          3    10758      PC 2015 Role-Playing
## 4812          3    13290    XOne 2015 Role-Playing
## 4813          3    11715     Wii 2011       Sports
## 4814          3    13110     PS3 2011       Sports
## 4815          3    15213    X360 2011       Sports
## 4816          3    13222     Wii 2010       Sports
## 4817          3    14049     PS3 2010       Sports
## 4818          3    15823    X360 2010       Sports
## 4819          3     9349     Wii 2011       Sports
## 4820          3    10724    X360 2011       Sports
## 4821          3    11058     PS3 2011       Sports
## 4822          3     3172     PS3 2009      Shooter
## 4823          3     3584    X360 2009      Shooter
## 4824          3    13408      PC 2009      Shooter
## 4825          3     4630     PS4 2015       Action
## 4826          3     8770    XOne 2015       Action
## 4827          3    11466      PC 2015       Action
## 4828          3     2176     PS2 2004         Misc
## 4829          3     3931      XB 2004         Misc
## 4830          3     8239     GBA 2004         Misc
## 4831          3     5440     PS2 2005         Misc
## 4832          3     9309     PSP 2005         Misc
## 4833          3    10912      XB 2005         Misc
## 4834          3     7094     PS3 2010       Sports
## 4835          3     8691     PSP 2010       Sports
## 4836          3    10942     PS2 2010       Sports
## 4837          3     2927      DS 2009   Simulation
## 4838          3     3232     Wii 2009   Simulation
## 4839          3    14572      PC 2009   Simulation
## 4840          3     9683     PS2 2003     Strategy
## 4841          3    12201      GC 2003     Strategy
## 4842          3    12606      XB 2003     Strategy
## 4843          3     3545      XB 2002       Racing
## 4844          3     7278     PS2 2002       Racing
## 4845          3    12745      GC 2002       Racing
## 4846          3      886     PS2 2004 Role-Playing
## 4847          3     2322      XB 2004 Role-Playing
## 4848          3     3799      GC 2004 Role-Playing
## 4849          3     2753     PS3 2009       Action
## 4850          3     2945    X360 2009       Action
## 4851          3    14878      PC 2009       Action
## 4852          3     4156     PS2 2002     Fighting
## 4853          3     9614      GC 2002     Fighting
## 4854          3    10257      XB 2002     Fighting
## 4855          3     7566      PC 2016     Strategy
## 4856          3    13704     PS4 2016     Strategy
## 4857          3    15804    XOne 2016     Strategy
## 4858          3     2826      PC 2012     Strategy
## 4859          3     3149    X360 2012     Strategy
## 4860          3     3370     PS3 2012     Strategy
## 4861          3    12292     PS2 2003       Racing
## 4862          3    15274      GC 2003       Racing
## 4863          3    15390      XB 2003       Racing
## 4864          3     3554     PS2 2003      Shooter
## 4865          3     6681      XB 2003      Shooter
## 4866          3    11215      GC 2003      Shooter
## 4867          3    11735     PS4 2015 Role-Playing
## 4868          3    11766     PSV 2015 Role-Playing
## 4869          3    13416     PS3 2015 Role-Playing
## 4870          3      118     Wii 2010       Sports
## 4871          3      652    X360 2010       Sports
## 4872          3     3433     PS3 2010       Sports
## 4873          3     2576    X360 2012       Action
## 4874          3     2742     PS3 2012       Action
## 4875          3    10598      PC 2012       Action
## 4876          2     1202     N64 2000       Action
## 4877          2     2249      PS 2000       Action
## 4878          2    15008    X360 2009    Adventure
## 4879          2    15555     PSP 2010    Adventure
## 4880          2     4832     PS2 2001       Racing
## 4881          2    10077      GC 2002       Racing
## 4882          2     8896     PS2 2005       Racing
## 4883          2    12255      XB 2005       Racing
## 4884          2     3772      XB 2004         Misc
## 4885          2     9973    X360 2013         Misc
## 4886          2     2903     PS3 2014       Sports
## 4887          2     4170    X360 2014       Sports
## 4888          2     4578     PS2 2006      Shooter
## 4889          2     8431      XB 2006      Shooter
## 4890          2     7132     PS3 2014 Role-Playing
## 4891          2     7916     PSV 2014 Role-Playing
## 4892          2     7942     PSV 2015       Action
## 4893          2     8848     PS3 2015       Action
## 4894          2     6903      XB 2001       Racing
## 4895          2     9238      GC 2002       Racing
## 4896          2     7362    X360 2009      Shooter
## 4897          2     7802     PS3 2009      Shooter
## 4898          2     3647      DS 2009         Misc
## 4899          2    15681     3DS 2012         Misc
## 4900          2     9880     PS4 2016       Action
## 4901          2    13652    XOne 2016       Action
## 4902          2     9544      DS 2007       Puzzle
## 4903          2    11561     PSP 2007       Puzzle
## 4904          2      530      PS 1998     Platform
## 4905          2     3205     N64 1998     Platform
## 4906          2    16201    X360 2011         Misc
## 4907          2     4827     PSP 2011         Misc
## 4908          2     2276     Wii 2007       Sports
## 4909          2    12027      DS 2008       Sports
## 4910          2     7234     Wii 2009       Racing
## 4911          2    10184      DS 2010       Racing
## 4912          2     1996      PS 2000       Racing
## 4913          2     6589     GBA 2002       Racing
## 4914          2    15752     PSV 2015       Action
## 4915          2    16052     PSP 2012       Action
## 4916          2    14300     PS3 2012    Adventure
## 4917          2    14336     PSP 2012    Adventure
## 4918          2    15950     PS3 2013    Adventure
## 4919          2    16153     PSP 2013    Adventure
## 4920          2     2764     PS3 2011       Action
## 4921          2     4021    X360 2011       Action
## 4922          2     3969     PS2 2002         Misc
## 4923          2    13440     GBA 2003         Misc
## 4924          2    15911     3DS 2014    Adventure
## 4925          2    16204    X360 2014    Adventure
## 4926          2    11205    X360 2014       Action
## 4927          2    11432     3DS 2014       Action
## 4928          2    13720     PS2 2005       Action
## 4929          2    16104      XB 2005       Action
## 4930          2     6944    X360 2009       Action
## 4931          2     7601     PS3 2009       Action
## 4932          2    10446      DS 2009    Adventure
## 4933          2    15473      PC 2016    Adventure
## 4934          2     8045      XB 2001      Shooter
## 4935          2    15012     GBA 2002      Shooter
## 4936          2    16428     PSP 2012    Adventure
## 4937          2    16524     PS3 2012    Adventure
## 4938          2     1444    X360 2010       Action
## 4939          2    12110      PC 2012       Action
## 4940          2    10246     PS2 2004       Action
## 4941          2    13106      XB 2004       Action
## 4942          2     3800     Wii 2010    Adventure
## 4943          2     3984      DS 2010    Adventure
## 4944          2    10629     PS2 2004      Shooter
## 4945          2    10913      GC 2004      Shooter
## 4946          2    11597     PSP 2007 Role-Playing
## 4947          2    12363     Wii 2007 Role-Playing
## 4948          2    11637     Wii 2009       Action
## 4949          2    12965      DS 2009       Action
## 4950          2     7820     PS2 2003     Strategy
## 4951          2    11338      XB 2003     Strategy
## 4952          2    10591      DS 2012       Action
## 4953          2    12636     PSP 2012       Action
## 4954          2     2580     Wii 2008       Sports
## 4955          2     6106      DS 2008       Sports
## 4956          2     6445    X360 2007       Sports
## 4957          2     8740     PS3 2007       Sports
## 4958          2     3585     PS2 2001       Sports
## 4959          2     7249      GC 2001       Sports
## 4960          2     8931      XB 2004       Sports
## 4961          2     5671     PS2 2004       Sports
## 4962          2     9529     PS2 2003      Shooter
## 4963          2    13187      XB 2003      Shooter
## 4964          2     5927      DS 2009         Misc
## 4965          2    10505     Wii 2009         Misc
## 4966          2    10520      DS 2008       Action
## 4967          2    11348     Wii 2010       Action
## 4968          2     4609     PS2 2004       Racing
## 4969          2     8765      XB 2004       Racing
## 4970          2     3685     PS2 2003         Misc
## 4971          2     7297     GBA 2003         Misc
## 4972          2    13378     PSP 2012         Misc
## 4973          2    16473     PSV 2014         Misc
## 4974          2     7484     PS3 2012       Action
## 4975          2     8454    X360 2012       Action
## 4976          2     6434     PS2 2006       Action
## 4977          2    11778      XB 2006       Action
## 4978          2    10275      DS 2009   Simulation
## 4979          2    10729     Wii 2009   Simulation
## 4980          2    13768     PS2 2002       Racing
## 4981          2    15897      XB 2002       Racing
## 4982          2     1131      PS 1999     Platform
## 4983          2    13439     PS3 2010     Platform
## 4984          2    16068      XB 2003       Action
## 4985          2    16252      GC 2003       Action
## 4986          2     8475     PS3 2014 Role-Playing
## 4987          2    13954     PSV 2014 Role-Playing
## 4988          2    15587     PS2 2007    Adventure
## 4989          2    16372     PSP 2012    Adventure
## 4990          2    12620     PS2 2004       Sports
## 4991          2    14801      GC 2004       Sports
## 4992          2     9116      DS 2007    Adventure
## 4993          2    13373     Wii 2007    Adventure
## 4994          2     5257     PS2 2001       Racing
## 4995          2     9968      XB 2001       Racing
## 4996          2     7319     Wii 2010         Misc
## 4997          2    11027      DS 2010         Misc
## 4998          2     3684     Wii 2008         Misc
## 4999          2     4914      DS 2008         Misc
## 5000          2     3567     PS2 2006       Sports
## 5001          2     8950      XB 2006       Sports
## 5002          2     6734    X360 2007   Simulation
## 5003          2     7687     PS3 2006   Simulation
## 5004          2     4864     PS3 2012   Simulation
## 5005          2     7307    X360 2012   Simulation
## 5006          2     7835     PS3 2008   Simulation
## 5007          2     8899    X360 2008   Simulation
## 5008          2     6527     N64 1999      Shooter
## 5009          2    11330      PS 2000      Shooter
## 5010          2     9399     PS2 2001       Action
## 5011          2    12191      PS 2001       Action
## 5012          2    10162     PS2 2002     Strategy
## 5013          2    12112      GC 2004     Strategy
## 5014          2     2548     N64 1999       Action
## 5015          2     3580      PS 1999       Action
## 5016          2     8783      GC 2004      Shooter
## 5017          2    10035      XB 2004      Shooter
## 5018          2     9528     Wii 2008      Shooter
## 5019          2     9997      DS 2008      Shooter
## 5020          2     1113    X360 2008      Shooter
## 5021          2     1722     PS3 2008      Shooter
## 5022          2     6174     PS3 2013      Shooter
## 5023          2     6563    X360 2013      Shooter
## 5024          2     8494      DS 2010       Action
## 5025          2    13194     GBA 2004       Action
## 5026          2    13031     PS4 2016       Racing
## 5027          2    16279    XOne 2016       Racing
## 5028          2      259    2600 1980      Shooter
## 5029          2     1781      PS 1998      Shooter
## 5030          2     4776     PS3 2012       Action
## 5031          2     6911    X360 2012       Action
## 5032          2     4833     PS2 2004         Misc
## 5033          2     6679      XB 2004         Misc
## 5034          2     6436     PS3 2012 Role-Playing
## 5035          2    13410     PSV 2014 Role-Playing
## 5036          2     7184     PS3 2013 Role-Playing
## 5037          2    13475     PSV 2015 Role-Playing
## 5038          2     6822     PS3 2011 Role-Playing
## 5039          2    12247     PSV 2013 Role-Playing
## 5040          2     3960     PS3 2009 Role-Playing
## 5041          2    13133     PSV 2013 Role-Playing
## 5042          2     4526     PS3 2010 Role-Playing
## 5043          2    11104     PSV 2012 Role-Playing
## 5044          2    10326     Wii 2010      Shooter
## 5045          2    13611    X360 2010      Shooter
## 5046          2     4963     PS2 2002       Racing
## 5047          2    14728      GC 2003       Racing
## 5048          2     8315     PS3 2010       Sports
## 5049          2     8088    X360 2009       Sports
## 5050          2     7697     GBA 2003       Sports
## 5051          2    11854      DS 2007       Sports
## 5052          2     3435     PS2 2003       Sports
## 5053          2    11736      DS 2007       Sports
## 5054          2     7515     PS2 2005       Sports
## 5055          2    14197     GBA 2005       Sports
## 5056          2     6187     PS2 2004     Fighting
## 5057          2     9916      XB 2004     Fighting
## 5058          2     3341     PS2 2003     Fighting
## 5059          2     8413      XB 2003     Fighting
## 5060          2     7346     PS3 2008       Racing
## 5061          2     7677    X360 2008       Racing
## 5062          2    15580     PSV 2014         Misc
## 5063          2    16522     PSP 2014         Misc
## 5064          2     2972     PS2 2004 Role-Playing
## 5065          2     6607      XB 2004 Role-Playing
## 5066          2     9038      DS 2009       Puzzle
## 5067          2    13374     Wii 2007       Puzzle
## 5068          2    15154     Wii 2007       Sports
## 5069          2    15680      DS 2007       Sports
## 5070          2      342     N64 1998     Platform
## 5071          2    16056    X360 2008     Platform
## 5072          2     4056     PS2 2003       Sports
## 5073          2    12425      XB 2003       Sports
## 5074          2     7085     Wii 2009    Adventure
## 5075          2     9493      DS 2009    Adventure
## 5076          2     4468      DS 2010       Action
## 5077          2     7205     Wii 2010       Action
## 5078          2     4280      DS 2011         Misc
## 5079          2     6448     Wii 2011         Misc
## 5080          2     9627     PS2 2007 Role-Playing
## 5081          2    11717     Wii 2008 Role-Playing
## 5082          2      422     NES 1983       Sports
## 5083          2     1144      GB 1989       Sports
## 5084          2     6829     Wii 2010       Sports
## 5085          2    11042    X360 2010       Sports
## 5086          2     4069     Wii 2009       Sports
## 5087          2     7398    X360 2009       Sports
## 5088          2     8400      PS 2000       Action
## 5089          2    11052     N64 2000       Action
## 5090          2    14094     PS4 2016    Adventure
## 5091          2    16239     PS3 2016    Adventure
## 5092          2     3813     PSV 2013       Action
## 5093          2     6395     3DS 2013       Action
## 5094          2    10072      XB 2003       Action
## 5095          2    11540      GC 2003       Action
## 5096          2     5846      DS 2010       Action
## 5097          2     5952     Wii 2010       Action
## 5098          2    14178     PS2 2003      Shooter
## 5099          2    15758      XB 2003      Shooter
## 5100          2    11168    X360 2008     Fighting
## 5101          2    16544     PS3 2008     Fighting
## 5102          2     8912     PS2 2006     Fighting
## 5103          2    11112      GC 2006     Fighting
## 5104          2     1302    X360 2008      Shooter
## 5105          2     1445     PS3 2008      Shooter
## 5106          2     8693     PS2 2003      Shooter
## 5107          2    11549      XB 2003      Shooter
## 5108          2     6449    X360 2007     Strategy
## 5109          2    16276      PC 2007     Strategy
## 5110          2     5513    X360 2009     Strategy
## 5111          2    14872      PC 2009     Strategy
## 5112          2     3250    2600 1982      Shooter
## 5113          2    14803     PSP 2006      Shooter
## 5114          2     1627     PS3 2009       Action
## 5115          2     2208    X360 2009       Action
## 5116          2     1880      PS 1998   Simulation
## 5117          2    12041     PS2 2006   Simulation
## 5118          2     2392     PS3 2008       Sports
## 5119          2     3388    X360 2008       Sports
## 5120          2    10605      DS 2010       Puzzle
## 5121          2    13045      PC 2008       Puzzle
## 5122          2    15621     3DS 2013       Action
## 5123          2    16101    X360 2013       Action
## 5124          2    15115     PS2 2006       Action
## 5125          2    15769     GBA 2006       Action
## 5126          2     7342    X360 2011       Sports
## 5127          2    10626     Wii 2008       Sports
## 5128          2    10369      DS 2009       Sports
## 5129          2    10837     Wii 2009       Sports
## 5130          2     7727     PS2 2005       Racing
## 5131          2    11813      XB 2005       Racing
## 5132          2     5607     Wii 2008       Racing
## 5133          2     8789      DS 2009       Racing
## 5134          2    12409     PS2 2006       Racing
## 5135          2    14324      DS 2007       Racing
## 5136          2     5449     PS3 2012       Action
## 5137          2     7832    X360 2012       Action
## 5138          2     9157     N64 1998       Action
## 5139          2     9340      PS 1998       Action
## 5140          2     7653     PS4 2016      Shooter
## 5141          2    11552    XOne 2016      Shooter
## 5142          2     8176     PS3 2011       Action
## 5143          2    14696    X360 2011       Action
## 5144          2     5138     PS3 2009     Platform
## 5145          2     6192    X360 2009     Platform
## 5146          2     6655     PS3 2012   Simulation
## 5147          2     8681    X360 2012   Simulation
## 5148          2     1594     PS2 2006      Shooter
## 5149          2     4654      XB 2006      Shooter
## 5150          2     8602     PS2 2003     Fighting
## 5151          2    13353      GC 2003     Fighting
## 5152          2     3508    X360 2007      Shooter
## 5153          2    11221     PS3 2007      Shooter
## 5154          2    14981     PS4 2015     Fighting
## 5155          2    15106     PS3 2015     Fighting
## 5156          2     5803     PS2 2002       Action
## 5157          2     9353      XB 2002       Action
## 5158          2    10335    X360 2012       Action
## 5159          2    10601     PS3 2012       Action
## 5160          2     6033     PS3 2007       Action
## 5161          2    10804    X360 2007       Action
## 5162          2     6075     PS3 2013     Fighting
## 5163          2    10393     PSV 2014     Fighting
## 5164          2     4710     PS3 2010     Fighting
## 5165          2     5688    X360 2010     Fighting
## 5166          2     9516     PSP 2011     Fighting
## 5167          2    10358     3DS 2011     Fighting
## 5168          2     8788     PS3 2007   Simulation
## 5169          2     9134    X360 2007   Simulation
## 5170          2     8642     PS3 2008       Sports
## 5171          2    10511    X360 2008       Sports
## 5172          2     8420    X360 2009       Sports
## 5173          2    13852      PC 2009       Sports
## 5174          2    10076    X360 2010       Racing
## 5175          2    11859     PS3 2010       Racing
## 5176          2     6339     PS2 2004      Shooter
## 5177          2     8879      XB 2004      Shooter
## 5178          2     7100     PS2 2003      Shooter
## 5179          2    12875      XB 2003      Shooter
## 5180          2     9761     PS3 2011      Shooter
## 5181          2    10085    X360 2011      Shooter
## 5182          2     5409      DS 2009       Puzzle
## 5183          2    14848     GBA 2004       Puzzle
## 5184          2     2473     PS4 2015      Shooter
## 5185          2     4771    XOne 2015      Shooter
## 5186          2     5146     N64 1999       Sports
## 5187          2     9192      PS 1996       Sports
## 5188          2     7749     PS4 2014 Role-Playing
## 5189          2    16556    X360 2014 Role-Playing
## 5190          2     2671    2600 1980     Fighting
## 5191          2    11770      PS 2000     Fighting
## 5192          2     8334     Wii 2008         Misc
## 5193          2    14044      DS 2008         Misc
## 5194          2     4119     PS2 2007   Simulation
## 5195          2     6338     Wii 2007   Simulation
## 5196          2    12617     Wii 2009       Action
## 5197          2    12653    X360 2009       Action
## 5198          2    15107     Wii 2012       Action
## 5199          2    15251      DS 2012       Action
## 5200          2     5219    SNES 1994 Role-Playing
## 5201          2     7760     GBA 2001 Role-Playing
## 5202          2     2058      PS 1997 Role-Playing
## 5203          2    13638     PSP 2005 Role-Playing
## 5204          2     6799     PS2 2002         Misc
## 5205          2     7299     GBA 2002         Misc
## 5206          2    12282     PS4 2015    Adventure
## 5207          2    16237    XOne 2015    Adventure
## 5208          2     4254     PS2 2005      Shooter
## 5209          2     5749      XB 2005      Shooter
## 5210          2     3089      XB 2005      Shooter
## 5211          2     4266     PS2 2005      Shooter
## 5212          2    16232    X360 2014      Shooter
## 5213          2    11687     PS3 2012      Shooter
## 5214          2     9513     PS4 2015    Adventure
## 5215          2    13860    XOne 2015    Adventure
## 5216          2     8153      PS 1998       Sports
## 5217          2    12507     N64 1999       Sports
## 5218          2     2127    X360 2009       Action
## 5219          2     2187     PS3 2009       Action
## 5220          2     8628      DS 2008       Action
## 5221          2     8869     Wii 2009       Action
## 5222          2      561     PS2 2004       Racing
## 5223          2     1514      XB 2004       Racing
## 5224          2     2444     PSP 2005       Racing
## 5225          2     8109      DS 2005       Racing
## 5226          2      865     PS3 2008       Racing
## 5227          2     1427    X360 2008       Racing
## 5228          2     5601      PS 1997       Puzzle
## 5229          2    12515     N64 1998       Puzzle
## 5230          2     7683      PS 1995       Puzzle
## 5231          2    11477     N64 1997       Puzzle
## 5232          2    11209     Wii 2010   Simulation
## 5233          2    12451      DS 2010   Simulation
## 5234          2    14756     PSP 2009     Platform
## 5235          2    14815     Wii 2009     Platform
## 5236          2     6019     Wii 2009    Adventure
## 5237          2     7485    X360 2009    Adventure
## 5238          2     2340     Wii 2008    Adventure
## 5239          2    10696    X360 2007    Adventure
## 5240          2     9214    X360 2006       Sports
## 5241          2    13336     PSP 2006       Sports
## 5242          2    15582     PS2 2006       Sports
## 5243          2     9485    X360 2006       Sports
## 5244          2     1356     PS2 2002       Sports
## 5245          2    10937     GBA 2002       Sports
## 5246          2     1732     PS2 2003       Sports
## 5247          2     5286      XB 2003       Sports
## 5248          2     5112     PS2 2004       Sports
## 5249          2    10004      XB 2004       Sports
## 5250          2     2687     PS2 2003       Sports
## 5251          2     7409      XB 2003       Sports
## 5252          2    10445      XB 2005       Sports
## 5253          2    14195      GC 2005       Sports
## 5254          2    14167     PSP 2008       Puzzle
## 5255          2    14809     PS2 2008       Puzzle
## 5256          2      843    X360 2005      Shooter
## 5257          2    12410      PC 2005      Shooter
## 5258          2    15601     PS3 2016      Shooter
## 5259          2    15807    X360 2016      Shooter
## 5260          2     7988    X360 2007      Shooter
## 5261          2    16013      PC 2006      Shooter
## 5262          2     8878     Wii 2008       Action
## 5263          2    13497      DS 2008       Action
## 5264          2     3943     PS2 2005         Misc
## 5265          2     8920      XB 2005         Misc
## 5266          2     7512     PS2 2004     Fighting
## 5267          2    13703      XB 2005     Fighting
## 5268          2    10152      GC 2002     Fighting
## 5269          2    10544      XB 2003     Fighting
## 5270          2      287     Wii 2007         Misc
## 5271          2      824      DS 2008         Misc
## 5272          2     6171     PS2 2006       Puzzle
## 5273          2    12560     PSP 2006       Puzzle
## 5274          2     2504      PS 1996    Adventure
## 5275          2    16202     GBA 2002    Adventure
## 5276          2    15348     Wii 2009       Sports
## 5277          2    15576      DS 2009       Sports
## 5278          2     9029     PS2 2001     Platform
## 5279          2    15298      GC 2002     Platform
## 5280          2     1625     NES 1986     Platform
## 5281          2     3159     N64 1999     Platform
## 5282          2     4649     PS2 2005       Action
## 5283          2     9932      XB 2005       Action
## 5284          2     1824     PS3 2010       Action
## 5285          2     3035    X360 2010       Action
## 5286          2    14008     PS3 2011       Action
## 5287          2    15058    X360 2011       Action
## 5288          2    10650      DS 2008    Adventure
## 5289          2    11462     Wii 2009    Adventure
## 5290          2     2854     PS3 2011    Adventure
## 5291          2     5687    X360 2011    Adventure
## 5292          2     3612      DS 2006   Simulation
## 5293          2     6776     GBA 2005   Simulation
## 5294          2     9787      XB 2001       Racing
## 5295          2    12333      GC 2002       Racing
## 5296          2     1431    2600 1981      Shooter
## 5297          2     3117      PS 1998      Shooter
## 5298          2    12584     Wii 2011      Shooter
## 5299          2    13407     3DS 2011      Shooter
## 5300          2    11000      DS 2010       Puzzle
## 5301          2    12141     Wii 2010       Puzzle
## 5302          2    13687     PSP 2011    Adventure
## 5303          2    14360    X360 2010    Adventure
## 5304          2     8637      DS 2007         Misc
## 5305          2     9811     PSP 2008         Misc
## 5306          2    12447     Wii 2010       Racing
## 5307          2    15379      DS 2010       Racing
## 5308          2     5473     Wii 2009      Shooter
## 5309          2    13721      DS 2009      Shooter
## 5310          2     4444    X360 2011      Shooter
## 5311          2     7119     PS3 2011      Shooter
## 5312          2    10408     PSV 2014 Role-Playing
## 5313          2    13072     PS4 2014 Role-Playing
## 5314          2      690    SNES 1995 Role-Playing
## 5315          2     1294      DS 2008 Role-Playing
## 5316          2    12251     Wii 2008       Racing
## 5317          2    15521      DS 2008       Racing
## 5318          2     8141      DS 2010         Misc
## 5319          2     8307     Wii 2010         Misc
## 5320          2     4184      DS 2010       Action
## 5321          2    14158     3DS 2013       Action
## 5322          2     5554     PS3 2010       Action
## 5323          2     8493    X360 2010       Action
## 5324          2    10261    SNES 1993       Sports
## 5325          2    11796      PS 1995       Sports
## 5326          2    14925     PS2 2010    Adventure
## 5327          2    15699     PSP 2011    Adventure
## 5328          2    12458     Wii 2008       Racing
## 5329          2    13380      DS 2004       Racing
## 5330          2    11877     PSP 2008    Adventure
## 5331          2    12380     PS2 2008    Adventure
## 5332          2    10698     Wii 2007       Action
## 5333          2    14420     PSP 2008       Action
## 5334          2    10099     PS2 2005       Action
## 5335          2    12445      XB 2005       Action
## 5336          2     2284      PS 2000       Racing
## 5337          2    14994     GBA 2002       Racing
## 5338          2    13268      XB 2004       Racing
## 5339          2    15788      PC 2004       Racing
## 5340          2     1389     PS2 2002       Racing
## 5341          2    13867      XB 2002       Racing
## 5342          2     7340    X360 2006       Sports
## 5343          2     8165     PS3 2007       Sports
## 5344          2    14476      XB 2005      Shooter
## 5345          2    12533     PS2 2005      Shooter
## 5346          2     4866      PS 1996     Strategy
## 5347          2     6348     N64 1999     Strategy
## 5348          2     6792    X360 2008     Strategy
## 5349          2    15604      PC 2008     Strategy
## 5350          2     4532    X360 2007     Strategy
## 5351          2    12068      PC 2007     Strategy
## 5352          2      512      PC 1996     Strategy
## 5353          2     4727      PS 1997     Strategy
## 5354          2     3042      PC 2008     Strategy
## 5355          2     4283    X360 2008     Strategy
## 5356          2     1793     NES 1986       Action
## 5357          2     4196    2600 1987       Action
## 5358          2     8139     PS2 2002     Strategy
## 5359          2    11833      XB 2002     Strategy
## 5360          2    12545     PS2 2006      Shooter
## 5361          2    15159      XB 2006      Shooter
## 5362          2     5362     PS3 2007       Action
## 5363          2     7704    X360 2007       Action
## 5364          2     7798     PSV 2013 Role-Playing
## 5365          2     9824     3DS 2013 Role-Playing
## 5366          2     3209    X360 2008       Action
## 5367          2     4859     PS3 2008       Action
## 5368          2     7887     PS2 2005      Shooter
## 5369          2    10576      XB 2005      Shooter
## 5370          2     3771     PS2 2004      Shooter
## 5371          2     7159      XB 2004      Shooter
## 5372          2    10279     PS2 2005       Action
## 5373          2    12712      XB 2005       Action
## 5374          2     4697      PS 2000       Sports
## 5375          2     5502     PS2 2001       Sports
## 5376          2    13144     PSP 2010    Adventure
## 5377          2    13933     3DS 2015    Adventure
## 5378          2     8797      DS 2009       Puzzle
## 5379          2    12850     Wii 2009       Puzzle
## 5380          2     7325     PS2 2004       Racing
## 5381          2    10847      XB 2004       Racing
## 5382          2     3142     PS2 2004     Platform
## 5383          2     8944      XB 2004     Platform
## 5384          2    14070      DS 2008       Puzzle
## 5385          2    15104     Wii 2010       Puzzle
## 5386          2    10140     PSV 2013 Role-Playing
## 5387          2    11631     PSP 2010 Role-Playing
## 5388          2     8680     3DS 2012         Misc
## 5389          2    14556     PS2 2002     Strategy
## 5390          2     5130      GC 2004 Role-Playing
## 5391          2     5510     N64 1999 Role-Playing
## 5392          2     3393      PS 1998       Sports
## 5393          2    12509     N64 2000       Sports
## 5394          2     3844     PS3 2011 Role-Playing
## 5395          2     6952      PC 2011 Role-Playing
## 5396          2    14726      GC 2003       Racing
## 5397          2    15261      XB 2003       Racing
## 5398          2     1972     Wii 2010         Misc
## 5399          2    10839     PS3 2011         Misc
## 5400          2    15881     Wii 2011         Misc
## 5401          2    15236     PS3 2011         Misc
## 5402          2     6842     Wii 2007         Misc
## 5403          2     8527     PS2 2007         Misc
## 5404          2    10451     Wii 2010       Sports
## 5405          2    15624      DS 2010       Sports
## 5406          2     4911      DS 2008         Misc
## 5407          2     4940     Wii 2008         Misc
## 5408          2     6461     PSV 2014         Misc
## 5409          2     7762     PSP 2012         Misc
## 5410          2     4684     PSV 2013         Misc
## 5411          2     6921     PSP 2010         Misc
## 5412          2     4101    X360 2008      Shooter
## 5413          2     4154     PS3 2008      Shooter
## 5414          2     5626     PS2 2005      Shooter
## 5415          2     7395      XB 2005      Shooter
## 5416          2    11914     PSP 2006       Sports
## 5417          2    11958     Wii 2007       Sports
## 5418          2     9995     PS4 2016       Action
## 5419          2    13492    XOne 2016       Action
## 5420          2      794    X360 2006       Action
## 5421          2    15341     PS4 2016       Action
## 5422          2     6190      PS 1998     Fighting
## 5423          2     8021     SAT 1997     Fighting
## 5424          2     2060     PS2 2000     Fighting
## 5425          2     9166      DC 2000     Fighting
## 5426          2     7589     PS2 2005      Shooter
## 5427          2    10404      XB 2005      Shooter
## 5428          2     6153     PS3 2010      Shooter
## 5429          2     7462    X360 2010      Shooter
## 5430          2    13695    X360 2012     Fighting
## 5431          2    13788     PS3 2012     Fighting
## 5432          2     6402    X360 2010       Action
## 5433          2     8732     PS3 2010       Action
## 5434          2     9003     PSV 2014       Action
## 5435          2     9926     PS3 2014       Action
## 5436          2     9318     Wii 2011         Misc
## 5437          2     9605    X360 2011         Misc
## 5438          2     2712     Wii 2009       Sports
## 5439          2     4473      DS 2010       Sports
## 5440          2     4546     PS3 2007       Action
## 5441          2     5338    X360 2007       Action
## 5442          2      878     PS2 2003     Fighting
## 5443          2     6698      GC 2003     Fighting
## 5444          2    12886     Wii 2008     Strategy
## 5445          2    15429      DS 2008     Strategy
## 5446          2     4291     PS2 2005      Shooter
## 5447          2     5438      XB 2005      Shooter
## 5448          2     8086     PSV 2014     Fighting
## 5449          2     8634     PS3 2014     Fighting
## 5450          2      793      PS 1997       Sports
## 5451          2    11186     SAT 1999       Sports
## 5452          2    12525     PS4 2016      Shooter
## 5453          2    13996    XOne 2016      Shooter
## 5454          2     2209     PS2 2005      Shooter
## 5455          2     4232      XB 2005      Shooter
## 5456          2     9423    X360 2008       Action
## 5457          2    10958     PS3 2009       Action
## 5458          2     9642     SAT 1995      Shooter
## 5459          2    11065      PS 1995      Shooter
## 5460          2    13130      DS 2012       Action
## 5461          2    14098     PSP 2012       Action
## 5462          2     2458     PS3 2012       Action
## 5463          2     4478    X360 2012       Action
## 5464          2     6896    X360 2012       Racing
## 5465          2     7737     PS3 2012       Racing
## 5466          2     1161      PC 1996 Role-Playing
## 5467          2     3446      PS 1997 Role-Playing
## 5468          2    14205     PSP 2013    Adventure
## 5469          2    15228     PSV 2015    Adventure
## 5470          2     1117    2600 1982       Puzzle
## 5471          2     4729     NES 1985       Puzzle
## 5472          2    10660     PS3 2014     Fighting
## 5473          2    12529    X360 2014     Fighting
## 5474          2     8393     PSV 2015 Role-Playing
## 5475          2    10285     PS4 2016 Role-Playing
## 5476          2     4851      DS 2007       Puzzle
## 5477          2     9680     PSP 2007       Puzzle
## 5478          2    15879      GC 2003       Action
## 5479          2    16349      XB 2003       Action
## 5480          2     3489     PS3 2011 Role-Playing
## 5481          2     8160     PSV 2014 Role-Playing
## 5482          2     1410     Wii 2007    Adventure
## 5483          2     7091     PS2 2007    Adventure
## 5484          2     4743     Wii 2011         Misc
## 5485          2     9467      DS 2011         Misc
## 5486          2     3293     Wii 2010         Misc
## 5487          2     8210     PS3 2010         Misc
## 5488          2     3126     Wii 2010         Misc
## 5489          2     9677     PS3 2010         Misc
## 5490          2    15351     GBA 2002       Sports
## 5491          2    15664      GC 2002       Sports
## 5492          2    11935     GBA 2002       Sports
## 5493          2    12484      GC 2002       Sports
## 5494          2    14281      GC 2002       Sports
## 5495          2    14708     GBA 2002       Sports
## 5496          2     3326     Wii 2008         Misc
## 5497          2     8349     PS2 2008         Misc
## 5498          2     1994      DS 2010       Action
## 5499          2     2947     Wii 2010       Action
## 5500          2     1011    SNES 1993     Platform
## 5501          2    14545     GBA 2003     Platform
## 5502          2     8277      PS 2001     Platform
## 5503          2     9667     GBA 2001     Platform
## 5504          2    10364     Wii 2006      Shooter
## 5505          2    12263      DS 2006      Shooter
## 5506          2     1091     NES 1989     Platform
## 5507          2     1352      GB 1988     Platform
## 5508          2     9708     PS2 2002     Platform
## 5509          2    12974      GC 2002     Platform
## 5510          2    12170     GBA 2003         Misc
## 5511          2    13050      GC 2002         Misc
## 5512          2     4770     PS2 2001     Platform
## 5513          2     8151      GC 2001     Platform
## 5514          2      970    SNES 1994     Platform
## 5515          2     1374     GEN 1994     Platform
## 5516          2     5479     PS2 2002       Action
## 5517          2     6189     GBA 2002       Action
## 5518          2    11264     Wii 2009       Sports
## 5519          2    12771      DS 2009       Sports
## 5520          2     6897    X360 2009 Role-Playing
## 5521          2    11721      PC 2009 Role-Playing
## 5522          2     9840     Wii 2009       Racing
## 5523          2    14345      DS 2009       Racing
## 5524          2     3199     GBA 2004   Simulation
## 5525          2     3532      DS 2006   Simulation
## 5526          2     9345     Wii 2008 Role-Playing
## 5527          2    10020     PS2 2007 Role-Playing
## 5528          2     6435     Wii 2009       Sports
## 5529          2    11274      DS 2009       Sports
## 5530          2      126     Wii 2010     Platform
## 5531          2      924     3DS 2013     Platform
## 5532          2     1462      GC 2004     Platform
## 5533          2    15994     Wii 2008     Platform
## 5534          2     1461      XB 2005      Shooter
## 5535          2    10574      PC 2004      Shooter
## 5536          2      354      PC 1994      Shooter
## 5537          2    13928     GBA 2002      Shooter
## 5538          2     6387     Wii 2009         Misc
## 5539          2    10902     PS2 2009         Misc
## 5540          2     1958      DS 2007     Platform
## 5541          2     9828     PS2 2008     Platform
## 5542          2     6772     PS2 2005    Adventure
## 5543          2     9963      GC 2005    Adventure
## 5544          2      171      GB 1989       Puzzle
## 5545          2      216     NES 1990       Puzzle
## 5546          2     3604     PS2 2003         Misc
## 5547          2    10303      XB 2003         Misc
## 5548          2      451     PS2 2002     Fighting
## 5549          2     2959      GC 2003     Fighting
## 5550          2      641     PS2 2003     Fighting
## 5551          2     6273      GC 2004     Fighting
## 5552          2     2599     PS2 2006     Fighting
## 5553          2     5953     Wii 2006     Fighting
## 5554          2      470     PS2 2007     Fighting
## 5555          2     1993     Wii 2007     Fighting
## 5556          2     2423     PS3 2008     Fighting
## 5557          2     4048    X360 2008     Fighting
## 5558          2     7747      PS 1996     Fighting
## 5559          2     8982     SAT 1995     Fighting
## 5560          2     3269     PS3 2011     Fighting
## 5561          2     3722    X360 2011     Fighting
## 5562          2     2673     PS3 2009     Fighting
## 5563          2     3907    X360 2009     Fighting
## 5564          2     2502     PS3 2010     Fighting
## 5565          2     3145    X360 2010     Fighting
## 5566          2     2864     PS4 2015       Action
## 5567          2     4028     PS3 2015       Action
## 5568          2     1193      GB 2001 Role-Playing
## 5569          2     2616     3DS 2014 Role-Playing
## 5570          2      532    SNES 1992 Role-Playing
## 5571          2     1112     PS2 2004 Role-Playing
## 5572          2      243      PS 2000 Role-Playing
## 5573          2     1355     3DS 2013 Role-Playing
## 5574          2      181     PS2 2004 Role-Playing
## 5575          2     2419     3DS 2015 Role-Playing
## 5576          2    11642     GEN 1994 Role-Playing
## 5577          2    12064    SNES 1992 Role-Playing
## 5578          2      313     NES 1988 Role-Playing
## 5579          2     2533      GB 2000 Role-Playing
## 5580          2     3765     PS3 2013 Role-Playing
## 5581          2     4987     PSV 2013 Role-Playing
## 5582          2      979     PS3 2012 Role-Playing
## 5583          2     2583    X360 2012 Role-Playing
## 5584          2    11629     PS4 2015 Role-Playing
## 5585          2    14339     PS3 2015 Role-Playing
## 5586          2    12952      XB 2002     Platform
## 5587          2    13749      GC 2002     Platform
## 5588          2     2704     Wii 2009       Puzzle
## 5589          2     3112      DS 2009       Puzzle
## 5590          2    12228    X360 2009   Simulation
## 5591          2    15970     PS3 2012   Simulation
## 5592          2     9032     Wii 2008         Misc
## 5593          2    14587      DS 2008         Misc
## 5594          2     7778      DS 2009         Misc
## 5595          2    13049     Wii 2009         Misc
## 5596          2    15062     PS3 2011    Adventure
## 5597          2    15778    X360 2011    Adventure
## 5598          2    12736      DS 2007 Role-Playing
## 5599          2    16321     PSP 2007 Role-Playing
## 5600          2     8076     PSV 2014 Role-Playing
## 5601          2    11581     PSP 2013 Role-Playing
## 5602          2     3905     PSP 2004       Action
## 5603          2     6277      PS 1997       Action
## 5604          2      923     PS2 2001       Action
## 5605          2    11727      XB 2002       Action
## 5606          2      785     PS2 2003       Action
## 5607          2     8551      XB 2003       Action
## 5608          2     1397     PS2 2005       Action
## 5609          2    12880      XB 2005       Action
## 5610          2     5358     PS2 2006       Action
## 5611          2     9584    X360 2006       Action
## 5612          2     5389     PS3 2009       Action
## 5613          2     6913    X360 2009       Action
## 5614          2     2266     PS3 2011       Action
## 5615          2     6775    X360 2011       Action
## 5616          2     3292     PS3 2013       Action
## 5617          2     8629    X360 2013       Action
## 5618          2     4134     PS3 2007       Action
## 5619          2     7918    X360 2007       Action
## 5620          2     3679     PS3 2010       Action
## 5621          2     8135    X360 2010       Action
## 5622          2     6996     PS3 2013       Action
## 5623          2     9629     PSV 2013       Action
## 5624          2    11895     3DS 2012      Shooter
## 5625          2    13292     PS3 2012      Shooter
## 5626          2     1521     Wii 2007       Sports
## 5627          2     5552      DS 2007       Sports
## 5628          2     5041     PS3 2010     Fighting
## 5629          2     5251    X360 2010     Fighting
## 5630          2     2014     PS4 2014       Sports
## 5631          2     4268    XOne 2014       Sports
## 5632          2     2344     PS4 2016       Sports
## 5633          2     4822    XOne 2016       Sports
## 5634          2     4105      PS 1999     Fighting
## 5635          2     7225     N64 2000     Fighting
## 5636          2     2475     PS2 2004       Sports
## 5637          2     4990      XB 2004       Sports
## 5638          2    12776     PS2 2002       Sports
## 5639          2    13109      GC 2002       Sports
## 5640          2     7568     PS2 2004       Sports
## 5641          2     9322      XB 2004       Sports
## 5642          2    15404      GC 2002       Sports
## 5643          2    15502      XB 2002       Sports
## 5644          2     1160     PS2 2004       Sports
## 5645          2     2174      XB 2004       Sports
## 5646          2    14150     PS2 2002       Sports
## 5647          2    16429      XB 2002       Sports
## 5648          2     3744     PS2 2003       Sports
## 5649          2     6440      XB 2003       Sports
## 5650          2      581     PS2 2004       Sports
## 5651          2     1125      XB 2004       Sports
## 5652          2     3610     PS2 2003       Sports
## 5653          2     5225      XB 2003       Sports
## 5654          2    11308     PS2 2001       Sports
## 5655          2    15595      XB 2002       Sports
## 5656          2     2373     PS2 2004       Sports
## 5657          2     4603      XB 2004       Sports
## 5658          2     7015     PS2 2003       Sports
## 5659          2    10173      XB 2003       Sports
## 5660          2     7449     PS2 2000       Sports
## 5661          2    14671      XB 2002       Sports
## 5662          2     5172     PS2 2001       Sports
## 5663          2     8185     GBA 2001       Sports
## 5664          2     5192     PS3 2013      Shooter
## 5665          2     8838    X360 2013      Shooter
## 5666          2     9172     PSP 2011       Action
## 5667          2    10396     PSV 2014       Action
## 5668          2     7559     PS3 2011      Shooter
## 5669          2     7946    X360 2011      Shooter
## 5670          2     9439     PS3 2009      Shooter
## 5671          2     9647    X360 2009      Shooter
## 5672          2     6092     PS3 2011       Action
## 5673          2     8487    X360 2011       Action
## 5674          2    14301     GBA 2005       Sports
## 5675          2    15583      DS 2005       Sports
## 5676          2    11979      PC 2010   Simulation
## 5677          2    15603      DS 2010   Simulation
## 5678          2     7504     PS3 2007 Role-Playing
## 5679          2     7766    X360 2006 Role-Playing
## 5680          2    14011     PS3 2007 Role-Playing
## 5681          2    15100    X360 2006 Role-Playing
## 5682          2    12048     PS3 2014      Shooter
## 5683          2    13048    X360 2014      Shooter
## 5684          2     3520     PS3 2010       Action
## 5685          2     3675    X360 2010       Action
## 5686          2    11180    X360 2014       Action
## 5687          2    11275     PS3 2014       Action
## 5688          2     7904      DS 2010    Adventure
## 5689          2     9742     Wii 2009    Adventure
## 5690          2     4368     PS3 2008 Role-Playing
## 5691          2     5550    X360 2007 Role-Playing
## 5692          2     6363      DS 2008 Role-Playing
## 5693          2    10483     3DS 2014 Role-Playing
## 5694          2    12720     PSP 2009       Action
## 5695          2    14906     PS2 2009       Action
## 5696          2     4978     PS2 2003       Action
## 5697          2    10664      XB 2003       Action
## 5698          2     7461     PS2 2005       Action
## 5699          2    11571      XB 2005       Action
## 5700          2     6530     PS2 2002       Sports
## 5701          2    13936      GC 2002       Sports
## 5702          2    13486     PSV 2015 Role-Playing
## 5703          2    14626     PS4 2015 Role-Playing
## 5704          2    14343     PSV 2013 Role-Playing
## 5705          2    16471     3DS 2013 Role-Playing
## 5706          2     2096     PS3 2009   Simulation
## 5707          2     6299     PSP 2010   Simulation
## 5708          2     3656     PS3 2007      Shooter
## 5709          2     5366    X360 2006      Shooter
## 5710          2     8851     PS2 2001       Racing
## 5711          2    12321      XB 2001       Racing
## 5712          2     2342     Wii 2009       Racing
## 5713          2     3808     PSP 2009       Racing
## 5714          2     3190     PS3 2013       Racing
## 5715          2     5525    X360 2013       Racing
## 5716          2     3262     PSV 2012       Sports
## 5717          2     9994     PSP 2005       Sports
## 5718          2    11599      DS 2011     Strategy
## 5719          2    14101     3DS 2011     Strategy
## 5720          2      569      XB 2004 Role-Playing
## 5721          2     4137    X360 2014 Role-Playing
## 5722          2      193    X360 2010 Role-Playing
## 5723          2     5700      PC 2011 Role-Playing
## 5724          2     7807    X360 2008     Fighting
## 5725          2     8258     PS3 2008     Fighting
## 5726          2     8228     PS3 2009       Action
## 5727          2     8335    X360 2009       Action
## 5728          2    12215     PS2 2004 Role-Playing
## 5729          2    12991      XB 2004 Role-Playing
## 5730          2     3184     Wii 2009         Misc
## 5731          2     6400      DS 2009         Misc
## 5732          2     7670     Wii 2011         Misc
## 5733          2    10454    X360 2011         Misc
## 5734          2     9442     Wii 2009         Misc
## 5735          2    13421      DS 2009         Misc
## 5736          2     6093     PS3 2012       Action
## 5737          2     6652    X360 2012       Action
## 5738          2     8849    XOne 2014         Misc
## 5739          2    11887    X360 2014         Misc
## 5740          2     8417     PS2 2003 Role-Playing
## 5741          2    16220      DS 2006 Role-Playing
## 5742          2    13666      PC 2009     Strategy
## 5743          2    14777      DS 2011     Strategy
## 5744          2    13356    X360 2013       Action
## 5745          2    14106     PS3 2013       Action
## 5746          2     9021      DS 2010   Simulation
## 5747          2    12311     Wii 2009   Simulation
## 5748          2     9018     PS2 2001       Action
## 5749          2    12667      XB 2002       Action
## 5750          2     8350     PS2 2007    Adventure
## 5751          2    12756     PSV 2012    Adventure
## 5752          2     9766     PS2 2008       Racing
## 5753          2    13670     PS3 2008       Racing
## 5754          2     8000     PS2 2004     Fighting
## 5755          2    10379      XB 2004     Fighting
## 5756          2     1285     PS2 2004     Fighting
## 5757          2     3001      XB 2004     Fighting
## 5758          2     1778     PS3 2011     Fighting
## 5759          2     2565    X360 2011     Fighting
## 5760          2     1220     PS3 2009     Fighting
## 5761          2     1370    X360 2009     Fighting
## 5762          2     2468     NES 1987 Role-Playing
## 5763          2     3933      WS 2000 Role-Playing
## 5764          2     4136      DS 2009 Role-Playing
## 5765          2     6497     Wii 2009 Role-Playing
## 5766          2     1575      DS 2007   Simulation
## 5767          2     5786      PS 1997   Simulation
## 5768          2      630    SNES 1992 Role-Playing
## 5769          2     8386      PS 1998 Role-Playing
## 5770          2     1480     PS3 2013 Role-Playing
## 5771          2     2148     PSV 2013 Role-Playing
## 5772          2     7790    X360 2006 Role-Playing
## 5773          2     5620     PS2 2002 Role-Playing
## 5774          2     8831    X360 2007 Role-Playing
## 5775          2    11564     PS2 2007 Role-Playing
## 5776          2     2560     PS2 2007 Role-Playing
## 5777          2     5943    X360 2007 Role-Playing
## 5778          2      170     PS3 2009 Role-Playing
## 5779          2      754    X360 2010 Role-Playing
## 5780          2      564     PS3 2011 Role-Playing
## 5781          2     2770    X360 2011 Role-Playing
## 5782          2    12833     PS2 2006       Action
## 5783          2    15731      XB 2006       Action
## 5784          2     3076     PS3 2010       Action
## 5785          2     8708    X360 2010       Action
## 5786          2     9600     PS3 2011       Sports
## 5787          2     9872     Wii 2011       Sports
## 5788          2     5022     PS2 2004       Racing
## 5789          2     8455      XB 2004       Racing
## 5790          2     8625     PS2 2006       Racing
## 5791          2    13528      XB 2006       Racing
## 5792          2    10200    X360 2007       Racing
## 5793          2    16248      PC 2008       Racing
## 5794          2     8557      GC 2006     Platform
## 5795          2    10563      DS 2006     Platform
## 5796          2     1246      PC 2011       Sports
## 5797          2     9233     PSP 2011       Sports
## 5798          2     2891      PC 2013       Sports
## 5799          2     9273     PSV 2013       Sports
## 5800          2     6020     PS2 2005       Racing
## 5801          2    10898      XB 2005       Racing
## 5802          2     2057     PS2 2003       Racing
## 5803          2     8873      XB 2003       Racing
## 5804          2     7174     PS2 2005       Racing
## 5805          2    11627      XB 2005       Racing
## 5806          2     7689     PS2 2004       Action
## 5807          2    11196      XB 2004       Action
## 5808          2     1418    XOne 2014       Racing
## 5809          2     2429    X360 2014       Racing
## 5810          2     5446    X360 2008      Shooter
## 5811          2     8435     PS3 2008      Shooter
## 5812          2      279      PS 1997       Action
## 5813          2      736    2600 1981       Action
## 5814          2     9428      GC 2002     Platform
## 5815          2    11657      XB 2002     Platform
## 5816          2     5641     PS2 2003     Platform
## 5817          2     8793      GC 2003     Platform
## 5818          2    10243     PSP 2005     Platform
## 5819          2    12287      DS 2005     Platform
## 5820          2     5669     PS2 2003     Fighting
## 5821          2     7562      GC 2003     Fighting
## 5822          2     3374    SNES 1995     Strategy
## 5823          2    13491      DS 2007     Strategy
## 5824          2     3599    X360 2008      Shooter
## 5825          2    15108      PC 2008      Shooter
## 5826          2     2970      DS 2013     Platform
## 5827          2     3463     3DS 2013     Platform
## 5828          2     8112     PS3 2006       Racing
## 5829          2    16309     PSP 2007       Racing
## 5830          2     2815      XB 2004     Strategy
## 5831          2     5926     PS2 2005     Strategy
## 5832          2    12232     PS2 2006     Strategy
## 5833          2    13361      XB 2006     Strategy
## 5834          2     9558    X360 2013      Shooter
## 5835          2     9743     PS3 2013      Shooter
## 5836          2    11758     PS2 2003     Platform
## 5837          2    13433      XB 2003     Platform
## 5838          2     3719     N64 1999       Action
## 5839          2     4163      PS 2000       Action
## 5840          2     4804     PS2 2005 Role-Playing
## 5841          2     8044      XB 2005 Role-Playing
## 5842          2      142    X360 2006      Shooter
## 5843          2    15784      PC 2007      Shooter
## 5844          2    12632     Wii 2011     Platform
## 5845          2    13538     3DS 2011     Platform
## 5846          2     8958      DS 2007      Shooter
## 5847          2     9657     Wii 2007      Shooter
## 5848          2    13138      DS 2008     Platform
## 5849          2    15011     Wii 2008     Platform
## 5850          2    15450     Wii 2011   Simulation
## 5851          2    15857      DS 2011   Simulation
## 5852          2     9953     Wii 2011         Misc
## 5853          2    13554     PS3 2011         Misc
## 5854          2     3776      PS 1999     Platform
## 5855          2     7417     N64 1999     Platform
## 5856          2     8616     PS2 2004    Adventure
## 5857          2    12013     PSP 2005    Adventure
## 5858          2    14683     PS4 2016       Action
## 5859          2    14916    XOne 2016       Action
## 5860          2     9853     PS2 2003       Action
## 5861          2    12839      XB 2003       Action
## 5862          2     2285     N64 1998     Platform
## 5863          2     8331      PS 1999     Platform
## 5864          2     3412     Wii 2008       Action
## 5865          2     4115      DS 2008       Action
## 5866          2     4360     PSV 2013 Role-Playing
## 5867          2     6938     PSP 2013 Role-Playing
## 5868          2     4998     PSV 2015 Role-Playing
## 5869          2    10521     PS4 2015 Role-Playing
## 5870          2     7901     PSV 2015       Action
## 5871          2    11384     PS4 2015       Action
## 5872          2      580     PS3 2009       Action
## 5873          2     5574     PSV 2014       Action
## 5874          2      217     PS3 2010       Action
## 5875          2     3214     PS4 2015       Action
## 5876          2     2872      GC 2002     Fighting
## 5877          2     9822      XB 2002     Fighting
## 5878          2     4222     PS2 2004     Fighting
## 5879          2     9177      XB 2004     Fighting
## 5880          2     5545    X360 2008       Action
## 5881          2     5589     PS3 2008       Action
## 5882          2      935     Wii 2010       Action
## 5883          2     8809      DS 2010       Action
## 5884          2     2578     PS3 2011      Shooter
## 5885          2     3896    X360 2011      Shooter
## 5886          2      299     NES 1984       Sports
## 5887          2      777      GB 1989       Sports
## 5888          2    12673      DS 2010    Adventure
## 5889          2    13544     Wii 2010    Adventure
## 5890          2     9736     3DS 2014         Misc
## 5891          2    14475    WiiU 2014         Misc
## 5892          2    12105     PS4 2015     Strategy
## 5893          2    13300      PC 2015     Strategy
## 5894          2    11898     PSV 2015 Role-Playing
## 5895          2    12804     PS4 2015 Role-Playing
## 5896          2     6855     PS3 2012       Sports
## 5897          2     7956    X360 2012       Sports
## 5898          2      686      PS 1997       Action
## 5899          2     6907     GBA 2004       Action
## 5900          2       39     PS2 2001       Action
## 5901          2    16096      PC 2002       Action
## 5902          2     1443      DS 2009       Action
## 5903          2     1904     PSP 2009       Action
## 5904          2       91     PSP 2005       Action
## 5905          2      361     PS2 2006       Action
## 5906          2       25     PS2 2002       Action
## 5907          2    13734      PC 2003       Action
## 5908          2      199     PSP 2006       Action
## 5909          2     2140     PS2 2007       Action
## 5910          2     4602     SAT 1997 Role-Playing
## 5911          2     6732      PS 1999 Role-Playing
## 5912          2     5960     PS2 2002 Role-Playing
## 5913          2     7656      DC 2000 Role-Playing
## 5914          2    11211      PC 2011    Adventure
## 5915          2    13441    X360 2011    Adventure
## 5916          2     3538     Wii 2010         Misc
## 5917          2    10063      DS 2010         Misc
## 5918          2     8534    X360 2011         Misc
## 5919          2    11601     PS3 2011         Misc
## 5920          2     9101     PSP 2005       Sports
## 5921          2     9142     PS2 2005       Sports
## 5922          2    16094      XB 2003       Racing
## 5923          2    16343      GC 2003       Racing
## 5924          2    13473     PS2 2007     Fighting
## 5925          2    13648     Wii 2007     Fighting
## 5926          2    11897     PS4 2016     Fighting
## 5927          2    12014     PS3 2016     Fighting
## 5928          2     8083     PS3 2014     Fighting
## 5929          2     8675     PS4 2014     Fighting
## 5930          2     1990     Wii 2008       Action
## 5931          2     3826      DS 2008       Action
## 5932          2      196     PS2 2006         Misc
## 5933          2      737    X360 2007         Misc
## 5934          2    13302      DS 2010       Sports
## 5935          2    13812     Wii 2010       Sports
## 5936          2     6451     PS3 2013       Action
## 5937          2    10823     PSV 2013       Action
## 5938          2     8813     PSV 2014       Action
## 5939          2     9088     PS3 2014       Action
## 5940          2     9813     PSV 2016       Action
## 5941          2    10846     PS4 2016       Action
## 5942          2    12821    X360 2008         Misc
## 5943          2    13147     PS3 2008         Misc
## 5944          2      282      PC 1997      Shooter
## 5945          2     3360     PS2 2001      Shooter
## 5946          2      667      PC 2004      Shooter
## 5947          2     3310      XB 2005      Shooter
## 5948          2       80      XB 2004      Shooter
## 5949          2    10818      PC 2007      Shooter
## 5950          2      130      XB 2001      Shooter
## 5951          2    13886      PC 2003      Shooter
## 5952          2     1398     Wii 2007       Action
## 5953          2     6168     PS2 2008       Action
## 5954          2    11915     PS2 2007       Racing
## 5955          2    13690     PSP 2007       Racing
## 5956          2    14688     PSV 2015       Action
## 5957          2    15933     PSP 2015       Action
## 5958          2     5770     Wii 2008   Simulation
## 5959          2     6814      GC 2005   Simulation
## 5960          2     3466      DS 2010   Simulation
## 5961          2     5915     3DS 2010   Simulation
## 5962          2     9993     Wii 2011         Misc
## 5963          2    12239    X360 2011         Misc
## 5964          2     4788     PSV 2014         Misc
## 5965          2     6632     PS3 2014         Misc
## 5966          2     9900     PSV 2016         Misc
## 5967          2    13887     PS4 2016         Misc
## 5968          2     6295     PS3 2013         Misc
## 5969          2     6997     PSV 2012         Misc
## 5970          2    13818     PS2 2004       Action
## 5971          2    15357      XB 2004       Action
## 5972          2    16400     PSP 2009    Adventure
## 5973          2    16457     PS2 2008    Adventure
## 5974          2    10764     Wii 2007       Action
## 5975          2    13505     PSP 2007       Action
## 5976          2     5108      DS 2008   Simulation
## 5977          2     5478     Wii 2008   Simulation
## 5978          2    11350      GC 2005       Action
## 5979          2    14076      PC 2005       Action
## 5980          2     8526     PS3 2009   Simulation
## 5981          2     9170    X360 2009   Simulation
## 5982          2     3947      DS 2009    Adventure
## 5983          2     7388     Wii 2009    Adventure
## 5984          2     5178     PS2 2003       Sports
## 5985          2    11492      XB 2003       Sports
## 5986          2     4669     PS2 2004         Misc
## 5987          2     9585      XB 2004         Misc
## 5988          2      920     PS2 2007         Misc
## 5989          2      982     Wii 2007         Misc
## 5990          2    14584     PSV 2015       Action
## 5991          2    16109     PS3 2015       Action
## 5992          2     8860     PS2 2008      Shooter
## 5993          2     9398    X360 2008      Shooter
## 5994          2    13649     PS4 2016       Action
## 5995          2    16534    XOne 2016       Action
## 5996          2     2571     PS2 2004      Shooter
## 5997          2     5381      XB 2004      Shooter
## 5998          2     7202     PS3 2013       Action
## 5999          2     8055    X360 2013       Action
## 6000          2    13487     Wii 2010       Racing
## 6001          2    16093      DS 2010       Racing
## 6002          2     8110      DS 2010    Adventure
## 6003          2    15437     Wii 2010    Adventure
## 6004          2     8784     Wii 2008   Simulation
## 6005          2    10719      DS 2008   Simulation
## 6006          2     3337     PSV 2011       Sports
## 6007          2     6113     PS3 2012       Sports
## 6008          2     1938      PS 1999       Racing
## 6009          2     5757     N64 1999       Racing
## 6010          2     4605     PS2 2003       Racing
## 6011          2     8521      GC 2003       Racing
## 6012          2     7981     Wii 2009       Racing
## 6013          2     8730      DS 2009       Racing
## 6014          2     6186      DS 2010       Racing
## 6015          2     7640     Wii 2010       Racing
## 6016          2     6984      DS 2008   Simulation
## 6017          2    13100     Wii 2009   Simulation
## 6018          2    13180     PS2 2006       Racing
## 6019          2    15934      XB 2006       Racing
## 6020          2     5047      XB 2002       Action
## 6021          2    10547      GC 2002       Action
## 6022          2     4260      PS 1999       Racing
## 6023          2     8588     N64 2000       Racing
## 6024          2     4299     PS3 2010 Role-Playing
## 6025          2     8103     PSV 2013 Role-Playing
## 6026          2     8464     PS3 2012 Role-Playing
## 6027          2    12195     PSV 2014 Role-Playing
## 6028          2    13522     PSV 2014       Action
## 6029          2    16453     PS3 2011       Action
## 6030          2     1576    WiiU 2014       Action
## 6031          2     4660     3DS 2016       Action
## 6032          2    10329      DS 2009       Action
## 6033          2    12995     Wii 2009       Action
## 6034          2    11409     Wii 2012   Simulation
## 6035          2    12598     PSP 2012   Simulation
## 6036          2     8404     Wii 2009         Misc
## 6037          2    13874      DS 2009         Misc
## 6038          2     4168     PS2 2001       Action
## 6039          2    12499     PS3 2011       Action
## 6040          2    11272     PS2 2006       Racing
## 6041          2    15957      XB 2006       Racing
## 6042          2     7811     PS2 2004       Racing
## 6043          2    12523      XB 2004       Racing
## 6044          2      639     NES 1988       Sports
## 6045          2     4027    2600 1980       Sports
## 6046          2    10486     Wii 2008    Adventure
## 6047          2    13596      DS 2008    Adventure
## 6048          2      524      DS 2007   Simulation
## 6049          2     9522     3DS 2011   Simulation
## 6050          2     9615      DS 2007     Platform
## 6051          2    12551     PSP 2007     Platform
## 6052          2     2243      DS 2010 Role-Playing
## 6053          2    11053     3DS 2013 Role-Playing
## 6054          2     9461     Wii 2007       Racing
## 6055          2    11235      DS 2007       Racing
## 6056          2     9848     PS2 2003       Racing
## 6057          2    12994      XB 2003       Racing
## 6058          2    14395     PSV 2014    Adventure
## 6059          2    14766     PS3 2014    Adventure
## 6060          2     7567     PS3 2010       Sports
## 6061          2     9163    X360 2010       Sports
## 6062          2     7738      DS 2008   Simulation
## 6063          2     8255     Wii 2008   Simulation
## 6064          2    12536     Wii 2010       Puzzle
## 6065          2    12990      DS 2010       Puzzle
## 6066          2     6165     PS2 2007       Action
## 6067          2     7211     PSP 2007       Action
## 6068          2     3313     PSP 2009     Platform
## 6069          2     4281     PS2 2009     Platform
## 6070          2    11069     Wii 2009   Simulation
## 6071          2    16296      DS 2009   Simulation
## 6072          2     8336     PS2 2002       Action
## 6073          2    11911      XB 2002       Action
## 6074          2     3358     PS2 2006       Action
## 6075          2     8882      XB 2006       Action
## 6076          2     9923     3DS 2011       Action
## 6077          2    10825     Wii 2011       Action
## 6078          2    10954      DS 2007         Misc
## 6079          2    13053     Wii 2007         Misc
## 6080          2     2873      PS 2000       Racing
## 6081          2     6028     N64 1999       Racing
## 6082          2     7000     PS2 2001       Racing
## 6083          2     9886      GC 2002       Racing
## 6084          2    13456      PC 2011       Puzzle
## 6085          2    15248      DS 2011       Puzzle
## 6086          2    13553      PC 2011       Action
## 6087          2    14745      DS 2012       Action
## 6088          2     7280     PS2 2006       Sports
## 6089          2    13931      GC 2006       Sports
## 6090          2    11458     PS2 2009       Sports
## 6091          2    14024     Wii 2009       Sports
## 6092          2     3899     PS2 2003       Sports
## 6093          2    10440      GC 2003       Sports
## 6094          2     4620     PS2 2004       Sports
## 6095          2    10792      GC 2004       Sports
## 6096          2     4320     PS2 2005       Sports
## 6097          2    11351      GC 2005       Sports
## 6098          2    10018     PS2 2005       Sports
## 6099          2    14949      GC 2005       Sports
## 6100          2     6865     PS2 2008       Sports
## 6101          2    11416     Wii 2008       Sports
## 6102          2     6426     PS3 2010       Sports
## 6103          2     7699     PSP 2010       Sports
## 6104          2     6508     PS3 2011       Sports
## 6105          2     7714     PSP 2011       Sports
## 6106          2     9415     PSP 2011       Sports
## 6107          2    11752     PS3 2011       Sports
## 6108          2     8449     PS3 2014       Sports
## 6109          2     9912     PSV 2014       Sports
## 6110          2     4465     PS2 2002       Sports
## 6111          2     9909      GC 2002       Sports
## 6112          2     3536     Wii 2009       Sports
## 6113          2    11513      DS 2009       Sports
## 6114          2     3479     PS3 2013     Fighting
## 6115          2    12559     3DS 2012     Fighting
## 6116          2    14230     PS4 2015     Fighting
## 6117          2    14377     PS3 2015     Fighting
## 6118          2    10119     PS3 2010       Sports
## 6119          2    16388    X360 2010       Sports
## 6120          2    14881     PS2 2003      Shooter
## 6121          2    15797      XB 2003      Shooter
## 6122          2     3811     PS2 2005       Racing
## 6123          2     8171      XB 2005       Racing
## 6124          2     8632    X360 2012         Misc
## 6125          2     9484     Wii 2012         Misc
## 6126          2     7138     PSP 2006 Role-Playing
## 6127          2    11010      DS 2006 Role-Playing
## 6128          2    10436     PS3 2014       Action
## 6129          2    15535    WiiU 2014       Action
## 6130          2    12190     Wii 2009     Fighting
## 6131          2    12967      DS 2009     Fighting
## 6132          2     2713    X360 2007      Shooter
## 6133          2     2721     PS3 2007      Shooter
## 6134          2    15836      GC 2005     Platform
## 6135          2    15912     PS2 2005     Platform
## 6136          2     5834     Wii 2011         Misc
## 6137          2     9203    X360 2011         Misc
## 6138          2    15638     PS2 2008       Action
## 6139          2    16461     Wii 2008       Action
## 6140          2     9405     PSP 2010 Role-Playing
## 6141          2    12082     PS3 2010 Role-Playing
## 6142          2    11886     PS2 2009     Strategy
## 6143          2    11888     PSP 2009     Strategy
## 6144          2     7145     PS3 2013       Action
## 6145          2     9803    X360 2013       Action
## 6146          2     8820      GC 2005       Action
## 6147          2    11240     PS2 2005       Action
## 6148          2      132     PS2 2002 Role-Playing
## 6149          2     1006     PS3 2013 Role-Playing
## 6150          2      256     PS2 2005 Role-Playing
## 6151          2     1489     PS3 2014 Role-Playing
## 6152          2    11210     PS3 2011       Action
## 6153          2    11473    X360 2011       Action
## 6154          2    11130      DS 2008 Role-Playing
## 6155          2    11203     PSP 2010 Role-Playing
## 6156          2     1377      PS 1999     Fighting
## 6157          2     2260     N64 1999     Fighting
## 6158          2     3579     PS2 2001     Fighting
## 6159          2     4773      PS 2000     Fighting
## 6160          2     2281     PS2 2002       Sports
## 6161          2     6406      XB 2002       Sports
## 6162          2    11732     Wii 2008       Action
## 6163          2    14573      DS 2008       Action
## 6164          2    10397     PSP 2012       Sports
## 6165          2    10813     3DS 2014       Sports
## 6166          2    14458     3DS 2012    Adventure
## 6167          2    14909     PSV 2012    Adventure
## 6168          2      418     PS3 2011    Adventure
## 6169          2      550    X360 2011    Adventure
## 6170          2     4187     PS2 2005       Racing
## 6171          2     9005      XB 2005       Racing
## 6172          2     1316     3DS 2013     Platform
## 6173          2     1911    WiiU 2013     Platform
## 6174          2     6781     PSV 2015       Action
## 6175          2     7488     3DS 2015       Action
## 6176          2     2885     N64 1999       Racing
## 6177          2     5221      PS 1999       Racing
## 6178          2    11358     PS2 2002       Sports
## 6179          2    11608     GBA 2002       Sports
## 6180          2    11267     PS4 2014       Action
## 6181          2    15642      PC 2014       Action
## 6182          2    14388     PSP 2010    Adventure
## 6183          2    16114     PS2 2010    Adventure
## 6184          2      370    X360 2008      Shooter
## 6185          2    15092      PC 2008      Shooter
## 6186          2      302    X360 2009      Shooter
## 6187          2     5160      PC 2009      Shooter
## 6188          2    15445     PS4 2015       Action
## 6189          2    16299    WiiU 2015       Action
## 6190          2    12301     Wii 2007     Fighting
## 6191          2    14249     PSP 2007     Fighting
## 6192          2     3644     PS3 2009     Fighting
## 6193          2     4853    X360 2009     Fighting
## 6194          2     8477    X360 2009    Adventure
## 6195          2    10469     PS3 2009    Adventure
## 6196          2     5404     PS2 2004    Adventure
## 6197          2     8438      XB 2004    Adventure
## 6198          2     9297      DS 2010       Sports
## 6199          2    14829     Wii 2010       Sports
## 6200          2    10110      DS 2010   Simulation
## 6201          2    14944     Wii 2010   Simulation
## 6202          2     1871     PS3 2013 Role-Playing
## 6203          2     6064    X360 2013 Role-Playing
## 6204          2    11488      DS 2008       Puzzle
## 6205          2    15080     Wii 2008       Puzzle
## 6206          2    10586     Wii 2008       Sports
## 6207          2    12544      DS 2008       Sports
## 6208          2     8571     Wii 2009       Sports
## 6209          2     9324      DS 2009       Sports
## 6210          2    10708    X360 2010       Sports
## 6211          2    11547     PS3 2010       Sports
## 6212          2    11138     Wii 2010       Sports
## 6213          2    11433      DS 2010       Sports
## 6214          2      149     PS3 2008     Platform
## 6215          2      593     PSP 2009     Platform
## 6216          2      931     PS4 2014     Platform
## 6217          2     2760     PS3 2014     Platform
## 6218          2     4761     Wii 2008   Simulation
## 6219          2    15426      PC 2008   Simulation
## 6220          2     1859     NES 1984       Puzzle
## 6221          2    15164      DS 2006       Puzzle
## 6222          2     3013     PS3 2012       Action
## 6223          2     4032    X360 2012       Action
## 6224          2     2904     PS3 2012       Sports
## 6225          2     3387    X360 2012       Sports
## 6226          2    10604     PSV 2011 Role-Playing
## 6227          2    10717     PSP 2011 Role-Playing
## 6228          2     9011     PSV 2014 Role-Playing
## 6229          2    11525     PS3 2014 Role-Playing
## 6230          2    11246     3DS 2012 Role-Playing
## 6231          2    11961     PSP 2012 Role-Playing
## 6232          2     1459    X360 2006      Shooter
## 6233          2     3148     PS3 2008      Shooter
## 6234          2    10492     PS3 2010     Fighting
## 6235          2    13000    X360 2010     Fighting
## 6236          2     3629      PS 1998 Role-Playing
## 6237          2     7331     SAT 1997 Role-Playing
## 6238          2    13677     Wii 2007       Puzzle
## 6239          2    16381      DS 2007       Puzzle
## 6240          2     7001     Wii 2007       Racing
## 6241          2     9734      DS 2008       Racing
## 6242          2     2219     PS2 2006       Sports
## 6243          2     5343     PSP 2006       Sports
## 6244          2     2268     PS3 2012       Sports
## 6245          2     7575     PSV 2012       Sports
## 6246          2     2862     PS3 2013       Sports
## 6247          2     9504     PSV 2013       Sports
## 6248          2     2459     PS4 2016       Action
## 6249          2     8468     PS3 2016       Action
## 6250          2    11623     PS3 2009       Sports
## 6251          2    11990    X360 2009       Sports
## 6252          2     5976     Wii 2007       Sports
## 6253          2    10142     PS2 2007       Sports
## 6254          2     7556      XB 2002       Sports
## 6255          2     8994      GC 2002       Sports
## 6256          2     6472     PS2 2006       Sports
## 6257          2    12890      XB 2006       Sports
## 6258          2     5947     PS2 2004       Sports
## 6259          2    11162      XB 2004       Sports
## 6260          2     2695     PS2 2003     Fighting
## 6261          2     7354      XB 2003     Fighting
## 6262          2     9074     PS2 2004         Misc
## 6263          2    11733      XB 2004         Misc
## 6264          2     2757     PS2 2006       Sports
## 6265          2     5406      XB 2006       Sports
## 6266          2     1991     PS2 2003       Sports
## 6267          2     7611      XB 2003       Sports
## 6268          2      901     PS2 2004       Racing
## 6269          2     4464      XB 2004       Racing
## 6270          2     8289     PS2 2005       Racing
## 6271          2    14115      XB 2005       Racing
## 6272          2    11285    X360 2014       Racing
## 6273          2    14185     PS3 2014       Racing
## 6274          2    12784     PS4 2015       Sports
## 6275          2    15730    XOne 2015       Sports
## 6276          2     2015     PS2 2005       Racing
## 6277          2     4844      XB 2005       Racing
## 6278          2     3628    X360 2011       Racing
## 6279          2     4219     PS3 2011       Racing
## 6280          2     7812     PS2 2003      Shooter
## 6281          2    10374      XB 2003      Shooter
## 6282          2     1834     PS4 2015       Action
## 6283          2     4279    XOne 2015       Action
## 6284          2     1005      PS 1998       Sports
## 6285          2     3328     N64 1999       Sports
## 6286          2     1023      PS 1998       Sports
## 6287          2     2313     N64 1998       Sports
## 6288          2    14315    X360 2009   Simulation
## 6289          2    15877      PC 2009   Simulation
## 6290          2     5987     PS3 2010    Adventure
## 6291          2     7816    X360 2010    Adventure
## 6292          2     4206    X360 2013       Sports
## 6293          2     8893     PS3 2013       Sports
## 6294          2     1284     PS2 2005       Sports
## 6295          2     3613      XB 2005       Sports
## 6296          2     8986     Wii 2010     Strategy
## 6297          2     9781     PSP 2010     Strategy
## 6298          2    15428     PS2 2004     Platform
## 6299          2    16162      XB 2004     Platform
## 6300          2     1549     PS2 2003       Action
## 6301          2     7774      XB 2004       Action
## 6302          2     9520     Wii 2008       Puzzle
## 6303          2    11792      DS 2008       Puzzle
## 6304          2      324     Wii 2011       Sports
## 6305          2     1694     3DS 2012       Sports
## 6306          2       86     Wii 2007       Sports
## 6307          2      190      DS 2008       Sports
## 6308          2      234     Wii 2009       Sports
## 6309          2      371      DS 2009       Sports
## 6310          2     4263     3DS 2016       Action
## 6311          2     6590    WiiU 2016       Action
## 6312          2      702     NES 1983     Platform
## 6313          2     1165    2600 1982     Platform
## 6314          2     1290     N64 1999       Action
## 6315          2     5718      GB 1999       Action
## 6316          2    12375     3DS 2015       Puzzle
## 6317          2    16360    WiiU 2015       Puzzle
## 6318          2     9666    WiiU 2012       Action
## 6319          2    15532    X360 2012       Action
## 6320          2     5379      PS 1997     Fighting
## 6321          2    12513     SAT 1997     Fighting
## 6322          2     1436     PS3 2011     Fighting
## 6323          2     1918    X360 2011     Fighting
## 6324          2     2641      PS 1999     Fighting
## 6325          2    10655      DC 1999     Fighting
## 6326          2     7149      GC 2003         Misc
## 6327          2     7235     PS2 2002         Misc
## 6328          2      490    X360 2007 Role-Playing
## 6329          2     3003      PC 2008 Role-Playing
## 6330          2     3747      PS 2001       Sports
## 6331          2     6358     GBA 2001       Sports
## 6332          2    12300      DS 2011     Platform
## 6333          2    13587     Wii 2011     Platform
## 6334          2    12217    X360 2011       Racing
## 6335          2    12709     PS3 2011       Racing
## 6336          2     9807     Wii 2011     Strategy
## 6337          2    12876     PSP 2011     Strategy
## 6338          2     1757     PSP 2007      Shooter
## 6339          2     4592     Wii 2007      Shooter
## 6340          2     2149      PS 2000      Shooter
## 6341          2    11716     GBA 2002      Shooter
## 6342          2    10516     Wii 2007      Shooter
## 6343          2    14805     PS2 2007      Shooter
## 6344          2     2356      PS 1996     Platform
## 6345          2    12805     SAT 1997     Platform
## 6346          2     7723     3DS 2016     Platform
## 6347          2    11744     PS4 2016     Platform
## 6348          2     9641      GC 2006         Misc
## 6349          2     6779     PS2 2006         Misc
## 6350          2     1998      PS 1996       Action
## 6351          2    12100     SAT 1997       Action
## 6352          2     8093     PS2 2004 Role-Playing
## 6353          2     9679      GC 2004 Role-Playing
## 6354          2     6410      DS 2010    Adventure
## 6355          2     9443     PSP 2010    Adventure
## 6356          2     8701     PS3 2010       Action
## 6357          2     9763    X360 2010       Action
## 6358          2     4013     PS2 2002      Shooter
## 6359          2    16597      GC 2003      Shooter
## 6360          2     2694     PS2 2005       Action
## 6361          2     2991      XB 2005       Action
## 6362          2     9954     Wii 2008       Puzzle
## 6363          2    14637      DS 2008       Puzzle
## 6364          2     1293     PS3 2013       Action
## 6365          2     3994    X360 2013       Action
## 6366          2      146      PS 1998       Action
## 6367          2    11950      GB 2000       Action
## 6368          2     3839     PS2 2002       Action
## 6369          2     3240      XB 2002       Action
## 6370          2    10124     PS2 2005      Shooter
## 6371          2    13646      XB 2005      Shooter
## 6372          2     3683    X360 2010      Shooter
## 6373          2     6839      PC 2010      Shooter
## 6374          2    15571     PSP 2006       Racing
## 6375          2    16492     PS2 2006       Racing
## 6376          2      341     PSP 2005       Racing
## 6377          2     2780      XB 2005       Racing
## 6378          2     1746     PS2 2006       Racing
## 6379          2     7532      XB 2006       Racing
## 6380          2      973     PS2 2003       Racing
## 6381          2     3959      XB 2003       Racing
## 6382          2      629     PS3 2008       Racing
## 6383          2      676    X360 2008       Racing
## 6384          2      577     PS2 2000       Racing
## 6385          2     4133     GBA 2001       Racing
## 6386          2     9426      DS 2010    Adventure
## 6387          2    14256      PC 2009    Adventure
## 6388          2    15291     PSP 2009     Strategy
## 6389          2    16175      DS 2009     Strategy
## 6390          2     8118     PS3 2011      Shooter
## 6391          2    10815    X360 2011      Shooter
## 6392          2      545    2600 1980      Shooter
## 6393          2     4315      PS 1999      Shooter
## 6394          2     1730     N64 1997       Action
## 6395          2     3847      PS 1999       Action
## 6396          2     4381      PS 1995       Action
## 6397          2     4701     SAT 1995       Action
## 6398          2     1804     PS3 2010       Racing
## 6399          2     3702     PSP 2010       Racing
## 6400          2     9055     PS2 2003       Puzzle
## 6401          2    14765      XB 2003       Puzzle
## 6402          2     4282     PS2 2002         Misc
## 6403          2    11644      GC 2002         Misc
## 6404          2     7351     PS2 2006         Misc
## 6405          2    10485     Wii 2007         Misc
## 6406          2     6109     PS2 2003       Racing
## 6407          2    13080      GC 2003       Racing
## 6408          2    14821    WiiU 2013       Action
## 6409          2    15703     3DS 2013       Action
## 6410          2     2155      DS 2011         Misc
## 6411          2     3597     Wii 2011         Misc
## 6412          2      596     PSP 2007 Role-Playing
## 6413          2     3961     PS3 2011 Role-Playing
## 6414          2    13280     PS3 2007 Role-Playing
## 6415          2     9541    X360 2010 Role-Playing
## 6416          2     6748     Wii 2009 Role-Playing
## 6417          2     7006     PS2 2005 Role-Playing
## 6418          2    14854     Wii 2009   Simulation
## 6419          2    14913      DS 2009   Simulation
## 6420          2     1093     GBA 2001    Adventure
## 6421          2     5689     PS2 2002    Adventure
## 6422          2     8095      PS 1997    Adventure
## 6423          2    13295      DS 2009    Adventure
## 6424          2     1309      PS 1998     Fighting
## 6425          2     2801     N64 1998     Fighting
## 6426          2     2984      PS 1997     Fighting
## 6427          2     4831     N64 1997     Fighting
## 6428          2      533      PS 1996     Fighting
## 6429          2     2159     N64 1996     Fighting
## 6430          2      852     PS3 2008     Fighting
## 6431          2      892    X360 2008     Fighting
## 6432          2     1940     PS2 2006     Fighting
## 6433          2     6684     Wii 2007     Fighting
## 6434          2     2953     PS2 2005       Action
## 6435          2     5736      XB 2005       Action
## 6436          2     8991      DS 2013       Action
## 6437          2    12094     3DS 2013       Action
## 6438          2     4327      DS 2012         Misc
## 6439          2     6206     3DS 2012         Misc
## 6440          2     6314    X360 2011       Sports
## 6441          2     8609     PS3 2011       Sports
## 6442          2     7179     PS3 2010       Racing
## 6443          2     8337    X360 2010       Racing
## 6444          2     8222     PS3 2011       Racing
## 6445          2    12418    X360 2011       Racing
## 6446          2    10449     PS2 2004       Racing
## 6447          2    15402      XB 2005       Racing
## 6448          2     2012     PSP 2009       Racing
## 6449          2     5376     PS2 2009       Racing
## 6450          2     3566     GBA 2004       Puzzle
## 6451          2     4450      PS 2000       Puzzle
## 6452          2    12421     PS2 2003         Misc
## 6453          2    15184      GC 2003         Misc
## 6454          2     3285     Wii 2009 Role-Playing
## 6455          2     6532     PSV 2013 Role-Playing
## 6456          2     5532      DS 2009   Simulation
## 6457          2     9412     Wii 2009   Simulation
## 6458          2    14798     Wii 2009   Simulation
## 6459          2    15745      DS 2009   Simulation
## 6460          2     9147     PS3 2011       Sports
## 6461          2    12504     Wii 2011       Sports
## 6462          2     5166      DS 2007       Sports
## 6463          2     5640     Wii 2007       Sports
## 6464          2    12066      DS 2008       Sports
## 6465          2    12812     Wii 2008       Sports
## 6466          2     4447      DS 2007         Misc
## 6467          2     9400     PSP 2008         Misc
## 6468          2     1333      DS 2007         Misc
## 6469          2     3878     Wii 2007         Misc
## 6470          2     1901      DS 2009    Adventure
## 6471          2     1986     Wii 2009    Adventure
## 6472          2     1173      DS 2008   Simulation
## 6473          2     1221     Wii 2008   Simulation
## 6474          2     5891      DS 2009   Simulation
## 6475          2     7102     Wii 2009   Simulation
## 6476          2     3235      DS 2009       Racing
## 6477          2     4159     Wii 2009       Racing
## 6478          2     6251     PS2 2002    Adventure
## 6479          2    12659      XB 2002    Adventure
## 6480          2    12955      XB 2005    Adventure
## 6481          2    16594      PC 2004    Adventure
## 6482          2     3773      DS 2006 Role-Playing
## 6483          2     4857    SNES 1995 Role-Playing
## 6484          2    11081      GC 2002       Action
## 6485          2    12368     PS2 2002       Action
## 6486          2    12120      DS 2007     Platform
## 6487          2    14500     PSP 2007     Platform
## 6488          2     5180     PS2 2005      Shooter
## 6489          2     8025      XB 2005      Shooter
## 6490          2     8537    X360 2014       Racing
## 6491          2    10669     PS3 2014       Racing
## 6492          2     3197     PS2 2005       Racing
## 6493          2     6337      XB 2005       Racing
## 6494          2    10012     PS2 2006       Racing
## 6495          2    13603      XB 2006       Racing
## 6496          2     1169      PS 1999       Racing
## 6497          2     3820     N64 1999       Racing
## 6498          2     2540      PS 2000       Racing
## 6499          2     2929     PS2 2000       Racing
## 6500          2     1237      PS 1998       Racing
## 6501          2     2114     N64 1998       Racing
## 6502          2    14236     PS4 2016       Racing
## 6503          2    15055    XOne 2016       Racing
## 6504          2    10599    X360 2012       Racing
## 6505          2    11447     PS3 2012       Racing
## 6506          2     1895     PS2 2003       Racing
## 6507          2     6972      XB 2003       Racing
## 6508          2    10998      GC 2002       Racing
## 6509          2     3470     PS2 2002       Racing
## 6510          2     3794     PS2 2005       Sports
## 6511          2     7274     PSP 2005       Sports
## 6512          2     1104     PS2 2004       Sports
## 6513          2     3940      XB 2004       Sports
## 6514          2     7993    X360 2008       Sports
## 6515          2     9471     PS3 2008       Sports
## 6516          2     4199     PS2 2006       Sports
## 6517          2     9633      XB 2006       Sports
## 6518          2     3535     N64 1997       Sports
## 6519          2    12502      PS 1996       Sports
## 6520          2     8181     PS2 2001       Sports
## 6521          2     9393      PS 2001       Sports
## 6522          2     7294     PS4 2013       Sports
## 6523          2     7822    XOne 2013       Sports
## 6524          2     7059     PS4 2014       Sports
## 6525          2     7511    XOne 2014       Sports
## 6526          2     8356     PS4 2015       Sports
## 6527          2    10612    XOne 2015       Sports
## 6528          2     1238      PS 1998       Sports
## 6529          2     4416     N64 1999       Sports
## 6530          2     1585      PS 2000       Sports
## 6531          2     1865     PS2 2001       Sports
## 6532          2     1644      PS 1997       Sports
## 6533          2     4151     N64 1998       Sports
## 6534          2     6405      PS 2000       Sports
## 6535          2     8837     PS2 2001       Sports
## 6536          2     3631      PS 1999       Sports
## 6537          2     6687     N64 1999       Sports
## 6538          2     8206     PS2 2002       Sports
## 6539          2    14960      XB 2002       Sports
## 6540          2      535     PS2 2001       Sports
## 6541          2     4571      GC 2002       Sports
## 6542          2     3985    X360 2007       Sports
## 6543          2     8823     PS3 2007       Sports
## 6544          2     7314      PS 2000       Sports
## 6545          2    13710     N64 2000       Sports
## 6546          2     5482     PS3 2009       Sports
## 6547          2     5592    X360 2009       Sports
## 6548          2     6876     PS2 2002       Sports
## 6549          2     9080      XB 2002       Sports
## 6550          2     7961     PS2 2000       Sports
## 6551          2     8630      PS 2000       Sports
## 6552          2      944     PS2 2005       Sports
## 6553          2     2132      XB 2005       Sports
## 6554          2     2091    X360 2011       Sports
## 6555          2     2495     PS3 2011       Sports
## 6556          2     1903    X360 2012       Action
## 6557          2     2389     PS3 2012       Action
## 6558          2     1919    X360 2013       Sports
## 6559          2     2563     PS3 2013       Sports
## 6560          2     5539      PS 2000       Sports
## 6561          2     8779     PS2 2000       Sports
## 6562          2     3762     PS2 2005       Sports
## 6563          2     7525      XB 2005       Sports
## 6564          2     3572     PS2 2007       Sports
## 6565          2     7463    X360 2007       Sports
## 6566          2     2020     PS2 2003       Sports
## 6567          2     6879      XB 2003       Sports
## 6568          2     3769     PS2 2004       Sports
## 6569          2     6195      XB 2004       Sports
## 6570          2     2343     PS2 2001       Sports
## 6571          2     8203      XB 2002       Sports
## 6572          2     1257      PS 1998       Sports
## 6573          2     1955     N64 1998       Sports
## 6574          2     1893      PS 1998       Sports
## 6575          2     3501     N64 1999       Sports
## 6576          2     3399      PS 2000       Sports
## 6577          2     4624     N64 2000       Sports
## 6578          2     2071      PS 2000       Sports
## 6579          2     5204     PS2 2000       Sports
## 6580          2     4781      PS 2001       Sports
## 6581          2     5002     PS2 2001       Sports
## 6582          2     4334     PS2 2006       Sports
## 6583          2     9865      XB 2006       Sports
## 6584          2     9129     PS3 2008       Sports
## 6585          2    10050    X360 2008       Sports
## 6586          2     7263     PS2 2001       Sports
## 6587          2    12858      GC 2001       Sports
## 6588          2     9941     PS3 2008       Sports
## 6589          2    10610    X360 2008       Sports
## 6590          2     6612     PS3 2007       Action
## 6591          2     6660    X360 2007       Action
## 6592          2     3065    X360 2009       Sports
## 6593          2     3496     PS3 2009       Sports
## 6594          2     2809    X360 2010       Sports
## 6595          2     3375     PS3 2010       Sports
## 6596          2     2905    X360 2011       Sports
## 6597          2     3420     PS3 2011       Sports
## 6598          2     3048    X360 2012       Sports
## 6599          2     3097     PS3 2012       Sports
## 6600          2     3555     PS3 2013       Sports
## 6601          2     3729    X360 2013       Sports
## 6602          2     7577     PS4 2016       Sports
## 6603          2     8753    XOne 2016       Sports
## 6604          2     2163     PS2 2000       Sports
## 6605          2     3231      PS 2000       Sports
## 6606          2     9344    X360 2007       Sports
## 6607          2    10951     PS3 2007       Sports
## 6608          2     1930      PS 1997       Sports
## 6609          2     4887     N64 1998       Sports
## 6610          2     5595     N64 1998       Sports
## 6611          2     9311      PS 1996       Sports
## 6612          2     7033      PS 2000       Sports
## 6613          2     7732     PS2 2001       Sports
## 6614          2    12832    X360 2015       Action
## 6615          2    13987     PS3 2015       Action
## 6616          2    14080     PS2 2007       Racing
## 6617          2    14133     PSP 2007       Racing
## 6618          2     9368     PS2 2005   Simulation
## 6619          2    12648      XB 2005   Simulation
## 6620          2    14009     PSP 2007       Puzzle
## 6621          2    14902      DS 2007       Puzzle
## 6622          2     1635     PS3 2010     Fighting
## 6623          2     2627    X360 2010     Fighting
## 6624          2     2172     PS3 2013     Fighting
## 6625          2     3881    X360 2013     Fighting
## 6626          2     1960     PS4 2016     Fighting
## 6627          2     6159    XOne 2016     Fighting
## 6628          2     2786     PS3 2012     Fighting
## 6629          2     4377    X360 2012     Fighting
## 6630          2     4165     PS3 2014     Fighting
## 6631          2     7042    X360 2014     Fighting
## 6632          2    15477     PS4 2015       Action
## 6633          2    15534     PS3 2015       Action
## 6634          2     4457     PS3 2010       Action
## 6635          2     4760    X360 2010       Action
## 6636          2      634     PSP 2006       Racing
## 6637          2     7490      DS 2006       Racing
## 6638          2     2433     Wii 2009       Racing
## 6639          2     4922      DS 2009       Racing
## 6640          2     2672      PS 1999       Racing
## 6641          2     4094     GBA 2004       Racing
## 6642          2     4483     SAT 1996    Adventure
## 6643          2    12496     N64 1999    Adventure
## 6644          2     6067      DS 2008       Puzzle
## 6645          2     7060     Wii 2008       Puzzle
## 6646          2     9453     PS3 2012      Shooter
## 6647          2    10691    X360 2012      Shooter
## 6648          2     3297     Wii 2010         Misc
## 6649          2     6955      DS 2010         Misc
## 6650          2     7755     Wii 2009         Misc
## 6651          2    11661     PS2 2009         Misc
## 6652          2     4509     SAT 1996     Platform
## 6653          2    16036     PS2 2008     Platform
## 6654          2     6313     GBA 2002       Racing
## 6655          2     8389      PS 2001       Racing
## 6656          2     6605     Wii 2011         Misc
## 6657          2    10014    X360 2011         Misc
## 6658          2     6754      GC 2002         Misc
## 6659          2     7241      XB 2002         Misc
## 6660          2     5825      DS 2006       Action
## 6661          2     6044      GC 2005       Action
## 6662          2     3165     PS3 2010 Role-Playing
## 6663          2     5965    X360 2010 Role-Playing
## 6664          2     3187      PS 1997       Action
## 6665          2     6524     N64 1996       Action
## 6666          2     1766     PS3 2007       Action
## 6667          2     6419     PSV 2012       Action
## 6668          2     2428     PS3 2009       Action
## 6669          2    16123     PSV 2013       Action
## 6670          2     9663     Wii 2008       Action
## 6671          2    10761      DS 2008       Action
## 6672          2    13678     PS4 2015     Fighting
## 6673          2    16301     PS3 2015     Fighting
## 6674          2     7607     PS3 2010       Action
## 6675          2    14952    X360 2010       Action
## 6676          2     7934     PS3 2013     Strategy
## 6677          2    12807     PS4 2014     Strategy
## 6678          2     8423    SNES 1996     Strategy
## 6679          2    10006     SAT 1995     Strategy
## 6680          2    12920     PSV 2014     Strategy
## 6681          2    13781     PS4 2014     Strategy
## 6682          2    10628      DS 2007         Misc
## 6683          2    16111     PS2 2007         Misc
## 6684          2    12122     PS2 2004    Adventure
## 6685          2    14037      XB 2004    Adventure
## 6686          2     9691     Wii 2008       Action
## 6687          2    11020     PSP 2009       Action
## 6688          2     2807      XB 2001     Platform
## 6689          2    12569     GBA 2003     Platform
## 6690          2    12249      PS 1998     Strategy
## 6691          2    14371     SAT 1998     Strategy
## 6692          2     1764     PS3 2011   Simulation
## 6693          2     2863    X360 2011   Simulation
## 6694          2     2962     PS3 2013       Action
## 6695          2     9706     PSV 2013       Action
## 6696          2     5583     PSP 2012     Fighting
## 6697          2    11407     3DS 2013     Fighting
## 6698          2    14108     PS3 2013       Action
## 6699          2    14668    X360 2012       Action
## 6700          2    12329     PS3 2011       Action
## 6701          2    16170     3DS 2011       Action
## 6702          2    13111     PS2 2006       Racing
## 6703          2    13716     PSP 2006       Racing
## 6704          2     5977      XB 2002       Sports
## 6705          2    11437      GC 2002       Sports
## 6706          2     5277     PS2 2004       Sports
## 6707          2     7482      XB 2004       Sports
## 6708          2    11600     PS2 2005       Sports
## 6709          2    13588      XB 2005       Sports
## 6710          2     9402      DS 2006     Platform
## 6711          2    13073     PSP 2006     Platform
## 6712          2     4789    X360 2007     Strategy
## 6713          2    15147      PC 2007     Strategy
## 6714          2     7542     PS2 2008       Sports
## 6715          2     9591     Wii 2008       Sports
## 6716          2      902      PS 1996         Misc
## 6717          2     9237     PSP 2006         Misc
## 6718          2       90    2600 1982       Puzzle
## 6719          2     1640     NES 1984       Puzzle
## 6720          2     3883     PS2 2001         Misc
## 6721          2     6213      GC 2002         Misc
## 6722          2    13546     PS3 2013      Shooter
## 6723          2    15439    X360 2013      Shooter
## 6724          2     5535      PS 1994      Shooter
## 6725          2     8462     SAT 1995      Shooter
## 6726          2     3135      DS 2007   Simulation
## 6727          2    10783     Wii 2009   Simulation
## 6728          2     6700      PS 1996       Racing
## 6729          2    12510     N64 1998       Racing
## 6730          2     3045      DS 2010         Misc
## 6731          2     9334     Wii 2010         Misc
## 6732          2     2360      DS 2008         Misc
## 6733          2     4997     Wii 2009         Misc
## 6734          2     5296      PS 2000 Role-Playing
## 6735          2    12951     PSP 2012 Role-Playing
## 6736          2     2791     PS3 2012     Fighting
## 6737          2     9420    X360 2012     Fighting
## 6738          2     9227     PS3 2014     Fighting
## 6739          2    11490    X360 2014     Fighting
## 6740          2     5428     PS4 2016 Role-Playing
## 6741          2    10735     PS3 2016 Role-Playing
## 6742          2     5064      DS 2008   Simulation
## 6743          2     7079     Wii 2008   Simulation
## 6744          2     3871      DS 2007         Misc
## 6745          2    16401     GBA 2007         Misc
## 6746          2    14393     PS4 2017 Role-Playing
## 6747          2    16244     PSV 2017 Role-Playing
## 6748          2     4326      GC 2002 Role-Playing
## 6749          2     8929      XB 2003 Role-Playing
## 6750          2     7899     PS2 2006 Role-Playing
## 6751          2     9830    X360 2006 Role-Playing
## 6752          2    10857     PSP 2012    Adventure
## 6753          2    11785     PSV 2013    Adventure
## 6754          2     2388     Wii 2010       Puzzle
## 6755          2     7927      DS 2010       Puzzle
## 6756          2     6891     PS3 2011         Misc
## 6757          2     6929    X360 2011         Misc
## 6758          2    10107     Wii 2008       Racing
## 6759          2    10252    X360 2006       Racing
## 6760          2    11382     PS2 2009       Racing
## 6761          2    14553      DS 2009       Racing
## 6762          2     9106     PS2 2002    Adventure
## 6763          2    12269      XB 2002    Adventure
## 6764          2     2153     PS3 2012       Action
## 6765          2     3852     PSV 2012       Action
## 6766          2     7698     PS2 2005   Simulation
## 6767          2    10821      XB 2005   Simulation
## 6768          2     7106      PS 1997     Fighting
## 6769          2    14368     SAT 1998     Fighting
## 6770          2     8713      PS 2000       Racing
## 6771          2    12517     N64 2000       Racing
## 6772          2    12704     Wii 2008         Misc
## 6773          2    13846     PS2 2008         Misc
## 6774          2     1863     NES 1983     Platform
## 6775          2     3750    2600 1982     Platform
## 6776          2    12030     PS3 2012   Simulation
## 6777          2    12240    X360 2012   Simulation
## 6778          2     9207     PS3 2010         Misc
## 6779          2     9884    X360 2010         Misc
## 6780          2     5387     Wii 2011       Action
## 6781          2     5433      DS 2011       Action
## 6782          2     9014     PS2 2007       Action
## 6783          2    10136      DS 2007       Action
## 6784          2     5684      PS 2001       Action
## 6785          2     7711     GBA 2001       Action
## 6786          2    12980     PS2 2004       Racing
## 6787          2    16365      XB 2004       Racing
## 6788          2     7724     PS2 2005       Action
## 6789          2    10695      XB 2005       Action
## 6790          2     5195     Wii 2009         Misc
## 6791          2     7595      DS 2009         Misc
## 6792          2     5611    X360 2006      Shooter
## 6793          2    14148      PC 2006      Shooter
## 6794          2     1896     PS3 2008       Action
## 6795          2     2044    X360 2008       Action
## 6796          2     5984     Wii 2007       Action
## 6797          2     9837     PSP 2007       Action
## 6798          2    11220      DS 2010    Adventure
## 6799          2    15370     Wii 2010    Adventure
## 6800          2     6477     PS3 2010       Action
## 6801          2     7367    X360 2010       Action
## 6802          2     8895     PS3 2015       Action
## 6803          2     9413     PSV 2015       Action
## 6804          2    13172     PS4 2016       Sports
## 6805          2    14558      PC 2016       Sports
## 6806          2     6306     PS2 2002       Racing
## 6807          2    13890      XB 2003       Racing
## 6808          2     7926     PS2 2007       Sports
## 6809          2    12241     PS3 2007       Sports
## 6810          2     8198     PS2 2008       Sports
## 6811          2    10120     PS3 2008       Sports
## 6812          2     8883     PS3 2009       Sports
## 6813          2     9359     PS2 2009       Sports
## 6814          2      739     NES 1986       Sports
## 6815          2    14865     Wii 2008       Sports
## 6816          2    12982     PS2 2008       Sports
## 6817          2    14350     PS3 2008       Sports
## 6818          2     7068     PS2 2003       Sports
## 6819          2    10373      DS 2009       Sports
## 6820          2    15928     PS4 2015       Action
## 6821          2    16327     PSV 2015       Action
## 6822          2     8324     Wii 2008       Puzzle
## 6823          2    13387      DS 2008       Puzzle
## 6824          2    12646     PS4 2016 Role-Playing
## 6825          2    13022     PSV 2016 Role-Playing
## 6826          2     7450     PS2 2005       Action
## 6827          2    10187      XB 2005       Action
## 6828          2     6081     PS2 2004      Shooter
## 6829          2     8286      XB 2004      Shooter
## 6830          2    14899     PS4 2016    Adventure
## 6831          2    15403     PSV 2016    Adventure
## 6832          2     9883      XB 2005     Platform
## 6833          2    10887     PS2 2005     Platform
## 6834          2    12743     PS2 2005         Misc
## 6835          2    15423      XB 2005         Misc
## 6836          2      622    X360 2008       Racing
## 6837          2     2318     PS3 2008       Racing
## 6838          2     6819     PS3 2010       Sports
## 6839          2     8004    X360 2010       Sports
## 6840          2     3625      DS 2007   Simulation
## 6841          2     6071     Wii 2008   Simulation
## 6842          2    13617     PSP 2004       Puzzle
## 6843          2    16044      GC 2004       Puzzle
## 6844          2     6234      DS 2006       Puzzle
## 6845          2    15239     PSP 2007       Puzzle
## 6846          2     9244      DS 2011       Puzzle
## 6847          2     9536     3DS 2011       Puzzle
## 6848          2    11479     PSP 2010       Puzzle
## 6849          2    15762      DS 2010       Puzzle
## 6850          2     9361      DS 2009       Puzzle
## 6851          2     9754     Wii 2009       Puzzle
## 6852          2     2081      DS 2008       Puzzle
## 6853          2    12437     Wii 2008       Puzzle
## 6854          2     2481      PS 1999       Puzzle
## 6855          2     3449    2600 1982       Puzzle
## 6856          2     5082    X360 2005      Shooter
## 6857          2    15185      PC 2005      Shooter
## 6858          2     4689      PS 1998      Shooter
## 6859          2     5888     N64 1999      Shooter
## 6860          2     7773     PS3 2010      Shooter
## 6861          2    11038    X360 2010      Shooter
## 6862          2    10572     PS2 2002      Shooter
## 6863          2    14034      XB 2003      Shooter
## 6864          2     1791     Wii 2009     Platform
## 6865          2     2827      DS 2009     Platform
## 6866          2    15667     PS4 2014         Misc
## 6867          2    16508    XOne 2014         Misc
## 6868          2     5308     PS3 2010       Sports
## 6869          2     6505     Wii 2010       Sports
## 6870          2     4597     PSV 2012 Role-Playing
## 6871          2    13957     PS3 2014 Role-Playing
## 6872          2     9492     PS2 2002       Racing
## 6873          2    12998      XB 2002       Racing
## 6874          2     7097      PS 1998       Action
## 6875          2     7228     N64 1999       Action
## 6876          2     2443      PS 1997       Action
## 6877          2     4366     N64 1998       Action
## 6878          2     8241     PS3 2008       Sports
## 6879          2    13371    X360 2008       Sports
## 6880          2     3623     Wii 2006       Sports
## 6881          2    14146    X360 2006       Sports
## 6882          2    13455      PS 1999       Puzzle
## 6883          2    15376     N64 2000       Puzzle
## 6884          2     2818     PS3 2012       Action
## 6885          2    12341     PSV 2014       Action
## 6886          2     7111     PS3 2012    Adventure
## 6887          2    16406     PSV 2012    Adventure
## 6888          2      327     PSP 2007     Platform
## 6889          2     6001     PS2 2008     Platform
## 6890          2    10844    X360 2009      Shooter
## 6891          2    16163      PC 2009      Shooter
## 6892          2     3160     N64 1999     Platform
## 6893          2     5633      PS 2000     Platform
## 6894          2      938     Wii 2007         Misc
## 6895          2     2586      DS 2007         Misc
## 6896          2      833     Wii 2008         Misc
## 6897          2     4081      DS 2008         Misc
## 6898          2     4236      PS 1999       Sports
## 6899          2    16464     GBA 2001       Sports
## 6900          2     7797      PS 1998       Racing
## 6901          2     8101     N64 1999       Racing
## 6902          2     6342      DS 2008         Misc
## 6903          2     9532     Wii 2010         Misc
## 6904          2     1913      PS 1998       Sports
## 6905          2     3415     N64 1999       Sports
## 6906          2    10282     PS2 2005       Sports
## 6907          2    14567      XB 2006       Sports
## 6908          2     5125     Wii 2009       Sports
## 6909          2    11970      DS 2011       Sports
## 6910          2     7676    X360 2008 Role-Playing
## 6911          2    11789     PS3 2007 Role-Playing
## 6912          2     9744     PS3 2009     Strategy
## 6913          2    10630    X360 2010     Strategy
## 6914          2      124     PS3 2010       Action
## 6915          2      135    X360 2010       Action
## 6916          2     1769     PS3 2010       Action
## 6917          2     1923    X360 2010       Action
## 6918          2     1321     PS2 2004      Shooter
## 6919          2     3687      XB 2004      Shooter
## 6920          2    13577     PS2 2005       Action
## 6921          2    15598      XB 2005       Action
## 6922          2      680     PS2 2001       Action
## 6923          2    12590      GC 2003       Action
## 6924          2      333      PS 1999       Action
## 6925          2    11653      GC 2003       Action
## 6926          2    14140     PS4 2016      Shooter
## 6927          2    16572    XOne 2016      Shooter
## 6928          2      326      PS 1996       Action
## 6929          2    13533     PS3 2006       Action
## 6930          2     2767     PS3 2010 Role-Playing
## 6931          2     5477    X360 2010 Role-Playing
## 6932          2    12717      DS 2008 Role-Playing
## 6933          2    13994      PS 1998 Role-Playing
## 6934          2      433      DS 2008         Misc
## 6935          2     2297     Wii 2011         Misc
## 6936          2    10909     PS2 2003       Sports
## 6937          2    13281      GC 2003       Sports
## 6938          2    12695    X360 2013       Racing
## 6939          2    13372     PS3 2013       Racing
## 6940          2     7787    X360 2009 Role-Playing
## 6941          2     9110      PC 2009 Role-Playing
## 6942          2      636      PC 1997    Adventure
## 6943          2     5661      PS 1997    Adventure
## 6944          2    10500     GBA 2004 Role-Playing
## 6945          2    10955     PSP 2006 Role-Playing
## 6946          2     4848      PS 1999       Racing
## 6947          2    10488     GBA 2003       Racing
## 6948          2     4936     PS3 2008       Action
## 6949          2     4474    X360 2008       Action
## 6950          2     7963     PS2 2003     Strategy
## 6951          2    14538      XB 2003     Strategy
## 6952          2    10301     PS2 2004      Shooter
## 6953          2    13315      XB 2004      Shooter
## 6954          2     4512    XOne 2015         Misc
## 6955          2     5159     PS4 2015         Misc
## 6956          2     6833     Wii 2008         Misc
## 6957          2     9535     PS2 2008         Misc
## 6958          2    12534      DS 2008       Puzzle
## 6959          2    15627     Wii 2010       Puzzle
## 6960          2    13288     PS3 2010      Shooter
## 6961          2    13402    X360 2010      Shooter
## 6962          2      618      XB 2003       Action
## 6963          2     1034     PS2 2003       Action
## 6964          2     1566     Wii 2007       Sports
## 6965          2     2725    X360 2006       Sports
## 6966          2     6312     PS2 2004       Action
## 6967          2    10716      XB 2004       Action
## 6968          2     9907    WiiU 2015       Action
## 6969          2    13920     3DS 2015       Action
## 6970          2    13529     PS2 2006      Shooter
## 6971          2    15677      XB 2006      Shooter
## 6972          2     9265     PS3 2009      Shooter
## 6973          2    10304    X360 2009      Shooter
## 6974          2    13479      PC 1999     Strategy
## 6975          2     9501      XB 2003     Strategy
## 6976          2    12691     PS4 2015       Action
## 6977          2    13834     PS3 2015       Action
## 6978          2     6625    SNES 1991     Strategy
## 6979          2    14628     3DS 2015     Strategy
## 6980          2     3783    SNES 1994     Strategy
## 6981          2     9462      PS 1995     Strategy
## 6982          2    11131     PS3 2012     Strategy
## 6983          2    15890    WiiU 2012     Strategy
## 6984          2     2144    SNES 1992 Role-Playing
## 6985          2     3450     PS2 2005 Role-Playing
## 6986          2     3497      DS 2010    Adventure
## 6987          2    12555     Wii 2010    Adventure
## 6988          2     3935     PS4 2015       Action
## 6989          2     6428    XOne 2015       Action
## 6990          2     8916     Wii 2008       Puzzle
## 6991          2     9859      DS 2008       Puzzle
## 6992          2     8613     Wii 2010       Action
## 6993          2     8682      DS 2010       Action
## 6994          2    13264     PS2 2006       Sports
## 6995          2    15531      XB 2006       Sports
## 6996          2    11043     PS2 2005       Sports
## 6997          2    13249      XB 2005       Sports
## 6998          2    14594     PS3 2010       Sports
## 6999          2    14655    X360 2010       Sports
## 7000          2     5486     PS3 2011       Sports
## 7001          2     6107    X360 2011       Sports
## 7002          2      368      PS 2000       Action
## 7003          2     3978     N64 2000       Action
## 7004          2     5341     PS2 2002     Platform
## 7005          2     8230      GC 2002     Platform
## 7006          2    15319      DS 2009    Adventure
## 7007          2    13467      PC 2009    Adventure
## 7008          2     7180     PS3 2011 Role-Playing
## 7009          2     7476     Wii 2011 Role-Playing
## 7010          2    11300      PS 1998       Racing
## 7011          2    12511     N64 1998       Racing
## 7012          2     7293     PS3 2010       Racing
## 7013          2     7985    X360 2010       Racing
## 7014          2     5745     PS2 2009     Strategy
## 7015          2    12741     Wii 2009     Strategy
## 7016          2     5354     PSP 2011     Strategy
## 7017          2    13343     Wii 2011     Strategy
## 7018          2    11852      GC 2005     Strategy
## 7019          2    14542     Wii 2010     Strategy
## 7020          2     1315     PSP 2006     Fighting
## 7021          2     9262     PS2 2006     Fighting
## 7022          2     5585     PS2 2003      Shooter
## 7023          2     8287      XB 2003      Shooter
## 7024          2    13580      XB 2003       Racing
## 7025          2    14166      GC 2003       Racing
## 7026          2     5209     N64 2000       Action
## 7027          2     5316      PS 2000       Action
## 7028          2    14239     Wii 2007    Adventure
## 7029          2    14687      DS 2008    Adventure
## 7030          2     8980      DS 2009       Puzzle
## 7031          2    11289     Wii 2008       Puzzle
## 7032          2     8845     PS4 2015     Fighting
## 7033          2    13651     PS3 2015     Fighting
## 7034          2     3649     SAT 1996    Adventure
## 7035          2    10371      DC 2000    Adventure
## 7036          2     6061     PS2 2005 Role-Playing
## 7037          2    10061     Wii 2010 Role-Playing
## 7038          2    16186     PSP 2013    Adventure
## 7039          2    16391     PSV 2013    Adventure
## 7040          2     9321     PS2 2002       Sports
## 7041          2    12471     GBA 2002       Sports
## 7042          2    12722     PS2 2004       Action
## 7043          2    15818      GC 2004       Action
## 7044          2     4817    SNES 1994     Fighting
## 7045          2    12086      NG 1993     Fighting
## 7046          2     1447     PS2 2004       Action
## 7047          2    11991      XB 2004       Action
## 7048          2     7972     PS2 2006       Action
## 7049          2    13755    X360 2007       Action
## 7050          2    11684     3DS 2014       Action
## 7051          2    12312     PSV 2014       Action
## 7052          2     2744     N64 1997       Racing
## 7053          2     4986      PS 1997       Racing
## 7054          2    14093     PSP 2012    Adventure
## 7055          2    16059     PS2 2011    Adventure
## 7056          2    11777      DS 2011       Puzzle
## 7057          2    12280     Wii 2011       Puzzle
## 7058          2    12566      DS 2010         Misc
## 7059          2    16193     Wii 2010         Misc
## 7060          2     7751     PS3 2010       Action
## 7061          2     8663    X360 2010       Action
## 7062          2     6433     Wii 2009         Misc
## 7063          2     7779      DS 2010         Misc
## 7064          2     7641     Wii 2010         Misc
## 7065          2    14682      PC 2010         Misc
## 7066          2     9229     Wii 2009         Misc
## 7067          2    10344      DS 2009         Misc
## 7068          2    10879      DS 2006    Adventure
## 7069          2    11584     PSP 2006    Adventure
## 7070          2    10337    WiiU 2013       Puzzle
## 7071          2    10701     3DS 2013       Puzzle
## 7072          2     3373     3DS 2012       Action
## 7073          2     5057    WiiU 2012       Action
## 7074          2    13132     Wii 2007    Adventure
## 7075          2    16541      DS 2007    Adventure
## 7076          2     3355     PS2 2009     Platform
## 7077          2     9494     PSP 2008     Platform
## 7078          2     4114     PS2 2003   Simulation
## 7079          2     6610      XB 2003   Simulation
## 7080          2     6377    X360 2009      Shooter
## 7081          2    14450      PC 2009      Shooter
## 7082          2     3903     Wii 2008       Sports
## 7083          2    11234      DC 1999       Sports
## 7084          2     7521     PS2 2007       Action
## 7085          2    16230     Wii 2007       Action
## 7086          2     7171     PS3 2011       Action
## 7087          2     9576     Wii 2011       Action
## 7088          2    11150     PS3 2015       Action
## 7089          2    13140     PS4 2015       Action
## 7090          2     3133     PS3 2010       Action
## 7091          2     5880     Wii 2010       Action
## 7092          2    14814     PS4 2016       Action
## 7093          2    15510     PS3 2016       Action
## 7094          2    15886     PS2 2009    Adventure
## 7095          2    16008     PSP 2009    Adventure
## 7096          2     7126     PSV 2015       Action
## 7097          2     8450     PS4 2015       Action
## 7098          2    15013    X360 2011      Shooter
## 7099          2    15134      PC 2010      Shooter
## 7100          2    12497      XB 2005      Shooter
## 7101          2    16006      PC 2005      Shooter
## 7102          2    11890     PS2 2004      Shooter
## 7103          2    15194      GC 2004      Shooter
## 7104          2     5720      PS 1998         Misc
## 7105          2     8100     N64 1999         Misc
## 7106          2     6940      PS 1998         Misc
## 7107          2     7867     N64 1999         Misc
## 7108          2    10204     Wii 2011         Misc
## 7109          2    11280      DS 2011         Misc
## 7110          2     6347     N64 1999       Action
## 7111          2     6721      PS 1998       Action
## 7112          2     7407     PS2 2001    Adventure
## 7113          2    11252     PSP 2009    Adventure
## 7114          2     1786     PS2 2005       Action
## 7115          2    13810     PS3 2011       Action
## 7116          2     6196     PS3 2011       Action
## 7117          2     7880    X360 2011       Action
## 7118          2     2820     PS2 2001       Sports
## 7119          2     5214     GBA 2001       Sports
## 7120          2    11171    X360 2009      Shooter
## 7121          2    11367     PS3 2009      Shooter
## 7122          2     5696      XB 2002    Adventure
## 7123          2     8918      DC 2001    Adventure
## 7124          2    13363     PSV 2014    Adventure
## 7125          2    13930     PS3 2014    Adventure
## 7126          2    10170     PS3 2011    Adventure
## 7127          2    13381     PSV 2011    Adventure
## 7128          2     5594      DS 2011 Role-Playing
## 7129          2     9782     3DS 2015 Role-Playing
## 7130          2     2168     PS2 2002     Platform
## 7131          2     7197     3DS 2011     Platform
## 7132          2    10053      PS 1998    Adventure
## 7133          2    10087     SAT 1998    Adventure
## 7134          2     9365      DS 2010 Role-Playing
## 7135          2    13707     PSP 2012 Role-Playing
## 7136          2    13877      GC 2006     Fighting
## 7137          2    15139     PS2 2005     Fighting
## 7138          2     9356     PS2 2005     Fighting
## 7139          2    12424      GC 2005     Fighting
## 7140          2     5917     PS2 2004     Fighting
## 7141          2     9809      XB 2004     Fighting
## 7142          2    11954     Wii 2007     Fighting
## 7143          2    12527      DS 2007     Fighting
## 7144          2     9474      GC 2006       Racing
## 7145          2    11151     PSP 2006       Racing
## 7146          2     3941     PS2 2004       Action
## 7147          2     8137      XB 2004       Action
## 7148          2     5394     PS3 2012       Action
## 7149          2     7748    X360 2012       Action
## 7150          2     4169     PS3 2012       Action
## 7151          2     5494    X360 2012       Action
## 7152          2     4860     PS3 2008       Action
## 7153          2     4382    X360 2008       Action
## 7154          2     3819     PSP 2007       Action
## 7155          2    11966     PS2 2008       Action
## 7156          2     5034     PS2 2000      Shooter
## 7157          2    14139     GBA 2002      Shooter
## 7158          2      807      PC 1998     Strategy
## 7159          2     3193      PS 1999     Strategy
## 7160          2     3774      DS 2009   Simulation
## 7161          2     5629     Wii 2009   Simulation
## 7162          2     9604     Wii 2009   Simulation
## 7163          2    10264      DS 2009   Simulation
## 7164          2      857    SNES 1991   Simulation
## 7165          2    14510      PC 1988   Simulation
## 7166          2     4143     Wii 2008   Simulation
## 7167          2     5301      DS 2008   Simulation
## 7168          2      930     PS2 2004         Misc
## 7169          2     1748     PS3 2007         Misc
## 7170          2     1428     PS2 2008         Misc
## 7171          2     2181     PS3 2008         Misc
## 7172          2     9381     PS2 2007         Misc
## 7173          2    10033     PS3 2009         Misc
## 7174          2     4482     PS2 2009         Misc
## 7175          2     8124     PS3 2009         Misc
## 7176          2     3188     PS2 2009         Misc
## 7177          2     4359     PS3 2009         Misc
## 7178          2     4383     PS2 2009         Misc
## 7179          2     5465     PS3 2009         Misc
## 7180          2     7940     PS4 2014         Misc
## 7181          2     9266     PS3 2014         Misc
## 7182          2    12908     PS2 2003     Platform
## 7183          2    14375     GBA 2003     Platform
## 7184          2     4715     Wii 2009         Misc
## 7185          2     8081      DS 2008         Misc
## 7186          2     2848    X360 2007       Sports
## 7187          2     5010     PS3 2007       Sports
## 7188          2     1876    X360 2009       Sports
## 7189          2     2430     PS3 2009       Sports
## 7190          2      560    X360 2010       Sports
## 7191          2      809     PS3 2010       Sports
## 7192          2     3424     Wii 2008       Sports
## 7193          2     8167      DS 2008       Sports
## 7194          2     1140      PS 1998       Racing
## 7195          2     4400     PS2 2002       Racing
## 7196          2      963     PS2 2004     Platform
## 7197          2    12194     PS3 2010     Platform
## 7198          2     3636     PS3 2013     Platform
## 7199          2     6161     PSV 2013     Platform
## 7200          2    10183    X360 2007       Sports
## 7201          2    13283     PSP 2007       Sports
## 7202          2     1187     PS2 2000       Racing
## 7203          2    16273     GBA 2002       Racing
## 7204          2    10916      DS 2005       Puzzle
## 7205          2    16500     GBA 2005       Puzzle
## 7206          2     9609     PS3 2013       Sports
## 7207          2    11787     PSV 2013       Sports
## 7208          2     7666    X360 2007      Shooter
## 7209          2     8881     PS3 2007      Shooter
## 7210          2     1021     Wii 2010     Platform
## 7211          2     1420      DS 2010     Platform
## 7212          2     4034     3DS 2013     Platform
## 7213          2     4858    WiiU 2013     Platform
## 7214          2      496     PS2 2004         Misc
## 7215          2     2292      XB 2004         Misc
## 7216          2     2230     Wii 2008       Racing
## 7217          2     8177     PS2 2008       Racing
## 7218          2      708     PS3 2009         Misc
## 7219          2     1350    X360 2009         Misc
## 7220          2     1167    X360 2008     Fighting
## 7221          2     1289     PS3 2008     Fighting
## 7222          2     2700     PS3 2012     Fighting
## 7223          2     3419    X360 2012     Fighting
## 7224          2     1792     N64 1998      Shooter
## 7225          2     2895      PS 1998      Shooter
## 7226          2     5253      PS 1998       Racing
## 7227          2     7622     N64 2000       Racing
## 7228          2     5798      PS 1998         Misc
## 7229          2     6870     N64 1999         Misc
## 7230          2     8703      DS 2009       Action
## 7231          2     9380     Wii 2009       Action
## 7232          2     8737      DS 2008      Shooter
## 7233          2    10982     PSP 2008      Shooter
## 7234          2     3411      DS 2007         Misc
## 7235          2     6617     PSP 2007         Misc
## 7236          2    15678      GC 2003     Platform
## 7237          2    16600     GBA 2003     Platform
## 7238          2     2917     PS2 2001       Racing
## 7239          2    10005      XB 2002       Racing
## 7240          2     8117    X360 2010       Action
## 7241          2     8441     PS3 2010       Action
## 7242          2      975      PS 2001       Action
## 7243          2     3673     GBA 2001       Action
## 7244          2     2254     PSP 2006       Action
## 7245          2     5314      DS 2005       Action
## 7246          2     5278     Wii 2010         Misc
## 7247          2     8677      DS 2010         Misc
## 7248          2     7843    X360 2011       Action
## 7249          2     9431      DS 2011       Action
## 7250          2     4066     PS2 2003       Racing
## 7251          2     9333      XB 2003       Racing
## 7252          2      862     PS2 2002     Platform
## 7253          2     2881      GC 2002     Platform
## 7254          2     7869     Wii 2009       Puzzle
## 7255          2     8259      DS 2009       Puzzle
## 7256          2     5924     PS4 2016 Role-Playing
## 7257          2    13791     PS3 2016 Role-Playing
## 7258          2    10047     PS2 2007     Strategy
## 7259          2     9687     Wii 2007     Strategy
## 7260          2     7948    X360 2006   Simulation
## 7261          2    15798      PC 2006   Simulation
## 7262          2    10726     PS2 2004   Simulation
## 7263          2    13691      XB 2004   Simulation
## 7264          2    12379      DS 2006     Strategy
## 7265          2    14523     PSP 2006     Strategy
## 7266          2     2647     PSP 2009      Shooter
## 7267          2     3838      DS 2009      Shooter
## 7268          2     7010      GC 2002      Shooter
## 7269          2     5771      XB 2002      Shooter
## 7270          2     4346      XB 2003      Shooter
## 7271          2    14091      PC 2003      Shooter
## 7272          2     1421      XB 2004 Role-Playing
## 7273          2    12350      PC 2005 Role-Playing
## 7274          2     1887     PS2 2002      Shooter
## 7275          2     6500      GC 2002      Shooter
## 7276          2      876      PC 1994      Shooter
## 7277          2     3667      PS 1996      Shooter
## 7278          2     3980     PS2 2002   Simulation
## 7279          2     4492      XB 2002   Simulation
## 7280          2      744      XB 2003 Role-Playing
## 7281          2     9078      PC 2003 Role-Playing
## 7282          2     9425     PSP 2006       Action
## 7283          2    10684      DS 2006       Action
## 7284          2     3024      XB 2005      Shooter
## 7285          2    13040      PC 2005      Shooter
## 7286          2      997     PS2 2002       Action
## 7287          2     8392      XB 2003       Action
## 7288          2    12337     PS3 2013    Adventure
## 7289          2    15041    X360 2013    Adventure
## 7290          2     2526    X360 2007      Shooter
## 7291          2     5838     PS3 2007      Shooter
## 7292          2     2026      PS 1998     Fighting
## 7293          2     8904     GBA 2002     Fighting
## 7294          2     2696      PS 1995     Fighting
## 7295          2     5340     SAT 1996     Fighting
## 7296          2     3073     PS2 2004     Fighting
## 7297          2     8830      XB 2004     Fighting
## 7298          2    10231     SAT 1996     Fighting
## 7299          2    10797      PS 1997     Fighting
## 7300          2     2513     PS4 2016     Fighting
## 7301          2    13046      PC 2016     Fighting
## 7302          2    15050     PSP 2012     Strategy
## 7303          2    15768    X360 2010     Strategy
## 7304          2     9689      PS 1998      Shooter
## 7305          2    13218     SAT 1996      Shooter
## 7306          2     1198     PS2 2002       Racing
## 7307          2    13821     GBA 2003       Racing
## 7308          2    12382      DS 2009       Puzzle
## 7309          2    14006     Wii 2009       Puzzle
## 7310          2     8057     PS2 2008       Sports
## 7311          2    14240    X360 2008       Sports
## 7312          2    13722     PS3 2011       Sports
## 7313          2    15749     Wii 2011       Sports
## 7314          2     6843     PS2 2003 Role-Playing
## 7315          2     9739     PSP 2012 Role-Playing
## 7316          2     8197     PS2 2006 Role-Playing
## 7317          2    11788     PSP 2012 Role-Playing
## 7318          2    12593     PSV 2016       Action
## 7319          2    14430     PS4 2016       Action
## 7320          2    13369      GC 2003       Puzzle
## 7321          2    16379      XB 2002       Puzzle
## 7322          2     5380     PS2 2000       Puzzle
## 7323          2    13209     GBA 2001       Puzzle
## 7324          2     1718    SNES 1991     Platform
## 7325          2    11769     GBA 2002     Platform
## 7326          2    13979     PSV 2014 Role-Playing
## 7327          2    14278     PS3 2014 Role-Playing
## 7328          2    13094     PSV 2014 Role-Playing
## 7329          2    14402     PS3 2014 Role-Playing
## 7330          2       47     N64 1996     Platform
## 7331          2       60      DS 2004     Platform
## 7332          2        2     NES 1985     Platform
## 7333          2      201      GB 1999     Platform
## 7334          2       23     NES 1988     Platform
## 7335          2      183     GBA 2003     Platform
## 7336          2       19    SNES 1990     Platform
## 7337          2      165     GBA 2001     Platform
## 7338          2      283    SNES 1995     Platform
## 7339          2      493     GBA 2002     Platform
## 7340          2     6835     PS2 2005         Misc
## 7341          2     8959      XB 2005         Misc
## 7342          2    15315     PS2 2007       Racing
## 7343          2    16100     Wii 2009       Racing
## 7344          2     3674     SAT 1998     Strategy
## 7345          2     7098      PS 1999     Strategy
## 7346          2    12000     PS3 2013     Strategy
## 7347          2    14289     PSV 2013     Strategy
## 7348          2    11067     PS4 2016         Misc
## 7349          2    12633     PS3 2016         Misc
## 7350          2       98     3DS 2014     Fighting
## 7351          2      204    WiiU 2014     Fighting
## 7352          2      851    SNES 1993     Fighting
## 7353          2     8910     GEN 1993     Fighting
## 7354          2     6421    X360 2006       Action
## 7355          2    11729      DS 2006       Action
## 7356          2     4607     PS2 2002       Action
## 7357          2    11535      GC 2003       Action
## 7358          2    13885     PS3 2009       Racing
## 7359          2    16095    X360 2009       Racing
## 7360          2    11070    X360 2008     Strategy
## 7361          2    13340      PC 2007     Strategy
## 7362          2     5310    X360 2010     Strategy
## 7363          2     7800      PC 2010     Strategy
## 7364          2    12957     Wii 2010   Simulation
## 7365          2    13458      DS 2010   Simulation
## 7366          2    13934     PSP 2011    Adventure
## 7367          2    14155     PS3 2011    Adventure
## 7368          2     5923     PSV 2014 Role-Playing
## 7369          2     9991     PS4 2015 Role-Playing
## 7370          2    14641      XB 2004    Adventure
## 7371          2    15695      PC 2004    Adventure
## 7372          2     5961     PSP 2006      Shooter
## 7373          2     6175     PS2 2007      Shooter
## 7374          2     4241     PSP 2007      Shooter
## 7375          2    12647     PS2 2010      Shooter
## 7376          2     3700     Wii 2008       Racing
## 7377          2    13676      DS 2008       Racing
## 7378          2    13510     PS4 2016       Racing
## 7379          2    16533    XOne 2016       Racing
## 7380          2    11868      GC 2005     Fighting
## 7381          2    15634      XB 2005     Fighting
## 7382          2    13018     PSP 2010     Fighting
## 7383          2    13210      DS 2010     Fighting
## 7384          2     2889    SNES 1995 Role-Playing
## 7385          2     3766     PSP 2010 Role-Playing
## 7386          2    10043     PS2 2005         Misc
## 7387          2    13251      XB 2005         Misc
## 7388          2     6243     PS2 2008       Action
## 7389          2     8631     Wii 2008       Action
## 7390          2     7248     PS4 2016 Role-Playing
## 7391          2    10233     PS3 2016 Role-Playing
## 7392          2     1995      PS 1997 Role-Playing
## 7393          2     3829     PS2 2006 Role-Playing
## 7394          2     2593     PS2 2002 Role-Playing
## 7395          2     9950     PSP 2007 Role-Playing
## 7396          2     4314     PSV 2013 Role-Playing
## 7397          2     6773      DS 2008 Role-Playing
## 7398          2     3418     PS2 2004 Role-Playing
## 7399          2    12004     PSP 2008 Role-Playing
## 7400          2     1868      GC 2003 Role-Playing
## 7401          2     3723     PS3 2013 Role-Playing
## 7402          2     2752    X360 2008 Role-Playing
## 7403          2     4310     PS3 2009 Role-Playing
## 7404          2     3421     PS3 2015 Role-Playing
## 7405          2     5026     PS4 2015 Role-Playing
## 7406          2     2521     3DS 2011 Role-Playing
## 7407          2     3515     PS2 2005 Role-Playing
## 7408          2     5223     Wii 2009     Fighting
## 7409          2     7327     PS2 2009     Fighting
## 7410          2    11987     NES 1992     Fighting
## 7411          2    12702    SNES 1992     Fighting
## 7412          2    15461     Wii 2008       Sports
## 7413          2    16029     GBA 2004       Sports
## 7414          2     7207     Wii 2008       Action
## 7415          2     9778     PSP 2009       Action
## 7416          2      756     NES 1984       Sports
## 7417          2      854      GB 1989       Sports
## 7418          2     3734     PS3 2009      Shooter
## 7419          2     5287    X360 2009      Shooter
## 7420          2     1457     PS2 2002       Racing
## 7421          2     4619      XB 2002       Racing
## 7422          2     6994     PS2 2004       Racing
## 7423          2    11124      XB 2004       Racing
## 7424          2    13358    X360 2012       Racing
## 7425          2    13759     PS3 2012       Racing
## 7426          2        6      GB 1989       Puzzle
## 7427          2      156     NES 1988       Puzzle
## 7428          2     7122      GB 1996       Puzzle
## 7429          2     8877    SNES 1995       Puzzle
## 7430          2     2644      DS 2010       Puzzle
## 7431          2     3500     Wii 2010       Puzzle
## 7432          2    10391     Wii 2010         Misc
## 7433          2    11154      DS 2010         Misc
## 7434          2     7349     PS2 2004 Role-Playing
## 7435          2    10624      XB 2004 Role-Playing
## 7436          2     1899     Wii 2009       Sports
## 7437          2     5624      DS 2009       Sports
## 7438          2     3131     Wii 2011         Misc
## 7439          2     5534    X360 2011         Misc
## 7440          2    12163     PS4 2015    Adventure
## 7441          2    16255    WiiU 2016    Adventure
## 7442          2     6309    X360 2008      Shooter
## 7443          2     6998     PS3 2008      Shooter
## 7444          2     9113     PS2 2006       Action
## 7445          2    13797      XB 2006       Action
## 7446          2    10794     Wii 2010    Adventure
## 7447          2     9823      DS 2010    Adventure
## 7448          2     3014     PS3 2007      Shooter
## 7449          2     4448    X360 2007      Shooter
## 7450          2     4957     Wii 2007    Adventure
## 7451          2     6422     PS2 2007    Adventure
## 7452          2     7321     PS2 2004       Racing
## 7453          2    11630      XB 2004       Racing
## 7454          2     3043     PS2 2003     Platform
## 7455          2    10150      XB 2003     Platform
## 7456          2    12631     PS2 2006       Racing
## 7457          2    15231     PSP 2007       Racing
## 7458          2    10402    X360 2011       Action
## 7459          2    11544      PC 2011       Action
## 7460          2     4158     PS2 2006       Action
## 7461          2    16416    X360 2006       Action
## 7462          2     2596    X360 2009       Action
## 7463          2     2739     PS3 2009       Action
## 7464          2    11602     PS4 2014       Sports
## 7465          2    14763    XOne 2014       Sports
## 7466          2     7734     PS2 2003       Action
## 7467          2    12461      XB 2003       Action
## 7468          2     8248      GC 2006       Action
## 7469          2    13196     Wii 2006       Action
## 7470          2     9351     PS2 2004         Misc
## 7471          2    12005      XB 2004         Misc
## 7472          2    13158     PS3 2011     Strategy
## 7473          2     9490    X360 2010     Strategy
## 7474          2     8250      PS 1998     Fighting
## 7475          2     8279     SAT 1998     Fighting
## 7476          2    12189     PS2 2005     Fighting
## 7477          2    14670      XB 2005     Fighting
## 7478          2     8572     PS3 2009     Fighting
## 7479          2    10080    X360 2009     Fighting
## 7480          2     5450    X360 2011     Fighting
## 7481          2     5796     PS3 2011     Fighting
## 7482          2     7445     Wii 2010       Action
## 7483          2     8007      DS 2010       Action
## 7484          2     2969    X360 2008 Role-Playing
## 7485          2    16028      PC 2009 Role-Playing
## 7486          2      147     PS3 2013       Action
## 7487          2      237     PS4 2014       Action
## 7488          2     7606     PSP 2011 Role-Playing
## 7489          2    12520     PSV 2014 Role-Playing
## 7490          2     8514     PSP 2010 Role-Playing
## 7491          2    11962     PSV 2012 Role-Playing
## 7492          2    12365     PSP 2007 Role-Playing
## 7493          2    15401     PS3 2013 Role-Playing
## 7494          2     5805     PSV 2013 Role-Playing
## 7495          2     7212     PS3 2013 Role-Playing
## 7496          2     8852     PSV 2014 Role-Playing
## 7497          2     9799     PS3 2014 Role-Playing
## 7498          2     5074      DS 2006     Platform
## 7499          2     7905      GC 2006     Platform
## 7500          2      232    SNES 1991       Action
## 7501          2      552     GBA 2002       Action
## 7502          2       95     N64 1998       Action
## 7503          2      269     3DS 2011       Action
## 7504          2      233      GC 2002       Action
## 7505          2      980    WiiU 2013       Action
## 7506          2      101     Wii 2006       Action
## 7507          2     1162      GC 2006       Action
## 7508          2    12734    X360 2006     Strategy
## 7509          2    15209      PC 2006     Strategy
## 7510          2     1668     PS2 2002       Action
## 7511          2     3793      XB 2002       Action
## 7512          2     4030     PS2 2005       Action
## 7513          2     5735      XB 2005       Action
## 7514          2     8722     Wii 2011   Simulation
## 7515          2     9469     3DS 2011   Simulation
## 7516          2     6659      PS 2001       Action
## 7517          2     8585     N64 2001       Action
## 7518          2     4328     PS2 2002       Action
## 7519          2    12108      GC 2002       Action
## 7520          2     2497     Wii 2008         Misc
## 7521          2     3998      DS 2008         Misc
## 7522          2     6859     Wii 2009         Misc
## 7523          2     9527      DS 2009         Misc
## 7524          2     9596     Wii 2011         Misc
## 7525          2    10094    X360 2011         Misc
## 7526          2     3166      DS 2009     Platform
## 7527          2     4198     Wii 2009     Platform
## 7528          2     3865     PS2 2005       Action
## 7529          2     6052      XB 2005       Action
## 7530          2     7003     PS2 2002       Action
## 7531          2    10271      GC 2002       Action
## 7532          2     4671     PS2 2004       Action
## 7533          2     7221      XB 2004       Action
## 7534          2     8209     PS2 2005       Action
## 7535          2    11136      XB 2005       Action
## 7536          2    13962     GBA 2002      Shooter
## 7537          2    14226      GC 2003      Shooter
## 7538          2     4733     PS2 2002       Action
## 7539          2     8771      XB 2002       Action
## 7540          2     4421     PS2 2002    Adventure
## 7541          2     7709      XB 2002    Adventure
## 7542          2     7638     PS3 2013 Role-Playing
## 7543          2    11484     PS4 2015 Role-Playing
## 7544          2     2170      PC 2011       Action
## 7545          2     2207    X360 2012       Action
## 7546          2      649      PC 1997     Strategy
## 7547          2    11219      PS 1998     Strategy
## 7548          2    11109      DS 2010         Misc
## 7549          2    15276     Wii 2010         Misc
## 7550          2     3064     PS2 2006     Strategy
## 7551          2     7497     PSP 2006     Strategy
## 7552          2     7468     PSP 2005       Sports
## 7553          2     8981      DS 2004       Sports
## 7554          2     3640     PS3 2012       Sports
## 7555          2     3891    X360 2012       Sports
## 7556          2     4953     PS3 2013       Sports
## 7557          2     5185    X360 2013       Sports
## 7558          2     6121      PS 2000     Platform
## 7559          2     7616     N64 2000     Platform
## 7560          2     5373     PS2 2004    Adventure
## 7561          2    11202      XB 2005    Adventure
## 7562          2    11699      DS 2010       Puzzle
## 7563          2    15075     Wii 2010       Puzzle
## 7564          2    10137     PSP 2011    Adventure
## 7565          2    13077     PSV 2015    Adventure
## 7566          2     3445      PS 1995   Simulation
## 7567          2     5044     SAT 1996   Simulation
## 7568          2    10775      PS 1996       Puzzle
## 7569          2    11263     SAT 1996       Puzzle
## 7570          2     9958     PSV 2014 Role-Playing
## 7571          2    12753     PS3 2014 Role-Playing
## 7572          2     1215    X360 2006      Shooter
## 7573          2     5444      XB 2006      Shooter
## 7574          2     1118      PS 1999      Shooter
## 7575          2     3158     N64 1999      Shooter
## 7576          2     7032      PS 2001      Shooter
## 7577          2    10044     GBA 2002      Shooter
## 7578          2      817    X360 2010       Action
## 7579          2    10349      PC 2010       Action
## 7580          2      179      PS 1997       Action
## 7581          2      696      PC 1997       Action
## 7582          2      363      PS 1997       Action
## 7583          2     3279      PC 1998       Action
## 7584          2      623      PS 1998       Action
## 7585          2     4686      PC 1998       Action
## 7586          2    13472     PSP 2009    Adventure
## 7587          2    16214     PS2 2007    Adventure
## 7588          2     6884     GBA 2005       Sports
## 7589          2     7357      DS 2005       Sports
## 7590          2     7199      DS 2006       Sports
## 7591          2     6939     Wii 2006       Sports
## 7592          2     4829     N64 1997       Racing
## 7593          2    11208     GBA 2003       Racing
## 7594          2    12221     PS3 2011   Simulation
## 7595          2    13537      DS 2006   Simulation
## 7596          2    12558    X360 2012       Action
## 7597          2    14114     PS3 2012       Action
## 7598          2     4303      XB 2003       Sports
## 7599          2    10431     PS2 2005       Sports
## 7600          2     8301    X360 2006       Sports
## 7601          2    13035      DS 2006       Sports
## 7602          2     9588     PS2 2006       Sports
## 7603          2    13639      XB 2006       Sports
## 7604          2    10385     PS2 2002       Racing
## 7605          2    15051      XB 2002       Racing
## 7606          2    10974     PS2 2005      Shooter
## 7607          2    14992      XB 2005      Shooter
## 7608          2     5068     PSV 2013       Action
## 7609          2     8148     PSP 2013       Action
## 7610          2    14144     PS4 2014       Sports
## 7611          2    15649     PS3 2014       Sports
## 7612          2    12078     PS4 2015       Action
## 7613          2    12960    XOne 2015       Action
## 7614          2     1044      PS 1998     Platform
## 7615          2     2237     N64 1999     Platform
## 7616          2     7900     PS2 2002       Sports
## 7617          2     9394      XB 2001       Sports
## 7618          2    13982      PC 2011     Platform
## 7619          2    14646    WiiU 2012     Platform
## 7620          2     1354      PS 1999       Sports
## 7621          2     6149     N64 1999       Sports
## 7622          2     2403     PS2 2002       Sports
## 7623          2     6638      XB 2002       Sports
## 7624          2     7817     PS2 2004         Misc
## 7625          2    10928      XB 2004         Misc
## 7626          2    12371     GBA 2004       Action
## 7627          2    12626      XB 2004       Action
## 7628          2     7240    X360 2009     Strategy
## 7629          2    13430      PC 2009     Strategy
## 7630          2     6343      PC 2011     Strategy
## 7631          2     5198    X360 2011     Strategy
## 7632          2     6038    X360 2008      Shooter
## 7633          2     6764     PS3 2008      Shooter
## 7634          2    12946    X360 2007       Sports
## 7635          2    16015     PSP 2007       Sports
## 7636          2     9288     PS2 2004       Sports
## 7637          2    12895      XB 2004       Sports
## 7638          2     6207     PS4 2016       Sports
## 7639          2    10042     PS3 2016       Sports
## 7640          2      812    X360 2009     Fighting
## 7641          2      988     PS3 2009     Fighting
## 7642          2     1977     PS3 2012       Action
## 7643          2     2068    X360 2012       Action
## 7644          2     6715     Wii 2008         Misc
## 7645          2     7028      DS 2008         Misc
## 7646          2     5650     PS2 2002     Fighting
## 7647          2    11624      GC 2002     Fighting
## 7648          2    15230     3DS 2012 Role-Playing
## 7649          2    15369     PSP 2012 Role-Playing
## 7650          2    12376     PSP 2011 Role-Playing
## 7651          2    13729     3DS 2011 Role-Playing
## 7652          2    12670     PS2 2006      Shooter
## 7653          2    15537      XB 2006      Shooter
## 7654          2     1538     PS3 2008 Role-Playing
## 7655          2     8411     PS4 2016 Role-Playing
## 7656          2     5280     PS3 2010       Sports
## 7657          2     6991    X360 2010       Sports
## 7658          2     3244     PS3 2010      Shooter
## 7659          2     4610    X360 2010      Shooter
## 7660          2     8054     PS2 2004      Shooter
## 7661          2    11695      XB 2004      Shooter
## 7662          2     3259      GC 2003       Action
## 7663          2     6148     PS2 2004       Action
## 7664          2     7232      GC 2004       Action
## 7665          2     7380     PS2 2004       Action
## 7666          2    11145     PSP 2006       Action
## 7667          2    12733      GC 2005       Action
## 7668          2     1624      PS 1998       Racing
## 7669          2     5758     N64 1998       Racing
## 7670          2     4122      PS 1999       Racing
## 7671          2    10224     N64 2000       Racing
## 7672          2     4379    X360 2008       Action
## 7673          2     4890     PS3 2008       Action
## 7674          2     4294    X360 2009       Racing
## 7675          2     5530     PS3 2009       Racing
## 7676          2    16430      GC 2004 Role-Playing
## 7677          2    15655     PS2 2004 Role-Playing
## 7678          2     1126    X360 2006   Simulation
## 7679          2    14965      PC 2007   Simulation
## 7680          2     7344      PS 1999       Action
## 7681          2     9153     N64 2000       Action
## 7682          2     1649      PS 1998     Fighting
## 7683          2     2611     N64 1999     Fighting
## 7684          2      919      PS 1998     Fighting
## 7685          2     7415     N64 1998     Fighting
## 7686          2    16145     PS3 2009       Sports
## 7687          2    16392    X360 2009       Sports
## 7688          2    10941     PS3 2011       Sports
## 7689          2    13548    X360 2011       Sports
## 7690          2     1686     PS3 2013       Sports
## 7691          2     1813    X360 2013       Sports
## 7692          2     5295     PS2 2003       Racing
## 7693          2    11635      GC 2003       Racing
## 7694          2      487     PS2 2005     Fighting
## 7695          2     4809     PSP 2005     Fighting
## 7696          2      990      PS 1998     Fighting
## 7697          2     2886     N64 1999     Fighting
## 7698          2      398      PS 1998     Fighting
## 7699          2     1474     N64 1998     Fighting
## 7700          2     5877     Wii 2008       Racing
## 7701          2     7457      DS 2008       Racing
## 7702          2     9861     PS2 2005    Adventure
## 7703          2    16171      XB 2005    Adventure
## 7704          2     6637     PS2 2003         Misc
## 7705          2    11236      PS 2000         Misc
## 7706          2     5139    X360 2009      Shooter
## 7707          2     5937     PS3 2009      Shooter
## 7708          2     6032     N64 1997     Fighting
## 7709          2    14905      PS 1996     Fighting
## 7710          2     5524     PSP 2007     Strategy
## 7711          2    12238      DS 2007     Strategy
## 7712          2     1964     PS3 2007   Simulation
## 7713          2     4305      PS 1995   Simulation
## 7714          2     8231     PS2 2001    Adventure
## 7715          2     9612      PS 2001    Adventure
## 7716          2     7883     PS3 2011       Action
## 7717          2    12660    X360 2011       Action
## 7718          2     3842     PS3 2008       Action
## 7719          2     7431    X360 2009       Action
## 7720          2     6693     N64 1997       Sports
## 7721          2    13445      PS 1997       Sports
## 7722          2     3234     PS3 2009      Shooter
## 7723          2     3954    X360 2009      Shooter
## 7724          2    11617      DS 2005       Puzzle
## 7725          2    16338     GBA 2005       Puzzle
## 7726          2     7233      DS 2009    Adventure
## 7727          2     7871     Wii 2009    Adventure
## 7728          2     9515     PS2 2003       Racing
## 7729          2    12808      XB 2003       Racing
## 7730          2     7160     PS2 2002       Sports
## 7731          2    13198      GC 2002       Sports
## 7732          2    13545     PS3 2012    Adventure
## 7733          2    15847     PSV 2013    Adventure
## 7734          2    14631      XB 2002       Racing
## 7735          2    15268     PS2 2002       Racing
## 7736          2    10472     Wii 2010         Misc
## 7737          2    13758      DS 2010         Misc
## 7738          2    13790      DS 2007         Misc
## 7739          2    14176     Wii 2007         Misc
## 7740          2    14457     Wii 2008         Misc
## 7741          2    16209      DS 2008         Misc
## 7742          2      880      PC 1999         Misc
## 7743          2     2566      PS 2000         Misc
## 7744          2    15000     Wii 2009      Shooter
## 7745          2    15002     Wii 2009      Shooter
## 7746          2     5989     PS2 2000      Shooter
## 7747          2     7418     N64 1999      Shooter
## 7748          2    12177     PS3 2010       Sports
## 7749          2    13030     PSP 2010       Sports
## 7750          2    11841     PS3 2012       Sports
## 7751          2    13754     PSP 2012       Sports
## 7752          2    13128     PS3 2013       Sports
## 7753          2    15819     PSV 2013       Sports
## 7754          2    16058     PS2 2008       Sports
## 7755          2    16116     PS3 2008       Sports
## 7756          2    15405     PS2 2007       Sports
## 7757          2    15853     PS3 2007       Sports
## 7758          2    12942     PS3 2014       Racing
## 7759          2    13969     PSV 2014       Racing
## 7760          2    15043     PSV 2015       Action
## 7761          2    15157     PS3 2015       Action
## 7762          2    13121     PS3 2009       Sports
## 7763          2    14273     PS2 2009       Sports
## 7764          2    15453      DS 2014       Action
## 7765          2    16456     3DS 2014       Action
## 7766          2     4055     PS2 2009       Racing
## 7767          2     5691     PSP 2007       Racing
## 7768          2      797     Wii 2009         Misc
## 7769          2     3264      DS 2010         Misc
## 7770          2    15720      XB 2005      Shooter
## 7771          2    14000     PS2 2005      Shooter
## 7772          2    10960      DS 2009         Misc
## 7773          2    13346     Wii 2008         Misc
## 7774          2     1075     PS2 2006         Misc
## 7775          2    13357    X360 2006         Misc
## 7776          2    13309     PS2 2004       Sports
## 7777          2    14021      XB 2003       Sports
## 7778          2     8294     PS2 2000       Action
## 7779          2     8375      PS 2000       Action
## 7780          2     6992      XB 2002       Sports
## 7781          2    13718     SAT 1994       Sports
## 7782          2     6704     PS2 2003       Sports
## 7783          2     8817      XB 2003       Sports
## 7784          2    10570     PS3 2007       Sports
## 7785          2    16393    X360 2007       Sports
## 7786          2      316     PS2 2004       Sports
## 7787          2    11123      XB 2004       Sports
## 7788          2      293     PS2 2005       Sports
## 7789          2     4415      XB 2005       Sports
## 7790          2    13964    X360 2010      Shooter
## 7791          2     6034      PC 2011      Shooter
## 7792          2    14565     PS3 2009     Strategy
## 7793          2    15417    X360 2007     Strategy
## 7794          2     1952      PS 1999     Strategy
## 7795          2    13742     N64 1999     Strategy
## 7796          2    10180     PS2 2004     Strategy
## 7797          2    12227      XB 2004     Strategy
## 7798          2    12829     GBA 2002     Strategy
## 7799          2    15780      PC 2001     Strategy
## 7800          2     2646     PSP 2006     Strategy
## 7801          2    11362      DS 2006     Strategy
## 7802          2     4393     PSP 2007     Strategy
## 7803          2     5229      DS 2007     Strategy
## 7804          2    11830     PS2 2004     Strategy
## 7805          2    13415      XB 2004     Strategy
## 7806          2     9141    X360 2009       Action
## 7807          2     9239     PS3 2009       Action
## 7808          2     4668      PS 1997     Fighting
## 7809          2     6562     SAT 1997     Fighting
## 7810          2     7466     SAT 1995     Fighting
## 7811          2    10533      PS 1998     Fighting
## 7812          2    13375     PSV 2013    Adventure
## 7813          2    14116     PS3 2013    Adventure
## 7814          2     6373     PS2 2001       Racing
## 7815          2     8752      GC 2001       Racing
## 7816          2    14757     PSV 2015    Adventure
## 7817          2    15982     PS3 2015    Adventure
## 7818          2     2109     Wii 2010 Role-Playing
## 7819          2     3595     3DS 2015 Role-Playing
## 7820          2    12539     PSP 2006       Action
## 7821          2    12844      DS 2006       Action
## 7822          2    10562     PS3 2014       Action
## 7823          2    13150    X360 2014       Action
## 7824          2     2567     PS2 2005       Action
## 7825          2    10000     PS3 2012       Action
## 7826          2     8659     PS4 2016    Adventure
## 7827          2     9924     PS3 2016    Adventure
## 7828          2     6726     PS3 2015       Action
## 7829          2     8261     PS4 2015       Action
## 7830          2     6533     PS3 2014       Action
## 7831          2     8939     PS4 2014       Action
## 7832          2    10319      DS 2009       Racing
## 7833          2    11972     Wii 2009       Racing
## 7834          2    10541     PSP 2008 Role-Playing
## 7835          2    14143     GBA 2006 Role-Playing
## 7836          2     9082      DS 2010       Action
## 7837          2     9945     Wii 2010       Action
## 7838          2     7255    X360 2011         Misc
## 7839          2    10196     PS3 2011         Misc
## 7840          2     1010     NES 1991       Puzzle
## 7841          2     2800      GB 1991       Puzzle
## 7842          2     1078      GB 1992       Puzzle
## 7843          2     1829     NES 1992       Puzzle
## 7844          2    10947      XB 2004       Sports
## 7845          2    13686     PS2 2005       Sports
## 7846          2     9375     PS2 2005 Role-Playing
## 7847          2    13350     PSP 2006 Role-Playing
## 7848          2    11376     PS2 2005     Fighting
## 7849          2    12257      GC 2005     Fighting
## 7850          2     9774     PS2 2005    Adventure
## 7851          2    15165      XB 2005    Adventure
## 7852          2    12434     3DS 2016    Adventure
## 7853          2    12452     PSV 2016    Adventure
## 7854          2     2031    WiiU 2012       Action
## 7855          2    12927     PS4 2016       Action
## 7856          2     7731     PS4 2015      Shooter
## 7857          2    10509    XOne 2015      Shooter
## 7858          2     4545     PS3 2012   Simulation
## 7859          2     7603    X360 2012   Simulation
## 7860          2     8344     Wii 2008   Simulation
## 7861          2    13935      DS 2007   Simulation
## 7862          2     5421    XOne 2013   Simulation
## 7863          2    10743    X360 2013   Simulation
## 7864          2    13212     GBA 2002       Puzzle
## 7865          2    14920      GC 2002       Puzzle
## 7866          2    11765     Wii 2012         Misc
## 7867          2    11968    X360 2012         Misc
## 7868          2     6279     Wii 2013         Misc
## 7869          2     6977    XOne 2013         Misc
## 7870          2     1505    X360 2009       Action
## 7871          2     1604     PS3 2009       Action
## 7872          2     2811      DS 2009    Adventure
## 7873          2     4300     Wii 2009    Adventure
## 7874          2     6216      DS 2010    Adventure
## 7875          2    10720     Wii 2010    Adventure
## 7876          2     9854     PS3 2010       Racing
## 7877          2    10627    X360 2010       Racing
## 7878          2     7837     Wii 2011         Misc
## 7879          2    15526    X360 2011         Misc
##                                   Publisher NA_Sales EU_Sales JP_Sales
## 1                           Electronic Arts     2.03     1.79     0.08
## 2                           Electronic Arts     0.71     1.51     0.06
## 3                           Electronic Arts     0.62     0.80     0.01
## 4                           Electronic Arts     1.00     0.17     0.02
## 5                           Electronic Arts     0.38     0.52     0.01
## 6                           Electronic Arts     0.53     0.46     0.00
## 7                           Electronic Arts     0.43     0.11     0.00
## 8                           Electronic Arts     0.02     0.23     0.00
## 9                           Electronic Arts     0.14     0.12     0.00
## 10                          Electronic Arts     0.24     0.01     0.00
## 11                          Electronic Arts     0.19     0.07     0.00
## 12                          Electronic Arts     0.00     0.06     0.00
## 13                          Electronic Arts     0.78     4.32     0.07
## 14                          Electronic Arts     0.92     2.93     0.01
## 15                          Electronic Arts     0.61     1.85     0.11
## 16                          Electronic Arts     0.41     0.66     0.00
## 17                          Electronic Arts     0.11     0.25     0.01
## 18                          Electronic Arts     0.01     0.36     0.00
## 19                          Electronic Arts     0.00     0.38     0.00
## 20                          Electronic Arts     0.00     0.23     0.00
## 21                          Electronic Arts     0.00     0.16     0.00
## 22   Warner Bros. Interactive Entertainment     1.24     0.85     0.00
## 23   Warner Bros. Interactive Entertainment     0.77     0.85     0.01
## 24   Warner Bros. Interactive Entertainment     0.59     0.75     0.01
## 25   Warner Bros. Interactive Entertainment     0.61     0.34     0.00
## 26   Warner Bros. Interactive Entertainment     0.42     0.36     0.04
## 27   Warner Bros. Interactive Entertainment     0.31     0.35     0.02
## 28   Warner Bros. Interactive Entertainment     0.15     0.35     0.00
## 29   Warner Bros. Interactive Entertainment     0.28     0.17     0.00
## 30   Warner Bros. Interactive Entertainment     0.04     0.12     0.00
## 31                          Electronic Arts     3.63     0.24     0.01
## 32                          Electronic Arts     1.66     0.00     0.01
## 33                          Electronic Arts     0.97     0.03     0.00
## 34                          Electronic Arts     0.48     0.13     0.00
## 35                          Electronic Arts     0.47     0.00     0.01
## 36                          Electronic Arts     0.46     0.00     0.00
## 37                          Electronic Arts     0.20     0.00     0.00
## 38                          Electronic Arts     0.02     0.01     0.00
## 39                                  Unknown     0.77     0.03     0.00
## 40                                      THQ     0.50     0.62     0.00
## 41                                      THQ     0.31     0.00     0.00
## 42                                      THQ     0.22     0.28     0.00
## 43                                      THQ     0.09     0.32     0.00
## 44                                      THQ     0.44     0.04     0.00
## 45                                      THQ     0.23     0.02     0.00
## 46                                      THQ     0.14     0.05     0.00
## 47                                      THQ     0.11     0.03     0.00
## 48                                      THQ     0.01     0.01     0.00
## 49                               Activision     0.21     0.10     0.00
## 50                               Activision     0.15     0.15     0.00
## 51                               Activision     0.10     0.17     0.00
## 52                               Activision     0.16     0.11     0.00
## 53                               Activision     0.10     0.08     0.00
## 54                               Activision     0.11     0.04     0.00
## 55                               Activision     0.05     0.04     0.00
## 56                               Activision     0.06     0.04     0.00
## 57                                      THQ     0.72     0.29     0.00
## 58                                      THQ     1.01     0.04     0.00
## 59                                      THQ     0.81     0.30     0.00
## 60                                      THQ     0.85     0.05     0.00
## 61                                      THQ     0.83     0.04     0.00
## 62                                      THQ     0.72     0.19     0.00
## 63                                      THQ     0.22     0.02     0.00
## 64                                      THQ     0.15     0.04     0.00
## 65                          Electronic Arts     0.79     4.29     0.05
## 66                          Electronic Arts     0.57     3.14     0.04
## 67                          Electronic Arts     0.78     2.02     0.00
## 68                          Electronic Arts     0.60     1.41     0.00
## 69                          Electronic Arts     0.13     0.48     0.04
## 70                          Electronic Arts     0.24     0.46     0.00
## 71                          Electronic Arts     0.09     0.33     0.00
## 72                          Electronic Arts     0.00     0.27     0.00
## 73                          Electronic Arts     1.06     5.05     0.13
## 74                          Electronic Arts     1.08     3.48     0.03
## 75                          Electronic Arts     0.19     0.46     0.00
## 76                          Electronic Arts     0.18     0.26     0.00
## 77                          Electronic Arts     0.00     0.30     0.05
## 78                          Electronic Arts     0.02     0.31     0.00
## 79                          Electronic Arts     0.05     0.19     0.02
## 80                          Electronic Arts     0.06     0.20     0.00
## 81   Warner Bros. Interactive Entertainment     0.76     0.47     0.00
## 82   Warner Bros. Interactive Entertainment     0.51     0.39     0.00
## 83   Warner Bros. Interactive Entertainment     0.36     0.45     0.00
## 84   Warner Bros. Interactive Entertainment     0.35     0.30     0.00
## 85   Warner Bros. Interactive Entertainment     0.18     0.19     0.00
## 86   Warner Bros. Interactive Entertainment     0.10     0.11     0.00
## 87   Warner Bros. Interactive Entertainment     0.09     0.10     0.00
## 88   Warner Bros. Interactive Entertainment     0.05     0.14     0.00
## 89   Warner Bros. Interactive Entertainment     0.47     0.40     0.00
## 90   Warner Bros. Interactive Entertainment     0.34     0.44     0.00
## 91   Warner Bros. Interactive Entertainment     0.32     0.42     0.01
## 92   Warner Bros. Interactive Entertainment     0.35     0.22     0.00
## 93   Warner Bros. Interactive Entertainment     0.31     0.22     0.03
## 94   Warner Bros. Interactive Entertainment     0.28     0.19     0.02
## 95   Warner Bros. Interactive Entertainment     0.09     0.23     0.00
## 96   Warner Bros. Interactive Entertainment     0.00     0.04     0.00
## 97                                LucasArts     1.85     0.64     0.01
## 98                                LucasArts     0.58     0.51     0.00
## 99                                LucasArts     0.96     0.04     0.00
## 100                               LucasArts     0.75     0.19     0.00
## 101                               LucasArts     0.55     0.04     0.00
## 102                               LucasArts     0.33     0.10     0.00
## 103                               LucasArts     0.06     0.02     0.00
## 104                              Activision     0.00     0.01     0.00
## 105  Warner Bros. Interactive Entertainment     0.12     0.37     0.00
## 106  Warner Bros. Interactive Entertainment     0.12     0.32     0.00
## 107  Warner Bros. Interactive Entertainment     0.20     0.26     0.00
## 108  Warner Bros. Interactive Entertainment     0.13     0.12     0.00
## 109  Warner Bros. Interactive Entertainment     0.09     0.13     0.00
## 110  Warner Bros. Interactive Entertainment     0.10     0.11     0.00
## 111  Warner Bros. Interactive Entertainment     0.03     0.13     0.00
## 112  Warner Bros. Interactive Entertainment     0.00     0.04     0.00
## 113  Warner Bros. Interactive Entertainment     0.48     0.38     0.00
## 114  Warner Bros. Interactive Entertainment     0.37     0.39     0.00
## 115  Warner Bros. Interactive Entertainment     0.33     0.35     0.00
## 116  Warner Bros. Interactive Entertainment     0.09     0.29     0.00
## 117  Warner Bros. Interactive Entertainment     0.23     0.21     0.00
## 118  Warner Bros. Interactive Entertainment     0.21     0.21     0.00
## 119  Warner Bros. Interactive Entertainment     0.23     0.17     0.00
## 120  Warner Bros. Interactive Entertainment     0.00     0.06     0.00
## 121                         Electronic Arts     2.14     0.08     0.00
## 122                         Electronic Arts     2.18     0.01     0.00
## 123                         Electronic Arts     0.89     0.01     0.00
## 124                         Electronic Arts     0.82     0.01     0.00
## 125                         Electronic Arts     0.60     0.04     0.00
## 126                         Electronic Arts     0.22     0.06     0.00
## 127                         Electronic Arts     0.24     0.00     0.00
## 128                         Electronic Arts     0.06     0.02     0.00
## 129                      Hasbro Interactive     1.49     0.81     0.00
## 130                         Electronic Arts     0.87     0.85     0.00
## 131                      Hasbro Interactive     1.18     0.27     0.00
## 132                         Electronic Arts     0.34     0.20     0.00
## 133                         Electronic Arts     0.21     0.16     0.00
## 134                         Electronic Arts     0.25     0.06     0.00
## 135                         Electronic Arts     0.16     0.10     0.00
## 136                      Hasbro Interactive     0.17     0.04     0.00
## 137                               505 Games     0.35     0.31     0.00
## 138                               505 Games     0.07     0.26     0.09
## 139                                 Unknown     0.00     0.13     0.00
## 140                              Screenlife     0.00     0.01     0.09
## 141                               505 Games     0.00     0.03     0.04
## 142                               505 Games     0.00     0.05     0.01
## 143                               505 Games     0.00     0.04     0.00
## 144                               505 Games     0.00     0.02     0.00
## 145  Warner Bros. Interactive Entertainment     0.69     0.52     0.00
## 146  Warner Bros. Interactive Entertainment     0.33     0.48     0.02
## 147  Warner Bros. Interactive Entertainment     0.28     0.31     0.05
## 148  Warner Bros. Interactive Entertainment     0.24     0.31     0.01
## 149  Warner Bros. Interactive Entertainment     0.35     0.23     0.03
## 150  Warner Bros. Interactive Entertainment     0.34     0.13     0.00
## 151  Warner Bros. Interactive Entertainment     0.05     0.26     0.00
## 152  Warner Bros. Interactive Entertainment     0.02     0.04     0.00
## 153                         Electronic Arts     0.84     4.32     0.11
## 154                         Electronic Arts     0.84     2.79     0.02
## 155                         Electronic Arts     0.16     0.52     0.00
## 156                         Electronic Arts     0.12     0.26     0.02
## 157                         Electronic Arts     0.04     0.33     0.00
## 158                         Electronic Arts     0.08     0.26     0.00
## 159                         Electronic Arts     0.00     0.02     0.00
## 160                         Electronic Arts     0.68     0.00     0.00
## 161                         Electronic Arts     0.35     1.07     0.02
## 162                         Electronic Arts     0.20     0.76     0.00
## 163                         Electronic Arts     0.31     0.89     0.01
## 164                         Electronic Arts     0.32     0.59     0.01
## 165                         Electronic Arts     0.10     0.65     0.00
## 166                         Electronic Arts     0.00     0.01     0.00
## 167                         Electronic Arts     0.60     2.46     0.05
## 168                         Electronic Arts     0.59     1.79     0.01
## 169                         Electronic Arts     0.23     0.24     0.00
## 170                         Electronic Arts     0.15     0.68     0.01
## 171                         Electronic Arts     0.23     0.65     0.00
## 172                         Electronic Arts     0.14     0.37     0.00
## 173                         Electronic Arts     0.00     0.04     0.00
## 174                         Electronic Arts     0.60     3.29     0.06
## 175                         Electronic Arts     0.71     2.40     0.02
## 176                         Electronic Arts     0.13     0.70     0.01
## 177                         Electronic Arts     0.26     0.69     0.00
## 178                         Electronic Arts     0.11     0.29     0.00
## 179                         Electronic Arts     0.13     0.50     0.00
## 180                         Electronic Arts     0.00     0.14     0.00
## 181                         Electronic Arts     0.28     0.40     0.00
## 182                         Electronic Arts     0.13     0.07     0.00
## 183                         Electronic Arts     0.21     0.35     0.00
## 184                         Electronic Arts     0.18     0.21     0.00
## 185                         Electronic Arts     0.15     0.13     0.00
## 186                         Electronic Arts     0.17     0.12     0.00
## 187                         Electronic Arts     0.00     0.03     0.00
## 188                         Electronic Arts     0.28     0.47     0.00
## 189                         Electronic Arts     0.38     0.06     0.00
## 190                         Electronic Arts     0.10     0.17     0.00
## 191                         Electronic Arts     0.24     0.04     0.00
## 192                         Electronic Arts     0.13     0.10     0.00
## 193                         Electronic Arts     0.18     0.04     0.00
## 194                         Electronic Arts     0.00     0.03     0.00
## 195                         Electronic Arts     1.37     2.00     0.14
## 196                         Electronic Arts     0.94     0.62     0.10
## 197                         Electronic Arts     0.87     0.66     0.08
## 198                         Electronic Arts     0.14     0.11     0.00
## 199                         Electronic Arts     0.06     0.02     0.00
## 200                         Electronic Arts     0.05     0.02     0.00
## 201                         Electronic Arts     0.01     0.04     0.00
## 202  Warner Bros. Interactive Entertainment     0.90     0.64     0.00
## 203  Warner Bros. Interactive Entertainment     0.94     0.40     0.00
## 204  Warner Bros. Interactive Entertainment     0.50     0.53     0.00
## 205  Warner Bros. Interactive Entertainment     0.43     0.27     0.00
## 206  Warner Bros. Interactive Entertainment     0.41     0.27     0.00
## 207  Warner Bros. Interactive Entertainment     0.17     0.13     0.00
## 208  Warner Bros. Interactive Entertainment     0.05     0.07     0.00
## 209  Warner Bros. Interactive Entertainment     2.03     1.03     0.00
## 210  Warner Bros. Interactive Entertainment     1.86     1.02     0.00
## 211  Warner Bros. Interactive Entertainment     1.79     1.06     0.00
## 212  Warner Bros. Interactive Entertainment     0.72     0.42     0.00
## 213  Warner Bros. Interactive Entertainment     0.57     0.46     0.00
## 214  Warner Bros. Interactive Entertainment     0.72     0.03     0.00
## 215  Warner Bros. Interactive Entertainment     0.02     0.03     0.00
## 216                              Activision     2.40     1.03     0.00
## 217                               LucasArts     1.54     0.63     0.00
## 218                              Activision     1.42     0.61     0.00
## 219                               LucasArts     0.60     0.01     0.00
## 220                               LucasArts     0.40     0.49     0.00
## 221                              Activision     0.44     0.44     0.00
## 222                               LucasArts     0.02     0.02     0.00
## 223  Warner Bros. Interactive Entertainment     0.25     0.29     0.00
## 224  Warner Bros. Interactive Entertainment     0.17     0.15     0.00
## 225  Warner Bros. Interactive Entertainment     0.18     0.11     0.00
## 226  Warner Bros. Interactive Entertainment     0.10     0.17     0.00
## 227  Warner Bros. Interactive Entertainment     0.12     0.09     0.00
## 228  Warner Bros. Interactive Entertainment     0.07     0.11     0.00
## 229  Warner Bros. Interactive Entertainment     0.07     0.08     0.01
## 230              Disney Interactive Studios     0.76     0.72     0.00
## 231              Disney Interactive Studios     0.54     0.42     0.00
## 232              Disney Interactive Studios     0.36     0.46     0.00
## 233              Disney Interactive Studios     0.37     0.49     0.00
## 234              Disney Interactive Studios     0.29     0.28     0.00
## 235              Disney Interactive Studios     0.11     0.15     0.00
## 236              Disney Interactive Studios     0.02     0.00     0.00
## 237                               LucasArts     1.08     0.66     0.00
## 238                               LucasArts     0.84     0.54     0.00
## 239                               LucasArts     0.52     0.49     0.00
## 240                               LucasArts     0.66     0.39     0.00
## 241                               LucasArts     0.61     0.43     0.00
## 242                               LucasArts     0.14     0.17     0.00
## 243                               LucasArts     0.10     0.13     0.00
## 244  Warner Bros. Interactive Entertainment     0.63     0.51     0.00
## 245  Warner Bros. Interactive Entertainment     0.36     0.53     0.00
## 246  Warner Bros. Interactive Entertainment     0.52     0.37     0.00
## 247  Warner Bros. Interactive Entertainment     0.19     0.17     0.00
## 248  Warner Bros. Interactive Entertainment     0.10     0.15     0.00
## 249  Warner Bros. Interactive Entertainment     0.07     0.13     0.00
## 250  Warner Bros. Interactive Entertainment     0.00     0.14     0.00
## 251  Warner Bros. Interactive Entertainment     0.14     0.32     0.00
## 252  Warner Bros. Interactive Entertainment     0.12     0.10     0.00
## 253  Warner Bros. Interactive Entertainment     0.03     0.07     0.00
## 254  Warner Bros. Interactive Entertainment     0.04     0.06     0.00
## 255  Warner Bros. Interactive Entertainment     0.02     0.05     0.00
## 256  Warner Bros. Interactive Entertainment     0.04     0.04     0.00
## 257  Warner Bros. Interactive Entertainment     0.02     0.04     0.00
## 258                         Electronic Arts     3.98     0.26     0.01
## 259                         Electronic Arts     1.75     0.03     0.00
## 260                         Electronic Arts     0.69     0.00     0.00
## 261                         Electronic Arts     0.44     0.11     0.00
## 262                         Electronic Arts     0.17     0.06     0.00
## 263                         Electronic Arts     0.11     0.00     0.00
## 264                         Electronic Arts     0.54     0.00     0.01
## 265                    Take-Two Interactive     0.40     0.03     0.00
## 266                    Take-Two Interactive     0.15     0.03     0.00
## 267                    Take-Two Interactive     0.15     0.00     0.00
## 268                    Take-Two Interactive     0.09     0.00     0.00
## 269                    Take-Two Interactive     0.06     0.01     0.00
## 270                    Take-Two Interactive     0.05     0.00     0.00
## 271                    Take-Two Interactive     0.02     0.02     0.00
## 272                     Arena Entertainment     1.75     0.25     0.00
## 273                   Acclaim Entertainment     1.19     0.16     0.00
## 274                         Electronic Arts     0.38     0.03     0.00
## 275                   Acclaim Entertainment     0.20     0.16     0.00
## 276                         Electronic Arts     0.27     0.10     0.00
## 277                         Electronic Arts     0.22     0.12     0.00
## 278                   Acclaim Entertainment     0.10     0.03     0.00
## 279                         Electronic Arts     0.63     1.02     0.05
## 280                         Electronic Arts     0.79     0.71     0.01
## 281                         Electronic Arts     0.38     0.08     0.03
## 282                         Electronic Arts     0.23     0.32     0.03
## 283                         Electronic Arts     0.27     0.32     0.00
## 284                         Electronic Arts     0.18     0.03     0.00
## 285                         Electronic Arts     0.00     0.07     0.00
## 286                         Electronic Arts     0.76     0.70     0.02
## 287                         Electronic Arts     1.22     0.05     0.05
## 288                         Electronic Arts     0.46     0.66     0.02
## 289                         Electronic Arts     0.49     0.52     0.03
## 290                         Electronic Arts     0.35     0.10     0.00
## 291                         Electronic Arts     0.27     0.07     0.00
## 292                         Electronic Arts     0.00     0.04     0.00
## 293                         Electronic Arts     0.69     0.00     0.04
## 294                         Electronic Arts     1.04     0.80     0.01
## 295                         Electronic Arts     0.73     0.92     0.04
## 296                         Electronic Arts     0.54     0.46     0.00
## 297                         Electronic Arts     0.24     0.33     0.01
## 298                         Electronic Arts     0.11     0.01     0.00
## 299                         Electronic Arts     0.00     0.04     0.00
## 300            Konami Digital Entertainment     0.34     0.97     0.55
## 301            Konami Digital Entertainment     0.10     0.12     0.29
## 302            Konami Digital Entertainment     0.10     0.34     0.00
## 303            Konami Digital Entertainment     0.08     0.08     0.03
## 304            Konami Digital Entertainment     0.00     0.07     0.00
## 305            Konami Digital Entertainment     0.00     0.00     0.06
## 306            Konami Digital Entertainment     0.02     0.00     0.00
## 307                              Activision     1.32     0.83     0.00
## 308                              Activision     0.86     0.36     0.00
## 309                              Activision     0.43     0.44     0.00
## 310                              Activision     0.40     0.15     0.00
## 311                              Activision     0.20     0.12     0.00
## 312                              Activision     0.22     0.06     0.00
## 313                              Activision     0.10     0.12     0.00
## 314                              Activision     0.25     0.18     0.00
## 315                              Activision     0.24     0.18     0.00
## 316                              Activision     0.15     0.18     0.00
## 317                              Activision     0.17     0.08     0.00
## 318                              Activision     0.05     0.19     0.00
## 319                              Activision     0.16     0.05     0.00
## 320                              Activision     0.05     0.06     0.00
## 321                              Activision     0.42     0.54     0.00
## 322                              Activision     0.54     0.31     0.00
## 323                              Activision     0.39     0.25     0.00
## 324                              Activision     0.24     0.33     0.00
## 325                              Activision     0.18     0.17     0.00
## 326                              Activision     0.25     0.07     0.00
## 327                              Activision     0.14     0.10     0.00
## 328                              Activision     0.74     0.03     0.01
## 329                              Activision     0.26     0.29     0.02
## 330                              Activision     0.49     0.04     0.00
## 331                              Activision     0.42     0.02     0.00
## 332                              Activision     0.41     0.02     0.00
## 333                              Activision     0.01     0.23     0.00
## 334                              Activision     0.02     0.00     0.00
## 335                               LucasArts     0.44     0.30     0.00
## 336                               LucasArts     0.19     0.19     0.00
## 337                               LucasArts     0.21     0.13     0.00
## 338                               LucasArts     0.23     0.14     0.00
## 339                               LucasArts     0.18     0.17     0.00
## 340                               LucasArts     0.17     0.01     0.00
## 341                               LucasArts     0.00     0.02     0.00
## 342                                 Ubisoft     0.14     0.11     0.00
## 343                                 Ubisoft     0.26     0.00     0.00
## 344                                 Ubisoft     0.15     0.00     0.00
## 345                                 Ubisoft     0.02     0.06     0.00
## 346                                 Ubisoft     0.09     0.00     0.00
## 347                                 Ubisoft     0.03     0.00     0.00
## 348                                 Ubisoft     0.01     0.00     0.00
## 349                              Activision     0.20     0.25     0.02
## 350                              Activision     0.06     0.16     0.02
## 351                              Activision     0.10     0.14     0.00
## 352                              Activision     0.12     0.07     0.00
## 353                              Activision     0.03     0.03     0.00
## 354                              Activision     0.03     0.02     0.00
## 355                              Activision     0.00     0.01     0.00
## 356                         Electronic Arts     0.49     0.56     0.00
## 357                         Electronic Arts     0.82     0.07     0.00
## 358                         Electronic Arts     0.67     0.03     0.00
## 359                         Electronic Arts     0.28     0.10     0.00
## 360                         Electronic Arts     0.26     0.07     0.00
## 361                         Electronic Arts     0.02     0.24     0.00
## 362                         Electronic Arts     0.19     0.05     0.00
## 363                       Eidos Interactive     0.25     0.19     0.02
## 364                       Eidos Interactive     0.09     0.24     0.00
## 365                       Eidos Interactive     0.27     0.08     0.01
## 366                       Eidos Interactive     0.10     0.03     0.00
## 367                       Eidos Interactive     0.06     0.02     0.00
## 368                       Eidos Interactive     0.04     0.02     0.00
## 369                       Eidos Interactive     0.00     0.01     0.00
## 370                                     THQ     0.46     0.83     0.00
## 371                                     THQ     0.51     0.40     0.00
## 372                                     THQ     0.21     0.00     0.00
## 373                                     THQ     0.29     0.22     0.00
## 374                                     THQ     0.29     0.26     0.00
## 375                                     THQ     0.12     0.21     0.00
## 376                                     THQ     0.00     0.01     0.00
## 377                              Activision     0.82     0.52     0.01
## 378                              Activision     0.43     0.52     0.02
## 379                              Activision     0.30     0.29     0.01
## 380                              Activision     0.17     0.00     0.00
## 381                              Activision     0.11     0.01     0.00
## 382                              Activision     0.01     0.01     0.00
## 383                            Little Orbit     0.02     0.07     0.00
## 384                            Little Orbit     0.02     0.06     0.00
## 385                            Little Orbit     0.03     0.04     0.00
## 386                            Little Orbit     0.02     0.05     0.00
## 387                            Little Orbit     0.03     0.02     0.00
## 388                            Little Orbit     0.02     0.02     0.00
## 389                                 Ubisoft     1.33     1.71     0.13
## 390                                 Ubisoft     1.90     1.14     0.01
## 391                                 Ubisoft     1.07     1.31     0.06
## 392                                 Ubisoft     1.47     0.55     0.00
## 393                                 Ubisoft     0.22     0.38     0.00
## 394                                 Ubisoft     0.18     0.09     0.00
## 395                                 Ubisoft     0.32     0.43     0.00
## 396                                 Ubisoft     0.34     0.35     0.00
## 397                                 Ubisoft     0.33     0.32     0.00
## 398                                 Ubisoft     0.22     0.24     0.00
## 399                                 Ubisoft     0.19     0.18     0.00
## 400                                 Ubisoft     0.00     0.04     0.00
## 401                             D3Publisher     0.10     0.03     0.00
## 402                             D3Publisher     0.07     0.06     0.00
## 403                             D3Publisher     0.08     0.03     0.00
## 404                             D3Publisher     0.07     0.02     0.00
## 405                             D3Publisher     0.06     0.02     0.00
## 406                             D3Publisher     0.02     0.02     0.00
## 407                             D3Publisher     0.22     0.08     0.00
## 408                             D3Publisher     0.17     0.10     0.00
## 409                             D3Publisher     0.12     0.09     0.00
## 410                             D3Publisher     0.10     0.09     0.00
## 411                             D3Publisher     0.13     0.06     0.00
## 412                             D3Publisher     0.10     0.06     0.00
## 413                               505 Games     0.38     0.04     0.00
## 414                               505 Games     0.20     0.15     0.00
## 415                               505 Games     0.36     0.01     0.00
## 416                               505 Games     0.19     0.00     0.00
## 417                               505 Games     0.10     0.06     0.00
## 418                     Crave Entertainment     0.11     0.00     0.00
## 419                              Activision     6.72     2.63     0.04
## 420                              Activision     4.09     3.73     0.38
## 421                              Activision     1.78     1.42     0.05
## 422                              Activision     1.87     0.77     0.00
## 423                              Activision     0.23     0.41     0.00
## 424                              Activision     0.23     0.09     0.01
## 425              Disney Interactive Studios     0.72     0.44     0.04
## 426              Disney Interactive Studios     0.46     0.39     0.00
## 427              Disney Interactive Studios     0.22     0.23     0.00
## 428              Disney Interactive Studios     0.28     0.17     0.00
## 429              Disney Interactive Studios     0.21     0.00     0.00
## 430              Disney Interactive Studios     0.10     0.01     0.00
## 431                                     THQ     0.61     0.30     0.00
## 432                                     THQ     0.35     0.09     0.00
## 433                                     THQ     0.27     0.03     0.00
## 434                                     THQ     0.29     0.07     0.00
## 435                                     THQ     0.14     0.03     0.00
## 436                                     THQ     0.14     0.01     0.00
## 437                                     THQ     0.35     0.37     0.01
## 438                                     THQ     0.45     0.28     0.00
## 439                            Nordic Games     0.09     0.10     0.00
## 440                                     THQ     0.07     0.07     0.00
## 441                            Nordic Games     0.03     0.10     0.00
## 442                            Nordic Games     0.03     0.02     0.00
## 443                             Codemasters     0.27     0.53     0.00
## 444                             Codemasters     0.32     0.40     0.00
## 445                             Codemasters     0.11     0.23     0.00
## 446             Sony Computer Entertainment     0.09     0.16     0.00
## 447                             Codemasters     0.06     0.04     0.00
## 448                             Codemasters     0.00     0.04     0.00
## 449              Disney Interactive Studios     1.15     0.44     0.00
## 450              Disney Interactive Studios     0.96     0.37     0.00
## 451              Disney Interactive Studios     0.48     0.35     0.00
## 452              Disney Interactive Studios     0.33     0.22     0.00
## 453              Disney Interactive Studios     0.16     0.10     0.00
## 454              Disney Interactive Studios     0.05     0.00     0.00
## 455              Disney Interactive Studios     0.62     0.40     0.00
## 456              Disney Interactive Studios     0.44     0.40     0.00
## 457              Disney Interactive Studios     0.38     0.22     0.00
## 458              Disney Interactive Studios     0.26     0.24     0.00
## 459              Disney Interactive Studios     0.24     0.15     0.00
## 460              Disney Interactive Studios     0.00     0.11     0.00
## 461                         Electronic Arts     0.71     2.48     0.03
## 462                         Electronic Arts     0.24     0.65     0.00
## 463                         Electronic Arts     0.16     0.35     0.00
## 464                         Electronic Arts     0.24     0.01     0.00
## 465                         Electronic Arts     0.14     0.04     0.00
## 466                         Electronic Arts     0.05     0.01     0.00
## 467                         Electronic Arts     0.48     1.63     0.04
## 468                         Electronic Arts     0.38     0.07     0.01
## 469                         Electronic Arts     0.49     1.26     0.01
## 470                         Electronic Arts     0.23     0.73     0.02
## 471                         Electronic Arts     0.12     0.31     0.00
## 472                         Electronic Arts     0.00     0.02     0.00
## 473                         Electronic Arts     0.47     0.02     0.00
## 474                         Electronic Arts     0.19     0.27     0.01
## 475                         Electronic Arts     0.18     0.05     0.00
## 476                         Electronic Arts     0.10     0.03     0.00
## 477                         Electronic Arts     0.10     0.00     0.00
## 478                         Electronic Arts     0.03     0.00     0.00
## 479              Disney Interactive Studios     0.27     0.23     0.00
## 480              Disney Interactive Studios     0.19     0.20     0.00
## 481                         Electronic Arts     0.24     0.07     0.00
## 482              Disney Interactive Studios     0.12     0.01     0.00
## 483              Disney Interactive Studios     0.13     0.06     0.00
## 484              Disney Interactive Studios     0.11     0.05     0.00
## 485                         Electronic Arts     0.17     0.05     0.00
## 486                         Electronic Arts     0.17     0.03     0.00
## 487                         Electronic Arts     0.11     0.07     0.00
## 488                         Electronic Arts     0.11     0.00     0.00
## 489                         Electronic Arts     0.11     0.02     0.00
## 490                         Electronic Arts     0.11     0.01     0.00
## 491                                   Atari     0.60     0.21     0.00
## 492             Sony Computer Entertainment     0.34     0.37     0.00
## 493                                   Atari     0.43     0.14     0.00
## 494                                   Atari     0.15     0.04     0.00
## 495                                   Atari     0.26     0.12     0.00
## 496                                   Atari     0.16     0.01     0.00
## 497                         Electronic Arts     0.90     1.22     0.04
## 498                         Electronic Arts     1.21     0.64     0.05
## 499                         Electronic Arts     0.75     1.09     0.02
## 500                         Electronic Arts     0.53     0.14     0.00
## 501                         Electronic Arts     0.27     0.08     0.00
## 502                         Electronic Arts     0.00     0.01     0.00
## 503                         Electronic Arts     0.54     0.02     0.00
## 504                         Electronic Arts     0.44     0.16     0.00
## 505                         Electronic Arts     0.32     0.08     0.00
## 506                         Electronic Arts     0.21     0.02     0.00
## 507                         Electronic Arts     0.18     0.05     0.00
## 508                         Electronic Arts     0.17     0.01     0.00
## 509                           Vivendi Games     0.19     0.15     0.00
## 510                           Vivendi Games     0.18     0.07     0.00
## 511                           Vivendi Games     0.15     0.04     0.00
## 512                           Vivendi Games     0.13     0.01     0.00
## 513                           Vivendi Games     0.07     0.02     0.00
## 514                           Vivendi Games     0.06     0.01     0.00
## 515                              Activision     0.20     0.15     0.00
## 516                              Activision     0.11     0.14     0.00
## 517                              Activision     0.13     0.04     0.00
## 518                              Activision     0.08     0.07     0.00
## 519                              Activision     0.09     0.03     0.00
## 520                              Activision     0.02     0.00     0.00
## 521                                    Sega     0.32     0.25     0.00
## 522                                    Sega     0.46     0.09     0.00
## 523                                    Sega     0.31     0.22     0.00
## 524                                    Sega     0.27     0.24     0.00
## 525                                    Sega     0.36     0.00     0.00
## 526                                    Sega     0.35     0.12     0.00
## 527                                     THQ     0.22     0.34     0.00
## 528                                     THQ     0.19     0.15     0.01
## 529                                     THQ     0.06     0.20     0.00
## 530                                     THQ     0.18     0.04     0.01
## 531                                     THQ     0.22     0.00     0.00
## 532                                     THQ     0.00     0.01     0.00
## 533                                 Ubisoft     1.98     1.47     0.00
## 534                                 Ubisoft     0.72     0.19     0.00
## 535                                 Ubisoft     0.33     0.23     0.00
## 536                                 Ubisoft     0.30     0.11     0.00
## 537                                 Ubisoft     0.17     0.15     0.00
## 538                                 Ubisoft     0.18     0.16     0.00
## 539                                 Ubisoft     1.11     0.98     0.00
## 540                                 Ubisoft     0.40     0.28     0.00
## 541                                 Ubisoft     0.41     0.16     0.00
## 542                                 Ubisoft     0.35     0.13     0.00
## 543                                 Ubisoft     0.19     0.13     0.00
## 544                                 Ubisoft     0.12     0.11     0.00
## 545                                 Ubisoft     0.52     0.59     0.00
## 546                                 Ubisoft     0.28     0.25     0.00
## 547                                 Ubisoft     0.23     0.10     0.00
## 548                                 Ubisoft     0.16     0.13     0.00
## 549                                 Ubisoft     0.24     0.04     0.00
## 550                                 Ubisoft     0.10     0.08     0.00
## 551                              Activision     1.91     0.84     0.00
## 552                              Activision     0.56     0.57     0.00
## 553                              Activision     0.50     0.32     0.00
## 554                              Activision     0.24     0.00     0.00
## 555                              Activision     0.21     0.21     0.00
## 556                              Activision     0.00     0.02     0.00
## 557  Warner Bros. Interactive Entertainment     1.29     0.97     0.00
## 558  Warner Bros. Interactive Entertainment     1.07     1.05     0.00
## 559  Warner Bros. Interactive Entertainment     0.95     0.50     0.00
## 560  Warner Bros. Interactive Entertainment     0.55     0.60     0.00
## 561  Warner Bros. Interactive Entertainment     0.14     0.37     0.00
## 562  Warner Bros. Interactive Entertainment     0.01     0.01     0.00
## 563                              Activision     0.91     0.39     0.00
## 564                              Activision     0.66     0.43     0.00
## 565                              Activision     0.62     0.33     0.00
## 566                              Activision     0.47     0.30     0.00
## 567                              Activision     0.21     0.24     0.00
## 568                              Activision     0.02     0.03     0.00
## 569                                     THQ     0.55     0.08     0.00
## 570                                     THQ     0.35     0.18     0.00
## 571                                     THQ     0.35     0.06     0.00
## 572                                     THQ     0.32     0.01     0.00
## 573                                     THQ     0.29     0.03     0.00
## 574                                     THQ     0.11     0.00     0.00
## 575                              Activision     0.42     0.26     0.00
## 576                              Activision     0.32     0.18     0.00
## 577                              Activision     0.12     0.00     0.00
## 578                              Activision     0.12     0.10     0.00
## 579                              Activision     0.12     0.08     0.00
## 580                              Activision     0.01     0.00     0.00
## 581                         Electronic Arts     2.21     0.12     0.00
## 582                         Electronic Arts     1.56     0.15     0.00
## 583                         Electronic Arts     1.22     0.00     0.00
## 584                         Electronic Arts     0.65     0.00     0.00
## 585                         Electronic Arts     0.30     0.00     0.00
## 586                         Electronic Arts     0.13     0.04     0.00
## 587                         Electronic Arts     2.53     0.16     0.00
## 588                         Electronic Arts     2.11     0.23     0.00
## 589                         Electronic Arts     0.51     0.00     0.00
## 590                         Electronic Arts     0.30     0.00     0.00
## 591                         Electronic Arts     0.22     0.00     0.00
## 592                         Electronic Arts     0.00     0.01     0.00
## 593                         Electronic Arts     2.50     0.16     0.01
## 594                         Electronic Arts     0.78     0.53     0.00
## 595                         Electronic Arts     0.47     0.12     0.00
## 596                         Electronic Arts     0.41     0.02     0.00
## 597                         Electronic Arts     0.23     0.08     0.00
## 598                                 Unknown     0.53     0.02     0.00
## 599                    Take-Two Interactive     0.47     0.00     0.00
## 600                    Take-Two Interactive     0.25     0.00     0.00
## 601                    Take-Two Interactive     0.11     0.09     0.00
## 602                    Take-Two Interactive     0.17     0.00     0.00
## 603                    Take-Two Interactive     0.14     0.00     0.00
## 604                    Take-Two Interactive     0.06     0.00     0.00
## 605                    Take-Two Interactive     0.47     0.00     0.00
## 606                    Take-Two Interactive     0.18     0.00     0.00
## 607                    Take-Two Interactive     0.15     0.00     0.00
## 608                    Take-Two Interactive     0.08     0.00     0.00
## 609                    Take-Two Interactive     0.08     0.00     0.00
## 610                    Take-Two Interactive     0.04     0.00     0.00
## 611                              Activision     2.29     0.02     0.00
## 612                              Activision     0.69     0.03     0.00
## 613                              Activision     0.37     0.01     0.00
## 614                              Activision     0.33     0.02     0.00
## 615                              Activision     0.33     0.00     0.00
## 616                              Activision     0.01     0.00     0.00
## 617                              Activision     0.68     0.15     0.00
## 618                              Activision     0.49     0.16     0.00
## 619                              Activision     0.23     0.02     0.00
## 620                              Activision     0.26     0.05     0.00
## 621                              Activision     0.17     0.04     0.00
## 622                              Activision     0.16     0.03     0.00
## 623                                 Ubisoft     2.67     1.35     0.01
## 624                                 Ubisoft     0.62     0.20     0.00
## 625                                 Ubisoft     0.25     0.20     0.00
## 626                                 Ubisoft     0.22     0.03     0.00
## 627                                 Ubisoft     0.11     0.03     0.00
## 628                                 Ubisoft     0.05     0.04     0.00
## 629                  Microsoft Game Studios     5.58     2.83     0.02
## 630             Sony Computer Entertainment     1.97     2.51     0.00
## 631      Sony Computer Entertainment Europe     1.38     1.87     0.12
## 632                  Microsoft Game Studios     1.43     0.76     0.00
## 633      Sony Computer Entertainment Europe     0.28     0.79     0.87
## 634                  Microsoft Game Studios     0.18     0.09     0.14
## 635                              Activision     0.33     0.13     0.00
## 636                              Activision     0.21     0.06     0.00
## 637                              Activision     0.14     0.09     0.00
## 638                              Activision     0.11     0.00     0.00
## 639                              Activision     0.12     0.03     0.00
## 640                              Activision     0.01     0.01     0.00
## 641                    Take-Two Interactive     1.84     0.12     0.01
## 642                    Take-Two Interactive     1.41     0.21     0.03
## 643                    Take-Two Interactive     0.47     0.01     0.00
## 644                    Take-Two Interactive     0.39     0.00     0.00
## 645                    Take-Two Interactive     0.34     0.01     0.00
## 646                    Take-Two Interactive     0.18     0.00     0.00
## 647                         Electronic Arts     2.71     3.02     0.08
## 648                         Electronic Arts     1.38     0.80     0.00
## 649                         Electronic Arts     0.70     0.39     0.01
## 650                         Electronic Arts     0.31     0.12     0.00
## 651                         Electronic Arts     0.11     0.02     0.00
## 652                         Electronic Arts     0.00     0.06     0.00
## 653                                 Ubisoft     0.13     0.03     0.00
## 654                                 Ubisoft     0.12     0.00     0.00
## 655                                 Ubisoft     0.10     0.00     0.00
## 656                                 Ubisoft     0.07     0.00     0.00
## 657                                 Ubisoft     0.06     0.00     0.00
## 658                                 Ubisoft     0.01     0.01     0.00
## 659                                 Ubisoft     0.71     1.02     0.00
## 660                                 Ubisoft     0.34     0.17     0.00
## 661                                 Ubisoft     0.20     0.03     0.00
## 662                                 Ubisoft     0.19     0.05     0.00
## 663                                 Ubisoft     0.16     0.01     0.00
## 664                                 Ubisoft     0.12     0.00     0.00
## 665              Disney Interactive Studios     0.17     0.41     0.00
## 666              Disney Interactive Studios     0.39     0.02     0.01
## 667              Disney Interactive Studios     0.15     0.17     0.00
## 668              Disney Interactive Studios     0.20     0.16     0.00
## 669              Disney Interactive Studios     0.30     0.01     0.01
## 670              Disney Interactive Studios     0.29     0.02     0.00
## 671                                 Ubisoft     0.19     0.36     0.01
## 672                                 Ubisoft     0.30     0.26     0.00
## 673                                 Ubisoft     0.09     0.18     0.01
## 674                                 Ubisoft     0.11     0.11     0.00
## 675                                 Ubisoft     0.14     0.01     0.00
## 676                                 Ubisoft     0.00     0.03     0.00
## 677            Konami Digital Entertainment     0.05     0.00     0.64
## 678            Konami Digital Entertainment     0.04     1.10     0.32
## 679            Konami Digital Entertainment     0.09     0.84     0.11
## 680            Konami Digital Entertainment     0.08     0.90     0.04
## 681            Konami Digital Entertainment     0.02     0.53     0.19
## 682            Konami Digital Entertainment     0.00     0.01     0.00
## 683            Konami Digital Entertainment     0.30     1.27     0.46
## 684            Konami Digital Entertainment     0.10     0.18     0.12
## 685            Konami Digital Entertainment     0.12     0.58     0.03
## 686            Konami Digital Entertainment     0.09     0.33     0.20
## 687            Konami Digital Entertainment     0.12     0.27     0.06
## 688            Konami Digital Entertainment     0.00     0.01     0.00
## 689            Konami Digital Entertainment     0.18     0.64     0.49
## 690            Konami Digital Entertainment     0.08     0.20     0.00
## 691            Konami Digital Entertainment     0.00     0.07     0.18
## 692            Konami Digital Entertainment     0.05     0.02     0.10
## 693            Konami Digital Entertainment     0.00     0.03     0.06
## 694            Konami Digital Entertainment     0.00     0.07     0.00
## 695                              Activision     0.32     0.05     0.00
## 696                              Activision     0.23     0.05     0.00
## 697                              Activision     0.18     0.06     0.00
## 698                              Activision     0.09     0.00     0.00
## 699                              Activision     0.04     0.03     0.00
## 700                              Activision     0.06     0.00     0.00
## 701                                 Ubisoft     0.21     0.61     0.00
## 702                                 Ubisoft     0.26     0.33     0.03
## 703                                 Ubisoft     0.14     0.38     0.00
## 704                                 Ubisoft     0.19     0.23     0.00
## 705                                 Ubisoft     0.13     0.18     0.00
## 706                                 Ubisoft     0.03     0.12     0.00
## 707                                 Ubisoft     0.33     0.51     0.01
## 708                                 Ubisoft     0.38     0.34     0.00
## 709                                 Ubisoft     0.13     0.35     0.00
## 710                                 Ubisoft     0.23     0.29     0.00
## 711                                 Ubisoft     0.06     0.08     0.00
## 712                                 Ubisoft     0.00     0.06     0.00
## 713                                 Ubisoft     0.00     0.06     0.00
## 714                                 Ubisoft     0.00     0.05     0.00
## 715                                 Ubisoft     0.00     0.04     0.00
## 716                                 Ubisoft     0.00     0.03     0.00
## 717                                 Ubisoft     0.00     0.02     0.00
## 718                                 Ubisoft     0.00     0.01     0.00
## 719                                    Sega     0.20     0.37     0.00
## 720                                    Sega     0.08     0.33     0.01
## 721                                    Sega     0.20     0.27     0.02
## 722                                    Sega     0.12     0.25     0.00
## 723                                    Sega     0.12     0.15     0.00
## 724                                    Sega     0.00     0.01     0.00
## 725                              Activision     1.75     1.20     0.02
## 726                              Activision     0.82     0.26     0.00
## 727                              Activision     0.76     0.28     0.00
## 728                              Activision     0.65     0.17     0.00
## 729                              Activision     0.35     0.21     0.00
## 730                              Activision     0.41     0.02     0.03
## 731                              Activision     0.43     0.00     0.00
## 732                              Activision     0.31     0.01     0.00
## 733                              Activision     0.26     0.02     0.00
## 734                              Activision     0.16     0.00     0.00
## 735                              Activision     0.13     0.01     0.00
## 736                              Activision     0.01     0.00     0.00
## 737                              Activision     0.36     0.02     0.00
## 738                              Activision     0.20     0.04     0.00
## 739                              Activision     0.22     0.01     0.00
## 740                              Activision     0.10     0.08     0.00
## 741                              Activision     0.09     0.00     0.00
## 742                              Activision     0.00     0.02     0.00
## 743                               LucasArts     1.74     0.80     0.00
## 744                               LucasArts     1.01     0.90     0.00
## 745                               LucasArts     1.14     0.57     0.00
## 746                               LucasArts     0.49     0.00     0.01
## 747                               LucasArts     0.43     0.41     0.00
## 748                               LucasArts     0.51     0.29     0.00
## 749                                  Palcom     3.38     0.44     0.31
## 750                                 Unknown     0.67     0.25     0.00
## 751            Konami Digital Entertainment     0.45     0.35     0.00
## 752            Konami Digital Entertainment     0.26     0.07     0.00
## 753            Konami Digital Entertainment     0.22     0.06     0.00
## 754            Konami Digital Entertainment     0.00     0.01     0.00
## 755                              Activision     0.31     0.37     0.00
## 756                              Activision     0.43     0.26     0.00
## 757                              Activision     0.15     0.04     0.00
## 758                              Activision     0.15     0.03     0.00
## 759                              Activision     0.11     0.04     0.00
## 760                              Activision     0.05     0.03     0.00
## 761                    Take-Two Interactive     0.26     0.01     0.00
## 762                    Take-Two Interactive     0.19     0.01     0.00
## 763                    Take-Two Interactive     0.10     0.08     0.00
## 764                    Take-Two Interactive     0.12     0.00     0.00
## 765                    Take-Two Interactive     0.09     0.00     0.00
## 766                    Take-Two Interactive     0.05     0.00     0.00
## 767                                    Sega     0.28     0.25     0.00
## 768                                    Sega     0.13     0.00     0.00
## 769                                    Sega     0.30     0.12     0.00
## 770                                    Sega     0.14     0.10     0.00
## 771                                    Sega     0.11     0.16     0.00
## 772                                    Sega     0.26     0.28     0.00
## 773                   Universal Interactive     0.40     0.15     0.00
## 774                                    Sega     0.32     0.01     0.00
## 775                                    Sega     0.28     0.01     0.00
## 776                                    Sega     0.22     0.03     0.00
## 777                                    Sega     0.22     0.03     0.00
## 778                                    Sega     0.22     0.00     0.00
## 779                                     THQ     0.29     0.11     0.00
## 780                                     THQ     0.18     0.14     0.00
## 781                                     THQ     0.12     0.03     0.00
## 782                                     THQ     0.13     0.01     0.00
## 783                                     THQ     0.06     0.02     0.00
## 784                                     THQ     0.01     0.00     0.00
## 785                         Electronic Arts     0.57     0.79     0.00
## 786                         Electronic Arts     0.35     0.03     0.00
## 787                         Electronic Arts     0.24     0.55     0.00
## 788                         Electronic Arts     0.54     0.40     0.00
## 789                         Electronic Arts     0.45     0.47     0.00
## 790                         Electronic Arts     0.38     0.37     0.00
## 791                         Electronic Arts     0.92     0.94     0.00
## 792                         Electronic Arts     0.19     0.39     0.00
## 793                         Electronic Arts     0.42     0.03     0.00
## 794                         Electronic Arts     0.02     0.01     0.00
## 795                         Electronic Arts     0.21     0.05     0.00
## 796                         Electronic Arts     0.01     0.02     0.00
## 797                         Electronic Arts     0.98     6.42     0.00
## 798                         Electronic Arts     1.27     0.86     0.00
## 799                         Electronic Arts     0.73     0.97     0.02
## 800                         Electronic Arts     0.61     0.73     0.00
## 801                         Electronic Arts     0.30     0.37     0.03
## 802                         Electronic Arts     0.39     0.25     0.00
## 803                      Avanquest Software     0.40     0.25     0.03
## 804                      Avanquest Software     0.55     0.14     0.00
## 805                          Telltale Games     0.12     0.25     0.01
## 806                             Square Enix     0.14     0.00     0.01
## 807                          Telltale Games     0.08     0.06     0.00
## 808                      Avanquest Software     0.00     0.03     0.00
## 809                         Electronic Arts     0.60     0.02     0.00
## 810                         Electronic Arts     0.31     0.12     0.00
## 811                         Electronic Arts     0.44     0.00     0.00
## 812                         Electronic Arts     0.20     0.04     0.00
## 813                         Electronic Arts     0.13     0.05     0.00
## 814                         Electronic Arts     0.43     0.00     0.00
## 815                         Electronic Arts     0.94     0.02     0.00
## 816                         Electronic Arts     0.22     0.38     0.00
## 817                         Electronic Arts     0.49     0.02     0.00
## 818                         Electronic Arts     0.19     0.15     0.00
## 819                         Electronic Arts     0.14     0.15     0.00
## 820                         Electronic Arts     0.05     0.00     0.00
## 821                       Eidos Interactive     0.45     0.56     0.05
## 822                       Eidos Interactive     0.53     0.43     0.01
## 823                       Eidos Interactive     0.14     0.28     0.00
## 824                       Eidos Interactive     0.16     0.03     0.00
## 825                       Eidos Interactive     0.09     0.04     0.00
## 826                       Eidos Interactive     0.00     0.06     0.00
## 827                              Activision     2.66     1.29     0.01
## 828                              Activision     1.09     0.49     0.02
## 829                              Activision     0.64     0.17     0.00
## 830                              Activision     0.34     0.18     0.00
## 831                              Activision     0.37     0.14     0.00
## 832                              Activision     0.06     0.02     0.00
## 833                              Activision     0.28     0.30     0.00
## 834                              Activision     0.34     0.23     0.00
## 835                              Activision     0.24     0.20     0.00
## 836                              Activision     0.25     0.01     0.00
## 837                              Activision     0.17     0.15     0.00
## 838                              Activision     0.02     0.00     0.00
## 839                             D3Publisher     0.00     0.03     0.00
## 840                             D3Publisher     0.00     0.02     0.00
## 841                             D3Publisher     0.00     0.02     0.00
## 842                             D3Publisher     0.00     0.02     0.00
## 843                             D3Publisher     0.00     0.01     0.00
## 844                             D3Publisher     0.00     0.01     0.00
## 845                                     THQ     0.31     0.28     0.00
## 846                                     THQ     0.23     0.28     0.00
## 847                                     THQ     0.19     0.05     0.00
## 848                                     THQ     0.24     0.10     0.00
## 849                                     THQ     0.20     0.07     0.00
## 850                                     THQ     0.15     0.07     0.00
## 851                                     THQ     0.16     0.18     0.00
## 852                                     THQ     0.18     0.14     0.00
## 853                                     THQ     0.15     0.06     0.00
## 854                                     THQ     0.11     0.07     0.00
## 855                                     THQ     0.12     0.04     0.00
## 856                                     THQ     0.05     0.04     0.00
## 857                                     THQ     0.92     0.00     0.01
## 858                                     THQ     0.92     0.38     0.00
## 859                                     THQ     0.62     0.50     0.01
## 860                                     THQ     0.45     0.47     0.00
## 861                                     THQ     0.38     0.50     0.00
## 862                                     THQ     0.11     0.01     0.00
## 863                                     THQ     0.69     0.00     0.00
## 864                                     THQ     0.51     0.31     0.01
## 865                                     THQ     0.58     0.26     0.00
## 866                                     THQ     0.44     0.31     0.00
## 867                                     THQ     0.41     0.21     0.00
## 868                                     THQ     0.15     0.02     0.00
## 869                                     THQ     0.48     0.49     0.01
## 870                                     THQ     0.53     0.01     0.00
## 871                                     THQ     0.56     0.38     0.01
## 872                                     THQ     0.51     0.17     0.00
## 873                                     THQ     0.25     0.23     0.00
## 874                                     THQ     0.35     0.14     0.00
## 875                          Ubisoft Annecy     0.00     0.04     0.57
## 876                          Ubisoft Annecy     0.09     0.03     0.03
## 877                              Tecmo Koei     0.04     0.05     0.04
## 878                          Ubisoft Annecy     0.00     0.00     0.11
## 879                              Tecmo Koei     0.00     0.00     0.07
## 880                              Tecmo Koei     0.01     0.03     0.00
## 881                                 Ubisoft     1.40     1.86     0.11
## 882                                 Ubisoft     0.56     0.89     0.10
## 883                                 Ubisoft     0.90     0.53     0.00
## 884                                 Ubisoft     0.72     0.45     0.01
## 885                                 Ubisoft     0.14     0.26     0.00
## 886                                 Ubisoft     0.08     0.05     0.00
## 887                              Activision     0.20     0.16     0.00
## 888                              Activision     0.16     0.01     0.00
## 889                              Activision     0.12     0.03     0.00
## 890                              Activision     0.10     0.00     0.00
## 891                              Activision     0.08     0.02     0.00
## 892                              Activision     0.05     0.02     0.00
## 893                           Vivendi Games     0.22     0.15     0.00
## 894                                     THQ     0.20     0.00     0.00
## 895                                     THQ     0.19     0.00     0.00
## 896                                     THQ     0.16     0.00     0.00
## 897                                     THQ     0.07     0.00     0.00
## 898                           Vivendi Games     0.01     0.00     0.00
## 899            Konami Digital Entertainment     0.29     1.18     0.54
## 900            Konami Digital Entertainment     0.05     0.30     0.29
## 901            Konami Digital Entertainment     0.09     0.44     0.00
## 902            Konami Digital Entertainment     0.04     0.21     0.05
## 903            Konami Digital Entertainment     0.08     0.10     0.03
## 904            Konami Digital Entertainment     0.00     0.05     0.00
## 905                                    Sega     0.34     0.56     0.04
## 906                                    Sega     0.22     0.24     0.00
## 907                                    Sega     0.12     0.19     0.00
## 908                                    Sega     0.15     0.13     0.00
## 909                                    Sega     0.00     0.13     0.00
## 910                          Telltale Games     0.10     0.04     0.00
## 911                          Telltale Games     0.07     0.01     0.00
## 912                          Telltale Games     0.05     0.00     0.00
## 913                          Telltale Games     0.02     0.01     0.00
## 914                          Telltale Games     0.00     0.02     0.00
## 915                              Activision     0.42     0.02     0.02
## 916                              Activision     0.15     0.01     0.00
## 917                              Activision     0.14     0.01     0.00
## 918                              Activision     0.09     0.04     0.00
## 919                              Activision     0.11     0.02     0.00
## 920                              Activision     1.27     0.02     0.00
## 921                              Activision     0.60     0.03     0.00
## 922                              Activision     0.21     0.16     0.00
## 923                              Activision     0.20     0.02     0.00
## 924                              Activision     0.19     0.03     0.00
## 925                              Activision     0.60     0.30     0.00
## 926                              Activision     0.51     0.22     0.00
## 927                              Activision     0.41     0.24     0.00
## 928                              Activision     0.21     0.19     0.00
## 929                              Activision     0.15     0.06     0.00
## 930                         Electronic Arts     1.30     1.51     0.27
## 931                         Electronic Arts     2.14     1.08     0.02
## 932                         Electronic Arts     1.34     1.54     0.17
## 933                         Electronic Arts     1.25     0.58     0.00
## 934                         Electronic Arts     0.38     0.86     0.00
## 935                         Electronic Arts     0.70     0.93     0.14
## 936                         Electronic Arts     0.72     0.37     0.01
## 937                         Electronic Arts     0.12     0.23     0.07
## 938                         Electronic Arts     0.17     0.14     0.00
## 939                         Electronic Arts     0.00     0.13     0.00
## 940                             D3Publisher     0.25     0.15     0.00
## 941                             D3Publisher     0.22     0.16     0.00
## 942                             D3Publisher     0.13     0.19     0.00
## 943                             D3Publisher     0.11     0.03     0.00
## 944                             D3Publisher     0.11     0.09     0.00
## 945                                 Ubisoft     0.74     0.04     0.00
## 946                                 Ubisoft     0.35     0.22     0.00
## 947                                 Ubisoft     0.36     0.03     0.00
## 948                                 Ubisoft     0.06     0.02     0.00
## 949                                 Ubisoft     0.01     0.00     0.00
## 950              Disney Interactive Studios     0.35     0.21     0.00
## 951              Disney Interactive Studios     0.19     0.31     0.00
## 952              Disney Interactive Studios     0.09     0.02     0.00
## 953              Disney Interactive Studios     0.18     0.05     0.00
## 954              Disney Interactive Studios     0.12     0.05     0.00
## 955                              Activision     0.19     0.00     0.00
## 956                              Activision     0.11     0.00     0.00
## 957                              Activision     0.10     0.00     0.00
## 958                              Activision     0.08     0.00     0.00
## 959                              Activision     0.04     0.03     0.00
## 960                              Activision     2.80     3.30     0.14
## 961                              Activision     3.21     1.53     0.01
## 962                              Activision     1.54     1.94     0.19
## 963                              Activision     2.75     1.18     0.00
## 964                              Activision     0.14     0.23     0.00
## 965                              Activision     9.67     3.73     0.11
## 966                              Activision     5.98     4.44     0.48
## 967                              Activision     0.58     0.81     0.00
## 968                              Activision     0.82     0.47     0.00
## 969                              Activision     0.54     0.05     0.00
## 970                              Activision     5.77     5.81     0.35
## 971                              Activision     4.52     2.09     0.01
## 972                              Activision     0.49     0.96     0.07
## 973                              Activision     1.11     0.48     0.00
## 974                              Activision     0.00     0.22     0.00
## 975                              Activision     4.79     1.90     0.00
## 976                              Activision     2.72     1.87     0.00
## 977                              Activision     1.20     0.59     0.00
## 978                              Activision     0.57     0.26     0.00
## 979                              Activision     0.02     0.13     0.00
## 980                                    Sega     0.05     0.00     0.00
## 981                                    Sega     0.05     0.00     0.00
## 982                                    Sega     0.10     0.07     0.00
## 983                                    Sega     0.11     0.05     0.00
## 984                                    Sega     0.05     0.02     0.00
## 985                                 Ubisoft     0.20     0.01     0.00
## 986                                 Ubisoft     0.11     0.00     0.00
## 987                                 Ubisoft     0.09     0.01     0.00
## 988                                 Ubisoft     0.07     0.01     0.00
## 989                                 Ubisoft     0.07     0.00     0.00
## 990                           Vivendi Games     0.25     0.25     0.00
## 991                           Vivendi Games     0.42     0.02     0.00
## 992                           Vivendi Games     0.40     0.03     0.00
## 993                           Vivendi Games     0.34     0.01     0.00
## 994                           Vivendi Games     0.27     0.02     0.00
## 995                           Vivendi Games     0.25     0.19     0.00
## 996                           Vivendi Games     0.22     0.21     0.00
## 997                           Vivendi Games     0.36     0.06     0.00
## 998                           Vivendi Games     0.11     0.22     0.00
## 999                           Vivendi Games     0.39     0.00     0.00
## 1000                     Namco Bandai Games     0.40     0.36     0.40
## 1001                     Namco Bandai Games     0.48     0.20     0.01
## 1002                     Namco Bandai Games     0.20     0.22     0.08
## 1003                     Namco Bandai Games     0.13     0.07     0.00
## 1004                     Namco Bandai Games     0.08     0.08     0.00
## 1005                             Tecmo Koei     0.23     0.15     0.20
## 1006                             Tecmo Koei     0.09     0.13     0.08
## 1007                         Ubisoft Annecy     0.19     0.08     0.03
## 1008                             Tecmo Koei     0.00     0.05     0.03
## 1009                             Tecmo Koei     0.04     0.03     0.01
## 1010                             Activision     2.43     2.15     0.00
## 1011                             Activision     0.71     0.83     0.15
## 1012                             Activision     0.49     0.88     0.06
## 1013                             Activision     0.89     0.44     0.00
## 1014                             Activision     0.35     0.24     0.00
## 1015                     Bethesda Softworks     1.06     0.52     0.01
## 1016                     Bethesda Softworks     0.72     0.54     0.04
## 1017                     Bethesda Softworks     0.26     0.19     0.00
## 1018                     Bethesda Softworks     0.11     0.18     0.02
## 1019                     Bethesda Softworks     0.08     0.05     0.00
## 1020             Disney Interactive Studios     0.21     0.36     0.00
## 1021             Disney Interactive Studios     0.14     0.25     0.00
## 1022             Disney Interactive Studios     0.19     0.21     0.00
## 1023             Disney Interactive Studios     0.20     0.21     0.00
## 1024             Disney Interactive Studios     0.18     0.10     0.00
## 1025                        Electronic Arts     0.72     0.86     0.08
## 1026                        Electronic Arts     0.55     0.28     0.00
## 1027                        Electronic Arts     0.32     0.34     0.00
## 1028                        Electronic Arts     0.26     0.23     0.05
## 1029                        Electronic Arts     0.35     0.16     0.00
## 1030                             Activision     0.10     0.04     0.00
## 1031                             Activision     0.09     0.03     0.00
## 1032                             Activision     0.08     0.03     0.00
## 1033                             Activision     0.06     0.03     0.00
## 1034                             Activision     0.05     0.01     0.00
## 1035                            Codemasters     0.12     0.75     0.11
## 1036                            Codemasters     0.11     0.51     0.01
## 1037                            Codemasters     0.00     0.15     0.00
## 1038                            Codemasters     0.07     0.08     0.00
## 1039                            Codemasters     0.03     0.08     0.01
## 1040                        Electronic Arts     1.11     6.06     0.06
## 1041                        Electronic Arts     0.88     2.11     0.00
## 1042                        Electronic Arts     0.40     1.98     0.05
## 1043                        Electronic Arts     0.55     1.01     0.00
## 1044                        Electronic Arts     0.04     0.13     0.00
## 1045                        Electronic Arts     0.28     3.75     0.06
## 1046                        Electronic Arts     0.17     1.26     0.00
## 1047                        Electronic Arts     0.02     0.29     0.01
## 1048                        Electronic Arts     0.03     0.13     0.00
## 1049                        Electronic Arts     0.00     0.05     0.00
## 1050                        Electronic Arts     0.78     2.55     0.04
## 1051                        Electronic Arts     0.29     0.38     0.00
## 1052                        Electronic Arts     0.10     0.01     0.00
## 1053                        Electronic Arts     0.05     0.02     0.00
## 1054                        Electronic Arts     0.05     0.00     0.00
## 1055                        Electronic Arts     0.11     0.92     0.00
## 1056                        Electronic Arts     0.17     0.65     0.00
## 1057                        Electronic Arts     0.15     0.12     0.00
## 1058                        Electronic Arts     0.08     0.02     0.00
## 1059                        Electronic Arts     0.04     0.01     0.00
## 1060                        Electronic Arts     0.17     0.13     0.02
## 1061                        Electronic Arts     0.07     0.06     0.00
## 1062                        Electronic Arts     0.09     0.02     0.00
## 1063                        Electronic Arts     0.06     0.02     0.00
## 1064                        Electronic Arts     0.04     0.00     0.00
## 1065                   Take-Two Interactive     0.19     0.15     0.00
## 1066                   Take-Two Interactive     0.12     0.02     0.00
## 1067                   Take-Two Interactive     0.10     0.01     0.00
## 1068                   Take-Two Interactive     0.04     0.01     0.00
## 1069                   Take-Two Interactive     0.04     0.00     0.00
## 1070                                Ubisoft     1.12     2.12     0.10
## 1071                                Ubisoft     0.79     0.68     0.01
## 1072                                Ubisoft     0.33     0.79     0.08
## 1073                                Ubisoft     0.45     0.44     0.00
## 1074                                Ubisoft     0.15     0.42     0.00
## 1075                 Focus Home Interactive     0.08     1.02     0.00
## 1076                             Koch Media     0.11     0.28     0.00
## 1077                             Koch Media     0.21     0.16     0.00
## 1078                             Koch Media     0.10     0.20     0.00
## 1079                             Koch Media     0.10     0.07     0.00
## 1080                        Electronic Arts     0.81     0.59     0.01
## 1081                        Electronic Arts     1.07     0.40     0.00
## 1082                        Electronic Arts     1.33     0.03     0.01
## 1083                        Electronic Arts     0.46     0.02     0.00
## 1084                        Electronic Arts     0.26     0.06     0.00
## 1085                             Activision     0.07     0.02     0.00
## 1086                             Activision     0.07     0.01     0.00
## 1087                             Activision     0.05     0.01     0.00
## 1088                             Activision     0.05     0.01     0.00
## 1089                             Activision     0.05     0.01     0.00
## 1090                   Take-Two Interactive     7.01     9.27     0.97
## 1091                   Take-Two Interactive     9.63     5.31     0.06
## 1092                   Take-Two Interactive     3.80     5.81     0.36
## 1093                   Take-Two Interactive     2.66     2.01     0.00
## 1094                   Take-Two Interactive     0.36     0.64     0.00
## 1095 Warner Bros. Interactive Entertainment     0.09     0.05     0.00
## 1096 Warner Bros. Interactive Entertainment     0.07     0.05     0.00
## 1097 Warner Bros. Interactive Entertainment     0.09     0.03     0.00
## 1098 Warner Bros. Interactive Entertainment     0.08     0.02     0.00
## 1099 Warner Bros. Interactive Entertainment     0.06     0.04     0.00
## 1100                             Activision     3.49     0.01     0.01
## 1101                             Activision     3.06     1.12     0.00
## 1102                             Activision     3.19     0.92     0.01
## 1103                             Activision     1.40     0.54     0.02
## 1104                                  Aspyr     0.01     0.00     0.00
## 1105                             Activision     0.32     0.35     0.00
## 1106                             Activision     0.29     0.17     0.00
## 1107                             Activision     0.09     0.14     0.00
## 1108                             Activision     0.12     0.10     0.00
## 1109                             Activision     0.12     0.04     0.00
## 1110                             Activision     2.33     0.97     0.00
## 1111                             Activision     1.78     0.64     0.00
## 1112                             Activision     1.10     0.56     0.00
## 1113                             Activision     1.00     0.03     0.00
## 1114                                  Aspyr     0.00     0.03     0.00
## 1115 Warner Bros. Interactive Entertainment     0.07     0.01     0.00
## 1116 Warner Bros. Interactive Entertainment     0.09     0.01     0.00
## 1117 Warner Bros. Interactive Entertainment     0.08     0.01     0.00
## 1118 Warner Bros. Interactive Entertainment     0.09     0.02     0.00
## 1119 Warner Bros. Interactive Entertainment     0.08     0.02     0.00
## 1120                        Electronic Arts     0.22     0.28     0.00
## 1121                        Electronic Arts     0.21     0.20     0.00
## 1122                        Electronic Arts     0.20     0.19     0.00
## 1123                        Electronic Arts     0.13     0.21     0.00
## 1124                        Electronic Arts     0.08     0.02     0.00
## 1125                        Electronic Arts     0.18     0.14     0.00
## 1126                        Electronic Arts     0.19     0.12     0.00
## 1127                        Electronic Arts     0.14     0.15     0.00
## 1128                        Electronic Arts     0.12     0.10     0.00
## 1129                        Electronic Arts     0.05     0.04     0.00
## 1130                        Electronic Arts     0.50     0.39     0.00
## 1131                        Electronic Arts     0.37     0.14     0.00
## 1132                        Electronic Arts     0.29     0.08     0.00
## 1133                        Electronic Arts     0.14     0.04     0.00
## 1134                        Electronic Arts     0.00     0.03     0.00
## 1135                           Little Orbit     0.05     0.20     0.00
## 1136                           Little Orbit     0.04     0.19     0.00
## 1137                           Little Orbit     0.05     0.13     0.00
## 1138                           Little Orbit     0.03     0.08     0.00
## 1139                           Little Orbit     0.04     0.05     0.00
## 1140 Warner Bros. Interactive Entertainment     0.97     0.34     0.00
## 1141 Warner Bros. Interactive Entertainment     0.48     0.53     0.01
## 1142 Warner Bros. Interactive Entertainment     0.46     0.29     0.00
## 1143 Warner Bros. Interactive Entertainment     0.10     0.08     0.00
## 1144 Warner Bros. Interactive Entertainment     0.11     0.01     0.00
## 1145                                   Sega     0.14     0.19     0.00
## 1146                                   Sega     0.18     0.12     0.00
## 1147                                   Sega     0.15     0.16     0.00
## 1148                                   Sega     0.15     0.15     0.00
## 1149                                   Sega     0.15     0.10     0.00
## 1150                     Hasbro Interactive     0.39     0.27     0.00
## 1151                                    THQ     0.56     0.00     0.00
## 1152                                  Atari     0.24     0.18     0.00
## 1153                                    THQ     0.18     0.00     0.00
## 1154                                GameTek     0.08     0.02     0.00
## 1155           Konami Digital Entertainment     0.24     0.16     0.00
## 1156           Konami Digital Entertainment     0.17     0.13     0.00
## 1157           Konami Digital Entertainment     0.12     0.00     0.00
## 1158           Konami Digital Entertainment     0.07     0.03     0.00
## 1159           Konami Digital Entertainment     0.06     0.02     0.00
## 1160 Warner Bros. Interactive Entertainment     0.22     0.32     0.00
## 1161 Warner Bros. Interactive Entertainment     0.24     0.28     0.00
## 1162 Warner Bros. Interactive Entertainment     0.15     0.30     0.00
## 1163 Warner Bros. Interactive Entertainment     0.30     0.16     0.00
## 1164 Warner Bros. Interactive Entertainment     0.21     0.13     0.00
## 1165                      Eidos Interactive     1.98     1.14     0.01
## 1166                      Eidos Interactive     1.09     0.28     0.00
## 1167                      Eidos Interactive     0.83     0.28     0.00
## 1168                      Eidos Interactive     0.82     0.30     0.00
## 1169                      Eidos Interactive     0.00     0.01     0.00
## 1170                             Activision     0.78     0.45     0.00
## 1171                             Activision     0.62     0.24     0.00
## 1172                             Activision     0.52     0.13     0.00
## 1173                             Activision     0.25     0.04     0.00
## 1174                             Activision     0.21     0.06     0.00
## 1175                        Electronic Arts     2.52     0.09     0.00
## 1176                        Electronic Arts     2.03     0.13     0.00
## 1177                        Electronic Arts     0.88     0.00     0.00
## 1178                        Electronic Arts     0.63     0.04     0.00
## 1179                        Electronic Arts     0.50     0.08     0.00
## 1180                        Electronic Arts     2.38     0.12     0.00
## 1181                        Electronic Arts     2.04     0.15     0.00
## 1182                        Electronic Arts     0.41     0.02     0.00
## 1183                        Electronic Arts     0.35     0.00     0.00
## 1184                                Unknown     0.70     0.00     0.00
## 1185                        Electronic Arts     4.18     0.26     0.01
## 1186                        Electronic Arts     1.61     0.03     0.00
## 1187                        Electronic Arts     0.54     0.14     0.00
## 1188                        Electronic Arts     0.28     0.10     0.00
## 1189                        Electronic Arts     0.24     0.00     0.00
## 1190                                  Spike     0.37     0.01     0.00
## 1191                                  Spike     0.34     0.00     0.00
## 1192                   Take-Two Interactive     0.24     0.07     0.00
## 1193                   Take-Two Interactive     0.13     0.03     0.00
## 1194                                Unknown     0.11     0.00     0.00
## 1195                     Bethesda Softworks     0.56     0.00     0.00
## 1196                                Unknown     0.03     0.00     0.00
## 1197                     Bethesda Softworks     0.28     0.00     0.00
## 1198                     Bethesda Softworks     0.07     0.06     0.00
## 1199                   Take-Two Interactive     0.13     0.00     0.00
## 1200                                  Spike     0.56     0.00     0.00
## 1201                   Take-Two Interactive     0.25     0.00     0.00
## 1202                                  Spike     0.16     0.00     0.00
## 1203                                  Spike     0.08     0.06     0.00
## 1204                                  Spike     0.08     0.00     0.00
## 1205                        Electronic Arts     0.64     0.02     0.00
## 1206                        Electronic Arts     0.30     0.08     0.00
## 1207                        Electronic Arts     0.29     0.00     0.00
## 1208                        Electronic Arts     0.21     0.06     0.00
## 1209                        Electronic Arts     0.08     0.00     0.00
## 1210                                    THQ     0.22     0.04     0.00
## 1211                                    THQ     0.17     0.03     0.00
## 1212                                    THQ     0.12     0.03     0.00
## 1213                                    THQ     0.12     0.02     0.00
## 1214                                    THQ     0.07     0.02     0.00
## 1215           Konami Digital Entertainment     1.08     1.35     0.48
## 1216           Konami Digital Entertainment     0.37     0.26     0.01
## 1217           Konami Digital Entertainment     0.21     0.18     0.22
## 1218           Konami Digital Entertainment     0.12     0.08     0.00
## 1219           Konami Digital Entertainment     0.00     0.07     0.00
## 1220                            Deep Silver     0.22     0.30     0.04
## 1221                            Deep Silver     0.14     0.20     0.03
## 1222                            Deep Silver     0.17     0.16     0.00
## 1223                            Deep Silver     0.15     0.13     0.00
## 1224                            Deep Silver     0.06     0.11     0.00
## 1225 Warner Bros. Interactive Entertainment     1.01     1.41     0.05
## 1226 Warner Bros. Interactive Entertainment     0.72     0.50     0.01
## 1227 Warner Bros. Interactive Entertainment     0.20     0.33     0.01
## 1228 Warner Bros. Interactive Entertainment     0.28     0.21     0.00
## 1229 Warner Bros. Interactive Entertainment     0.12     0.20     0.00
## 1230                                 Mojang     0.46     0.38     0.00
## 1231                                 Mojang     0.25     0.33     0.00
## 1232                                 Mojang     0.23     0.33     0.00
## 1233                                 Mojang     0.29     0.21     0.00
## 1234                                 Mojang     0.02     0.05     0.00
## 1235                      Eidos Interactive     0.17     0.17     0.00
## 1236                      Eidos Interactive     0.14     0.16     0.00
## 1237                      Eidos Interactive     0.17     0.15     0.00
## 1238                      Eidos Interactive     0.12     0.14     0.00
## 1239                      Eidos Interactive     0.00     0.02     0.00
## 1240                             Activision     0.12     0.09     0.00
## 1241                             Activision     0.18     0.00     0.00
## 1242                             Activision     0.15     0.00     0.00
## 1243                             Activision     0.13     0.00     0.00
## 1244                             Activision     0.01     0.00     0.00
## 1245                             Activision     0.50     0.02     0.00
## 1246                             Activision     0.35     0.00     0.00
## 1247                             Activision     0.21     0.02     0.00
## 1248                             Activision     0.11     0.00     0.00
## 1249                             Activision     0.07     0.00     0.00
## 1250 Warner Bros. Interactive Entertainment     1.98     0.55     0.00
## 1251                    Arena Entertainment     1.95     0.63     0.00
## 1252 Warner Bros. Interactive Entertainment     1.63     0.33     0.00
## 1253 Warner Bros. Interactive Entertainment     0.47     0.18     0.00
## 1254                  Acclaim Entertainment     0.01     0.00     0.00
## 1255                     Namco Bandai Games     0.06     0.05     0.14
## 1256                                 Capcom     0.05     0.11     0.00
## 1257                                    THQ     0.07     0.02     0.00
## 1258                                    THQ     0.04     0.01     0.00
## 1259            Sony Computer Entertainment     0.03     0.00     0.00
## 1260                            Square Enix     0.09     0.16     0.02
## 1261                            Square Enix     0.08     0.07     0.00
## 1262                            Square Enix     0.05     0.06     0.02
## 1263                            Square Enix     0.06     0.04     0.00
## 1264                            Square Enix     0.00     0.05     0.00
## 1265                                Red Orb     0.02     2.79     0.00
## 1266                           Midway Games     0.09     0.00     0.00
## 1267                              Psygnosis     0.00     0.00     0.07
## 1268                                Sunsoft     0.00     0.00     0.06
## 1269                           Midway Games     0.00     0.01     0.00
## 1270                   Take-Two Interactive     0.88     0.02     0.00
## 1271                   Take-Two Interactive     0.75     0.01     0.01
## 1272                   Take-Two Interactive     0.33     0.01     0.00
## 1273                   Take-Two Interactive     0.36     0.00     0.00
## 1274                   Take-Two Interactive     0.30     0.00     0.00
## 1275                   Take-Two Interactive     2.31     0.14     0.01
## 1276                   Take-Two Interactive     1.61     0.27     0.05
## 1277                   Take-Two Interactive     0.30     0.03     0.00
## 1278                   Take-Two Interactive     0.22     0.03     0.00
## 1279                   Take-Two Interactive     0.09     0.05     0.00
## 1280                   Take-Two Interactive     2.60     0.21     0.01
## 1281                   Take-Two Interactive     1.72     0.44     0.05
## 1282                   Take-Two Interactive     0.39     0.03     0.00
## 1283                   Take-Two Interactive     0.08     0.04     0.00
## 1284                   Take-Two Interactive     0.00     0.02     0.00
## 1285                   Take-Two Interactive     2.48     0.65     0.03
## 1286                   Take-Two Interactive     1.93     0.14     0.00
## 1287                   Take-Two Interactive     0.77     0.10     0.00
## 1288                   Take-Two Interactive     0.44     0.19     0.03
## 1289                   Take-Two Interactive     0.02     0.06     0.00
## 1290                        Electronic Arts     0.59     0.02     0.01
## 1291                        Electronic Arts     0.56     0.02     0.01
## 1292                        Electronic Arts     0.47     0.00     0.00
## 1293                        Electronic Arts     0.28     0.00     0.00
## 1294                        Electronic Arts     0.17     0.00     0.00
## 1295                        Electronic Arts     0.73     0.91     0.03
## 1296                        Electronic Arts     0.33     0.74     0.05
## 1297                        Electronic Arts     0.37     0.38     0.01
## 1298                        Electronic Arts     0.45     0.17     0.00
## 1299                        Electronic Arts     0.04     0.19     0.00
## 1300                        Electronic Arts     3.27     2.83     0.08
## 1301                        Electronic Arts     1.09     0.55     0.00
## 1302                        Electronic Arts     0.69     0.48     0.01
## 1303                        Electronic Arts     0.21     0.08     0.00
## 1304                        Electronic Arts     0.00     0.04     0.00
## 1305                        Electronic Arts     0.58     1.06     0.03
## 1306                        Electronic Arts     0.63     0.58     0.00
## 1307                        Electronic Arts     0.09     0.21     0.00
## 1308                        Electronic Arts     0.13     0.13     0.01
## 1309                        Electronic Arts     0.09     0.09     0.00
## 1310                             Activision     0.45     0.02     0.00
## 1311                             Activision     0.27     0.07     0.00
## 1312                             Activision     0.25     0.01     0.00
## 1313                             Activision     0.19     0.07     0.00
## 1314                             Activision     0.07     0.02     0.00
## 1315           Konami Digital Entertainment     0.13     0.07     0.26
## 1316           Konami Digital Entertainment     0.11     1.34     0.40
## 1317           Konami Digital Entertainment     0.13     0.76     0.03
## 1318           Konami Digital Entertainment     0.09     0.26     0.05
## 1319           Konami Digital Entertainment     0.04     0.33     0.26
## 1320                     Namco Bandai Games     0.10     0.08     0.00
## 1321                     Namco Bandai Games     0.16     0.00     0.00
## 1322                     Namco Bandai Games     0.11     0.04     0.00
## 1323                     Namco Bandai Games     0.07     0.02     0.00
## 1324                     Namco Bandai Games     0.07     0.00     0.00
## 1325                              505 Games     0.33     0.21     0.00
## 1326                              505 Games     0.21     0.15     0.00
## 1327                              505 Games     0.09     0.14     0.00
## 1328                              505 Games     0.08     0.07     0.00
## 1329                              505 Games     0.04     0.00     0.00
## 1330                                Play It     0.16     0.12     0.00
## 1331                                Play It     0.20     0.01     0.00
## 1332               System 3 Arcade Software     0.13     0.00     0.00
## 1333                    Crave Entertainment     0.06     0.02     0.00
## 1334                    Crave Entertainment     0.04     0.01     0.00
## 1335               System 3 Arcade Software     0.42     0.03     0.00
## 1336                    Crave Entertainment     0.20     0.00     0.00
## 1337                    Crave Entertainment     0.11     0.00     0.00
## 1338               System 3 Arcade Software     0.09     0.01     0.00
## 1339                    Crave Entertainment     0.09     0.00     0.00
## 1340                        Electronic Arts     0.51     0.54     0.00
## 1341                        Electronic Arts     0.22     0.40     0.01
## 1342                        Electronic Arts     0.39     0.23     0.00
## 1343                        Electronic Arts     0.21     0.29     0.01
## 1344                        Electronic Arts     0.00     0.02     0.00
## 1345           Konami Digital Entertainment     0.03     0.43     0.51
## 1346           Konami Digital Entertainment     0.06     0.16     0.00
## 1347           Konami Digital Entertainment     0.00     0.00     0.19
## 1348           Konami Digital Entertainment     0.00     0.03     0.14
## 1349           Konami Digital Entertainment     0.00     0.09     0.00
## 1350           Konami Digital Entertainment     0.09     0.43     0.11
## 1351           Konami Digital Entertainment     0.10     0.23     0.22
## 1352           Konami Digital Entertainment     0.05     0.10     0.00
## 1353           Konami Digital Entertainment     0.02     0.10     0.00
## 1354           Konami Digital Entertainment     0.00     0.06     0.00
## 1355           Konami Digital Entertainment     0.13     0.42     0.13
## 1356           Konami Digital Entertainment     0.08     0.18     0.15
## 1357           Konami Digital Entertainment     0.04     0.08     0.00
## 1358           Konami Digital Entertainment     0.03     0.06     0.00
## 1359           Konami Digital Entertainment     0.00     0.04     0.00
## 1360                                 Capcom     0.88     0.97     0.88
## 1361                                 Capcom     1.11     0.63     0.07
## 1362                                 Capcom     0.05     0.00     0.00
## 1363                                 Capcom     0.00     0.04     0.00
## 1364                                 Capcom     0.03     0.00     0.00
## 1365                                 Capcom     0.30     0.22     0.30
## 1366                                 Capcom     0.14     0.32     0.22
## 1367                                 Capcom     0.12     0.11     0.02
## 1368                                 Capcom     0.07     0.08     0.03
## 1369                                 Capcom     0.00     0.03     0.00
## 1370                                 Capcom     0.13     0.24     0.10
## 1371                                 Capcom     0.06     0.08     0.16
## 1372                                 Capcom     0.01     0.05     0.06
## 1373                                 Capcom     0.07     0.02     0.00
## 1374                                 Capcom     0.04     0.04     0.00
## 1375                       Milestone S.r.l.     0.03     0.13     0.03
## 1376                       Milestone S.r.l.     0.04     0.05     0.00
## 1377                       Milestone S.r.l.     0.00     0.06     0.01
## 1378                       Milestone S.r.l.     0.00     0.03     0.00
## 1379                       Milestone S.r.l.     0.00     0.02     0.00
## 1380                                Ubisoft     0.51     0.27     0.05
## 1381                                Ubisoft     0.69     0.17     0.00
## 1382                                Ubisoft     0.35     0.24     0.00
## 1383                                Ubisoft     0.34     0.17     0.00
## 1384                                Ubisoft     0.29     0.08     0.00
## 1385                     Bigben Interactive     0.02     0.09     0.00
## 1386                     Bigben Interactive     0.03     0.06     0.00
## 1387                     Bigben Interactive     0.03     0.05     0.00
## 1388                     Bigben Interactive     0.00     0.05     0.00
## 1389                     Bigben Interactive     0.00     0.05     0.00
## 1390                            Deep Silver     1.01     0.53     0.01
## 1391                            Deep Silver     0.56     0.44     0.09
## 1392                            Deep Silver     0.13     0.17     0.03
## 1393                            Deep Silver     0.10     0.09     0.00
## 1394                            Deep Silver     0.11     0.06     0.00
## 1395                                    THQ     0.12     0.10     0.00
## 1396                                    THQ     0.13     0.05     0.00
## 1397                                    THQ     0.12     0.03     0.00
## 1398                                    THQ     0.07     0.02     0.00
## 1399                                    THQ     0.06     0.02     0.00
## 1400                             Activision     0.08     0.06     0.00
## 1401                             Activision     0.07     0.02     0.00
## 1402                             Activision     0.06     0.02     0.00
## 1403                             Activision     0.05     0.00     0.00
## 1404                             Activision     0.01     0.00     0.00
## 1405                                   Sega     1.75     0.86     0.00
## 1406                                   Sega     0.28     0.65     0.00
## 1407                                   Sega     0.29     0.37     0.00
## 1408                                   Sega     0.13     0.20     0.00
## 1409                                   Sega     0.10     0.00     0.00
## 1410                                Ubisoft     0.31     0.24     0.01
## 1411                                Ubisoft     0.26     0.03     0.00
## 1412                                Ubisoft     0.15     0.12     0.00
## 1413                                Ubisoft     0.21     0.00     0.00
## 1414                                Ubisoft     0.48     0.26     0.00
## 1415                 Focus Home Interactive     0.08     0.14     0.00
## 1416                 Focus Home Interactive     0.03     0.04     0.00
## 1417                 Focus Home Interactive     0.03     0.04     0.00
## 1418                 Focus Home Interactive     0.03     0.03     0.00
## 1419                 Focus Home Interactive     0.00     0.05     0.00
## 1420                             Activision     0.24     0.19     0.00
## 1421                             Activision     0.24     0.09     0.00
## 1422                             Activision     0.17     0.04     0.00
## 1423                             Activision     0.17     0.00     0.00
## 1424                             Activision     0.07     0.02     0.00
## 1425                             Activision     0.54     0.10     0.00
## 1426                             Activision     0.40     0.02     0.00
## 1427                             Activision     0.08     0.15     0.00
## 1428                             Activision     0.26     0.01     0.00
## 1429                             Activision     0.26     0.02     0.00
## 1430                                  Maxis     1.20     0.84     0.00
## 1431                                  Maxis     0.68     0.46     0.00
## 1432                                    THQ     0.00     0.00     0.49
## 1433                                   Sega     0.00     0.00     0.28
## 1434                 Zoo Digital Publishing     0.08     0.03     0.00
## 1435                             Activision     1.56     0.88     0.00
## 1436                             Activision     0.75     0.45     0.00
## 1437                             Activision     0.35     0.52     0.00
## 1438                             Activision     0.23     0.12     0.00
## 1439                             Activision     0.12     0.01     0.00
## 1440                             Activision     1.40     1.14     0.00
## 1441                             Activision     0.53     0.35     0.00
## 1442                             Activision     0.39     0.40     0.00
## 1443                             Activision     0.32     0.20     0.00
## 1444                             Activision     0.05     0.03     0.00
## 1445                            Square Enix     0.31     0.50     0.05
## 1446                            Square Enix     0.38     0.41     0.01
## 1447                            Square Enix     0.16     0.20     0.00
## 1448                            Square Enix     0.10     0.09     0.00
## 1449                            Square Enix     0.06     0.05     0.00
## 1450                             Activision     0.18     0.05     0.00
## 1451                             Activision     0.13     0.07     0.00
## 1452                             Activision     0.12     0.01     0.00
## 1453                             Activision     0.08     0.03     0.00
## 1454                             Activision     0.06     0.02     0.00
## 1455                              LucasArts     0.80     0.53     0.00
## 1456                              LucasArts     0.95     0.40     0.00
## 1457                              LucasArts     0.54     0.19     0.00
## 1458                              LucasArts     0.18     0.04     0.00
## 1459                              LucasArts     0.03     0.00     0.00
## 1460             Disney Interactive Studios     0.27     0.10     0.00
## 1461             Disney Interactive Studios     0.24     0.05     0.00
## 1462             Disney Interactive Studios     0.12     0.04     0.00
## 1463             Disney Interactive Studios     0.09     0.02     0.00
## 1464             Disney Interactive Studios     0.06     0.00     0.00
## 1465                   Take-Two Interactive     0.25     0.19     0.00
## 1466                   Take-Two Interactive     0.34     0.00     0.00
## 1467                   Take-Two Interactive     0.18     0.08     0.00
## 1468                   Take-Two Interactive     0.15     0.00     0.00
## 1469                   Take-Two Interactive     0.10     0.00     0.00
## 1470             Disney Interactive Studios     0.20     0.15     0.00
## 1471             Disney Interactive Studios     0.31     0.02     0.00
## 1472             Disney Interactive Studios     0.19     0.01     0.00
## 1473             Disney Interactive Studios     0.16     0.01     0.00
## 1474             Disney Interactive Studios     0.14     0.02     0.00
## 1475             Disney Interactive Studios     0.36     0.01     0.00
## 1476             Disney Interactive Studios     0.15     0.04     0.00
## 1477             Disney Interactive Studios     0.15     0.02     0.00
## 1478             Disney Interactive Studios     0.22     0.06     0.00
## 1479             Disney Interactive Studios     0.48     0.18     0.00
## 1480                     Bethesda Softworks     0.55     0.84     0.11
## 1481                     Bethesda Softworks     0.26     0.39     0.12
## 1482                     Bethesda Softworks     0.35     0.25     0.00
## 1483                     Bethesda Softworks     0.25     0.20     0.01
## 1484                     Bethesda Softworks     0.09     0.16     0.00
## 1485                          Vivendi Games     0.35     0.18     0.00
## 1486                          Vivendi Games     0.26     0.15     0.00
## 1487                          Vivendi Games     0.19     0.19     0.00
## 1488                          Vivendi Games     0.12     0.01     0.00
## 1489                          Vivendi Games     0.16     0.13     0.00
## 1490 Warner Bros. Interactive Entertainment     0.17     0.05     0.00
## 1491 Warner Bros. Interactive Entertainment     0.10     0.04     0.00
## 1492 Warner Bros. Interactive Entertainment     0.10     0.02     0.00
## 1493 Warner Bros. Interactive Entertainment     0.07     0.02     0.00
## 1494 Warner Bros. Interactive Entertainment     0.03     0.02     0.00
## 1495                                Ubisoft     0.00     0.21     0.00
## 1496                                Ubisoft     0.03     0.09     0.00
## 1497                                Ubisoft     0.02     0.07     0.00
## 1498                                Ubisoft     0.00     0.09     0.00
## 1499                                Ubisoft     0.04     0.04     0.00
## 1500                         Telltale Games     0.10     0.09     0.01
## 1501                         Telltale Games     0.09     0.09     0.00
## 1502                         Telltale Games     0.10     0.00     0.01
## 1503                         Telltale Games     0.08     0.05     0.00
## 1504                         Telltale Games     0.04     0.07     0.00
## 1505                         Telltale Games     0.10     0.07     0.00
## 1506                         Telltale Games     0.05     0.03     0.00
## 1507                         Telltale Games     0.05     0.02     0.00
## 1508                         Telltale Games     0.05     0.00     0.00
## 1509                         Telltale Games     0.01     0.03     0.00
## 1510                            Square Enix     0.28     0.37     0.03
## 1511                            Square Enix     0.26     0.15     0.00
## 1512                            Square Enix     0.10     0.20     0.02
## 1513                            Square Enix     0.14     0.13     0.00
## 1514                            Square Enix     0.00     0.09     0.00
## 1515                                   Sega     0.11     0.04     0.00
## 1516                                   Sega     0.07     0.06     0.00
## 1517                                   Sega     0.09     0.04     0.00
## 1518                                   Sega     0.09     0.03     0.00
## 1519                                   Sega     0.06     0.03     0.00
## 1520                              LucasArts     0.39     0.02     0.00
## 1521                              LucasArts     0.20     0.16     0.00
## 1522                              LucasArts     0.13     0.02     0.00
## 1523                              LucasArts     0.09     0.00     0.00
## 1524                              LucasArts     0.03     0.01     0.00
## 1525                        Electronic Arts     0.74     0.03     0.00
## 1526                        Electronic Arts     0.35     0.11     0.00
## 1527                        Electronic Arts     0.28     0.00     0.00
## 1528                        Electronic Arts     0.18     0.00     0.00
## 1529                        Electronic Arts     0.08     0.02     0.00
## 1530                        Electronic Arts     0.61     0.37     0.00
## 1531                        Electronic Arts     0.42     0.25     0.00
## 1532                        Electronic Arts     0.39     0.20     0.00
## 1533                        Electronic Arts     0.12     0.01     0.00
## 1534                        Electronic Arts     0.12     0.07     0.00
## 1535                                Ubisoft     0.58     0.24     0.01
## 1536                                Ubisoft     0.32     0.22     0.01
## 1537                                Ubisoft     0.10     0.01     0.00
## 1538                                Ubisoft     0.08     0.01     0.00
## 1539                                Ubisoft     0.00     0.02     0.00
## 1540                      Eidos Interactive     0.12     0.63     0.00
## 1541                      Eidos Interactive     0.21     0.23     0.00
## 1542                      Eidos Interactive     0.41     0.02     0.00
## 1543                      Eidos Interactive     0.12     0.23     0.00
## 1544                      Eidos Interactive     0.00     0.03     0.00
## 1545                             Activision     0.55     0.02     0.00
## 1546                             Activision     0.49     0.02     0.00
## 1547                             Activision     0.36     0.05     0.00
## 1548                             Activision     0.22     0.01     0.00
## 1549                             Activision     0.21     0.01     0.00
## 1550             Disney Interactive Studios     0.93     0.97     0.02
## 1551             Disney Interactive Studios     0.64     0.63     0.00
## 1552             Disney Interactive Studios     0.51     0.42     0.00
## 1553             Disney Interactive Studios     0.41     0.29     0.00
## 1554             Disney Interactive Studios     0.27     0.25     0.00
## 1555                             Activision     0.07     0.10     0.01
## 1556                             Activision     0.09     0.07     0.00
## 1557                             Activision     0.04     0.05     0.01
## 1558                             Activision     0.06     0.03     0.00
## 1559                             Activision     0.05     0.01     0.00
## 1560                             Activision     0.10     0.08     0.00
## 1561                             Activision     0.09     0.03     0.00
## 1562                             Activision     0.03     0.07     0.00
## 1563                             Activision     0.06     0.02     0.00
## 1564                             Activision     0.00     0.03     0.00
## 1565                             Activision     0.63     0.37     0.00
## 1566                             Activision     0.23     0.27     0.00
## 1567                             Activision     0.51     0.05     0.00
## 1568                             Activision     0.52     0.03     0.00
## 1569                             Activision     0.32     0.04     0.01
## 1570                             Activision     0.60     0.02     0.00
## 1571                             Activision     0.26     0.11     0.00
## 1572                             Activision     0.29     0.07     0.00
## 1573                             Activision     0.22     0.08     0.00
## 1574                             Activision     0.14     0.00     0.00
## 1575                     Bigben Interactive     0.02     0.09     0.00
## 1576                     Bigben Interactive     0.00     0.06     0.00
## 1577                     Bigben Interactive     0.00     0.04     0.00
## 1578                     Bigben Interactive     0.00     0.02     0.00
## 1579                     Bigben Interactive     0.00     0.01     0.00
## 1580                                    THQ     0.44     0.46     0.01
## 1581                                    THQ     0.44     0.36     0.00
## 1582                                    THQ     0.22     0.31     0.00
## 1583                                    THQ     0.30     0.13     0.00
## 1584                                    THQ     0.24     0.07     0.00
## 1585                     Hasbro Interactive     0.99     0.22     0.00
## 1586                                    THQ     0.89     0.04     0.00
## 1587                                    THQ     0.41     0.00     0.00
## 1588                   Take-Two Interactive     0.20     0.05     0.00
## 1589                                Unknown     0.47     0.36     0.00
## 1590           Konami Digital Entertainment     0.10     2.39     1.05
## 1591           Konami Digital Entertainment     0.01     0.72     0.12
## 1592           Konami Digital Entertainment     0.00     0.00     0.17
## 1593           Konami Digital Entertainment     0.09     0.00     0.00
## 1594           Konami Digital Entertainment     0.00     0.01     0.00
## 1595                             Activision     0.31     0.00     0.00
## 1596                             Activision     0.25     0.00     0.00
## 1597                             Activision     0.25     0.00     0.00
## 1598                             Activision     0.22     0.00     0.00
## 1599                             Activision     0.11     0.00     0.00
## 1600                     Bethesda Softworks     0.47     0.80     0.03
## 1601                     Bethesda Softworks     0.33     0.28     0.00
## 1602                     Bethesda Softworks     0.14     0.25     0.02
## 1603                     Bethesda Softworks     0.12     0.29     0.00
## 1604                     Bethesda Softworks     0.18     0.19     0.00
## 1605                             Activision     0.11     0.09     0.00
## 1606                             Activision     0.08     0.01     0.00
## 1607                             Activision     0.06     0.01     0.00
## 1608                             Activision     0.05     0.00     0.00
## 1609                             Activision     0.02     0.00     0.00
## 1610                        Electronic Arts     0.30     0.64     0.07
## 1611                        Electronic Arts     0.32     0.43     0.02
## 1612                        Electronic Arts     0.09     0.24     0.03
## 1613                        Electronic Arts     0.23     0.15     0.01
## 1614                              MTV Games     0.25     0.00     0.00
## 1615                              MTV Games     0.21     0.01     0.00
## 1616                              MTV Games     0.21     0.00     0.00
## 1617                              MTV Games     0.08     0.06     0.00
## 1618                            D3Publisher     0.10     0.03     0.00
## 1619                            D3Publisher     0.03     0.04     0.00
## 1620                            D3Publisher     0.02     0.02     0.00
## 1621                            D3Publisher     0.02     0.01     0.00
## 1622                  Acclaim Entertainment     0.38     0.29     0.00
## 1623                  Acclaim Entertainment     0.19     0.06     0.00
## 1624                  Acclaim Entertainment     0.12     0.03     0.00
## 1625                  Acclaim Entertainment     0.11     0.04     0.00
## 1626                  Acclaim Entertainment     0.21     0.16     0.00
## 1627                  Acclaim Entertainment     0.10     0.03     0.00
## 1628                  Acclaim Entertainment     0.06     0.02     0.00
## 1629                  Acclaim Entertainment     0.05     0.02     0.00
## 1630                                  Atari     0.14     0.30     0.00
## 1631                                  Atari     0.09     0.08     0.00
## 1632                                  Atari     0.03     0.02     0.00
## 1633                                  Atari     0.00     0.01     0.00
## 1634                                Ubisoft     2.64     2.56     0.16
## 1635                                Ubisoft     3.13     1.71     0.03
## 1636                                Ubisoft     0.28     0.53     0.00
## 1637                                Ubisoft     0.19     0.13     0.00
## 1638                            D3Publisher     0.05     0.04     0.00
## 1639                            D3Publisher     0.10     0.00     0.00
## 1640                            D3Publisher     0.09     0.00     0.00
## 1641                            D3Publisher     0.04     0.00     0.00
## 1642                             Tecmo Koei     0.02     0.06     0.11
## 1643                             Tecmo Koei     0.00     0.00     0.13
## 1644                             Tecmo Koei     0.00     0.00     0.06
## 1645                             Tecmo Koei     0.01     0.01     0.00
## 1646                                    THQ     0.39     0.10     0.00
## 1647                                    THQ     0.30     0.01     0.00
## 1648                                    THQ     0.24     0.02     0.00
## 1649                                    THQ     0.10     0.00     0.00
## 1650                                    THQ     0.21     0.16     0.00
## 1651                                    THQ     0.31     0.00     0.00
## 1652                                    THQ     0.24     0.00     0.00
## 1653                                    THQ     0.11     0.01     0.00
## 1654                             Infogrames     0.40     0.15     0.00
## 1655                             Infogrames     0.20     0.05     0.00
## 1656                                  Atari     0.02     0.00     0.00
## 1657                                  Atari     0.02     0.00     0.00
## 1658                     Virgin Interactive     0.61     0.48     0.00
## 1659                     Virgin Interactive     0.15     0.04     0.00
## 1660                     Virgin Interactive     0.11     0.03     0.00
## 1661              Destination Software, Inc     0.02     0.01     0.00
## 1662                     Namco Bandai Games     0.00     0.06     0.00
## 1663                     Namco Bandai Games     0.00     0.03     0.00
## 1664                     Namco Bandai Games     0.00     0.01     0.00
## 1665                     Namco Bandai Games     0.00     0.01     0.00
## 1666                             Activision     0.42     0.00     0.00
## 1667                             Activision     0.28     0.01     0.00
## 1668                             Activision     0.16     0.06     0.00
## 1669                             Activision     0.06     0.04     0.00
## 1670                                    THQ     0.09     0.02     0.00
## 1671                                    THQ     0.05     0.04     0.00
## 1672                                    THQ     0.03     0.01     0.00
## 1673                                    THQ     0.04     0.00     0.00
## 1674                        Electronic Arts     0.27     0.21     0.00
## 1675                        Electronic Arts     0.16     0.04     0.00
## 1676                        Electronic Arts     0.12     0.05     0.00
## 1677                        Electronic Arts     0.11     0.03     0.00
## 1678 Warner Bros. Interactive Entertainment     2.70     1.91     0.11
## 1679 Warner Bros. Interactive Entertainment     2.99     1.31     0.04
## 1680 Warner Bros. Interactive Entertainment     0.16     0.28     0.00
## 1681 Warner Bros. Interactive Entertainment     0.17     0.18     0.00
## 1682 Warner Bros. Interactive Entertainment     1.07     0.87     0.04
## 1683 Warner Bros. Interactive Entertainment     1.15     0.61     0.00
## 1684 Warner Bros. Interactive Entertainment     0.20     0.09     0.00
## 1685 Warner Bros. Interactive Entertainment     0.13     0.16     0.00
## 1686                                Ubisoft     0.17     0.13     0.00
## 1687                                Ubisoft     0.08     0.02     0.00
## 1688                                Ubisoft     0.05     0.02     0.00
## 1689                                Ubisoft     0.05     0.01     0.00
## 1690                             Activision     0.41     0.00     0.00
## 1691                             Activision     0.31     0.01     0.00
## 1692                             Activision     0.16     0.00     0.00
## 1693                             Activision     0.05     0.04     0.00
## 1694                                Unknown     0.13     0.00     0.00
## 1695                                Unknown     0.13     0.00     0.00
## 1696                           PopCap Games     0.02     0.05     0.00
## 1697                                Unknown     0.32     0.02     0.00
## 1698                             Koch Media     0.65     0.22     0.00
## 1699                             Koch Media     0.52     0.21     0.00
## 1700                             Koch Media     0.35     0.14     0.00
## 1701                             Koch Media     0.22     0.02     0.00
## 1702                            D3Publisher     0.69     0.83     0.00
## 1703                            D3Publisher     0.55     0.55     0.00
## 1704                            D3Publisher     0.09     0.00     0.00
## 1705                            D3Publisher     0.23     0.31     0.00
## 1706                     Empire Interactive     0.41     0.32     0.00
## 1707                     Empire Interactive     0.15     0.04     0.00
## 1708                     Empire Interactive     0.06     0.02     0.00
## 1709                 Zoo Digital Publishing     0.03     0.01     0.00
## 1710                        Electronic Arts     0.21     0.17     0.00
## 1711                        Electronic Arts     0.16     0.04     0.00
## 1712                                    THQ     0.06     0.02     0.00
## 1713                        Electronic Arts     0.05     0.01     0.00
## 1714                      Eidos Interactive     0.08     0.02     0.00
## 1715                      Eidos Interactive     0.05     0.01     0.00
## 1716                      Eidos Interactive     0.06     0.00     0.00
## 1717                      Eidos Interactive     0.04     0.00     0.00
## 1718                                  PQube     0.07     0.03     0.02
## 1719                                  PQube     0.00     0.05     0.00
## 1720                                  PQube     0.05     0.01     0.00
## 1721                                  PQube     0.00     0.00     0.04
## 1722                            Hudson Soft     0.18     0.00     0.85
## 1723                                Ubisoft     0.10     0.02     0.03
## 1724           Konami Digital Entertainment     0.14     0.00     0.00
## 1725                   Hudson Entertainment     0.00     0.00     0.01
## 1726                   Take-Two Interactive     1.89     0.91     0.04
## 1727                   Take-Two Interactive     1.05     0.77     0.10
## 1728                   Take-Two Interactive     0.42     0.41     0.00
## 1729                   Take-Two Interactive     0.43     0.21     0.01
## 1730                                Ubisoft     0.12     0.08     0.00
## 1731                                Ubisoft     0.11     0.05     0.00
## 1732                                Ubisoft     0.11     0.04     0.00
## 1733                                Ubisoft     0.00     0.03     0.00
## 1734                             Activision     0.28     0.21     0.00
## 1735                             Activision     0.13     0.04     0.00
## 1736                             Activision     0.05     0.01     0.00
## 1737                             Activision     0.04     0.01     0.00
## 1738                       Activision Value     0.36     0.00     0.00
## 1739                       Activision Value     0.09     0.07     0.00
## 1740                             Activision     0.12     0.00     0.00
## 1741                       Activision Value     0.12     0.00     0.00
## 1742                             Activision     0.53     0.02     0.00
## 1743                             Activision     0.26     0.04     0.00
## 1744                             Activision     0.28     0.01     0.00
## 1745                             Activision     0.12     0.00     0.00
## 1746                       Activision Value     0.29     0.00     0.00
## 1747                       Activision Value     0.23     0.00     0.00
## 1748                       Activision Value     0.21     0.00     0.00
## 1749                       Activision Value     0.07     0.05     0.00
## 1750                             Activision     1.49     0.93     0.02
## 1751                             Activision     1.19     0.84     0.00
## 1752                             Activision     0.60     0.63     0.03
## 1753                             Activision     0.89     0.03     0.00
## 1754                             Activision     5.91     2.38     0.13
## 1755                             Activision     3.10     2.30     0.28
## 1756                             Activision     0.00     1.12     0.00
## 1757                             Activision     0.96     0.02     0.01
## 1758                             Activision     4.99     5.88     0.65
## 1759                             Activision     8.25     4.30     0.07
## 1760                             Activision     0.63     0.69     0.00
## 1761                             Activision     0.21     0.18     0.00
## 1762                             Activision     9.03     4.28     0.13
## 1763                             Activision     5.54     5.82     0.49
## 1764                             Activision     0.41     0.98     0.00
## 1765                             Activision     0.60     0.21     0.00
## 1766                     Reef Entertainment     0.00     0.03     0.00
## 1767                     Reef Entertainment     0.00     0.02     0.00
## 1768                     Reef Entertainment     0.00     0.02     0.00
## 1769                     Reef Entertainment     0.00     0.01     0.00
## 1770                                    THQ     0.63     0.01     0.00
## 1771                                    THQ     0.37     0.01     0.00
## 1772                                    THQ     0.12     0.09     0.00
## 1773                                    THQ     0.13     0.00     0.00
## 1774                        Electronic Arts     0.08     0.06     0.00
## 1775                        Electronic Arts     0.05     0.01     0.00
## 1776                        Electronic Arts     0.04     0.01     0.00
## 1777                        Electronic Arts     0.03     0.01     0.00
## 1778                             Activision     0.18     0.00     0.00
## 1779                             Activision     0.17     0.00     0.00
## 1780                             Activision     0.15     0.00     0.00
## 1781                             Activision     0.14     0.00     0.00
## 1782                            Global Star     0.17     0.13     0.00
## 1783                            Global Star     0.22     0.08     0.00
## 1784                            Global Star     0.14     0.04     0.00
## 1785                            Global Star     0.08     0.02     0.00
## 1786                           Interchannel     0.00     0.00     0.04
## 1787                              Prototype     0.00     0.00     0.04
## 1788                              Prototype     0.00     0.00     0.03
## 1789                              Prototype     0.00     0.00     0.03
## 1790                          Vivendi Games     0.74     1.01     0.00
## 1791                          Vivendi Games     0.33     0.12     0.00
## 1792                          Vivendi Games     0.24     0.07     0.00
## 1793                          Vivendi Games     0.20     0.05     0.00
## 1794                          Vivendi Games     0.27     0.21     0.00
## 1795                          Vivendi Games     0.16     0.06     0.00
## 1796                          Vivendi Games     0.12     0.03     0.00
## 1797                          Vivendi Games     0.09     0.03     0.00
## 1798                        Electronic Arts     0.22     0.03     0.00
## 1799                        Electronic Arts     0.11     0.03     0.00
## 1800                        Electronic Arts     0.10     0.03     0.00
## 1801                        Electronic Arts     0.04     0.01     0.00
## 1802                     Namco Bandai Games     0.12     0.04     0.00
## 1803                     Namco Bandai Games     0.11     0.03     0.00
## 1804                     Namco Bandai Games     0.06     0.05     0.00
## 1805                     Namco Bandai Games     0.02     0.01     0.00
## 1806                             Activision     0.56     0.40     0.00
## 1807                             Activision     0.42     0.34     0.00
## 1808                             Activision     0.47     0.23     0.00
## 1809                             Activision     0.10     0.02     0.00
## 1810                  Acclaim Entertainment     0.67     0.53     0.00
## 1811                  Acclaim Entertainment     0.21     0.06     0.00
## 1812                  Acclaim Entertainment     0.15     0.04     0.00
## 1813                  Acclaim Entertainment     0.14     0.05     0.00
## 1814                        Electronic Arts     0.67     0.52     0.00
## 1815                        Electronic Arts     0.53     0.17     0.00
## 1816                        Electronic Arts     0.11     0.03     0.00
## 1817                 Zoo Digital Publishing     0.01     0.00     0.00
## 1818                             Activision     0.23     0.17     0.00
## 1819                             Activision     0.26     0.16     0.00
## 1820                             Activision     0.13     0.10     0.00
## 1821                             Activision     0.08     0.03     0.00
## 1822                                  Atari     0.99     0.05     0.00
## 1823                           Midway Games     0.20     0.15     0.00
## 1824                           Midway Games     0.08     0.02     0.00
## 1825                           Midway Games     0.07     0.02     0.00
## 1826                             Activision     2.49     2.05     0.16
## 1827                             Activision     2.13     0.92     0.00
## 1828                             Activision     1.30     0.49     0.00
## 1829                             Activision     0.67     0.66     0.12
## 1830                             Activision     0.77     0.78     0.04
## 1831                             Activision     0.82     0.23     0.00
## 1832                             Activision     0.16     0.17     0.02
## 1833                             Activision     0.22     0.12     0.00
## 1834                            Square Enix     0.50     0.60     0.07
## 1835                            Square Enix     0.76     0.48     0.02
## 1836                            Square Enix     0.25     0.25     0.00
## 1837                            Square Enix     0.06     0.05     0.00
## 1838                                 Capcom     0.58     0.46     0.34
## 1839                                 Capcom     0.79     0.34     0.08
## 1840                                 Capcom     0.01     0.00     0.08
## 1841                                 Capcom     0.01     0.02     0.00
## 1842             Disney Interactive Studios     0.77     0.31     0.00
## 1843             Disney Interactive Studios     0.25     0.19     0.00
## 1844             Disney Interactive Studios     0.39     0.01     0.00
## 1845             Disney Interactive Studios     0.27     0.07     0.00
## 1846             Disney Interactive Studios     0.32     0.23     0.00
## 1847             Disney Interactive Studios     0.09     0.02     0.00
## 1848             Disney Interactive Studios     0.08     0.26     0.00
## 1849             Disney Interactive Studios     0.09     0.00     0.00
## 1850             Disney Interactive Studios     0.50     0.18     0.00
## 1851             Disney Interactive Studios     0.32     0.25     0.00
## 1852             Disney Interactive Studios     0.21     0.05     0.00
## 1853             Disney Interactive Studios     0.10     0.03     0.00
## 1854                                Ubisoft     0.08     0.06     0.00
## 1855                                Ubisoft     0.08     0.02     0.00
## 1856                                Ubisoft     0.04     0.03     0.00
## 1857                                Ubisoft     0.03     0.01     0.00
## 1858                             Activision     0.16     0.12     0.00
## 1859                             Activision     0.20     0.08     0.00
## 1860                             Activision     0.09     0.02     0.00
## 1861                             Activision     0.08     0.02     0.00
## 1862             Disney Interactive Studios     0.17     0.00     0.00
## 1863             Disney Interactive Studios     0.07     0.00     0.00
## 1864             Disney Interactive Studios     0.03     0.01     0.00
## 1865             Disney Interactive Studios     0.02     0.00     0.00
## 1866             Disney Interactive Studios     0.13     0.10     0.00
## 1867             Disney Interactive Studios     0.15     0.04     0.00
## 1868             Disney Interactive Studios     0.08     0.07     0.00
## 1869             Disney Interactive Studios     0.04     0.03     0.00
## 1870                                 Capcom     0.24     0.28     0.19
## 1871                                 Capcom     0.26     0.13     0.01
## 1872                                 Capcom     0.12     0.13     0.00
## 1873                                 Capcom     0.08     0.04     0.00
## 1874                  Tru Blu Entertainment     0.01     0.09     0.00
## 1875                  Tru Blu Entertainment     0.00     0.04     0.00
## 1876                  Tru Blu Entertainment     0.00     0.02     0.00
## 1877                  Tru Blu Entertainment     0.00     0.01     0.00
## 1878                     Namco Bandai Games     0.30     0.48     0.12
## 1879                     Namco Bandai Games     0.15     0.20     0.14
## 1880                     Namco Bandai Games     0.18     0.11     0.00
## 1881                     Namco Bandai Games     0.16     0.08     0.00
## 1882                             Activision     0.29     0.16     0.00
## 1883                             Activision     0.25     0.08     0.00
## 1884                             Activision     0.19     0.07     0.00
## 1885                             Activision     0.14     0.09     0.00
## 1886                                Ubisoft     0.24     0.54     0.01
## 1887                                Ubisoft     0.25     0.39     0.00
## 1888                                Ubisoft     0.05     0.10     0.00
## 1889                                Ubisoft     0.06     0.09     0.00
## 1890                                 Capcom     0.05     0.00     0.00
## 1891                                 Capcom     0.01     0.04     0.00
## 1892                                 Capcom     0.03     0.00     0.00
## 1893                                 Capcom     0.00     0.01     0.00
## 1894                             Tecmo Koei     0.06     0.07     0.03
## 1895                             Tecmo Koei     0.00     0.00     0.09
## 1896                             Tecmo Koei     0.04     0.02     0.00
## 1897                             Tecmo Koei     0.00     0.00     0.02
## 1898                           Midway Games     0.34     0.01     0.00
## 1899                           Midway Games     0.19     0.05     0.00
## 1900                           Midway Games     0.08     0.03     0.00
## 1901                           Midway Games     0.02     0.01     0.00
## 1902             Disney Interactive Studios     0.72     0.23     0.00
## 1903             Disney Interactive Studios     0.32     0.17     0.00
## 1904             Disney Interactive Studios     0.21     0.20     0.00
## 1905             Disney Interactive Studios     0.14     0.07     0.01
## 1906                        Electronic Arts     0.46     2.28     0.05
## 1907                        Electronic Arts     0.20     0.40     0.00
## 1908                        Electronic Arts     0.06     0.02     0.00
## 1909                        Electronic Arts     0.04     0.01     0.00
## 1910                        Electronic Arts     0.59     2.36     0.04
## 1911                        Electronic Arts     0.24     0.49     0.00
## 1912                        Electronic Arts     0.05     0.01     0.00
## 1913                        Electronic Arts     0.04     0.01     0.00
## 1914                        Electronic Arts     0.58     2.48     0.04
## 1915                        Electronic Arts     0.33     0.60     0.00
## 1916                        Electronic Arts     0.11     0.03     0.00
## 1917                        Electronic Arts     0.06     0.02     0.00
## 1918                             SquareSoft     0.86     0.00     2.55
## 1919                            Square Enix     0.91     0.05     1.07
## 1920                             SquareSoft     0.00     0.00     1.39
## 1921                            Square Enix     0.00     0.00     0.11
## 1922                                    THQ     1.59     1.05     0.04
## 1923                                    THQ     1.26     0.60     0.05
## 1924                                    THQ     0.69     0.18     0.00
## 1925                                    THQ     0.48     0.16     0.00
## 1926                   Take-Two Interactive     0.13     0.10     0.00
## 1927                 Zoo Digital Publishing     0.09     0.00     0.00
## 1928                   Take-Two Interactive     0.07     0.02     0.00
## 1929                 Zoo Digital Publishing     0.04     0.02     0.00
## 1930                        Electronic Arts     0.34     0.01     0.00
## 1931                        Electronic Arts     0.17     0.04     0.00
## 1932                        Electronic Arts     0.15     0.04     0.00
## 1933                        Electronic Arts     0.07     0.01     0.00
## 1934                            Codemasters     0.31     0.57     0.03
## 1935                            Codemasters     0.33     0.44     0.01
## 1936                            Codemasters     0.00     0.03     0.00
## 1937                            Codemasters     0.04     0.01     0.00
## 1938                         Telltale Games     0.02     0.03     0.00
## 1939                         Telltale Games     0.04     0.00     0.00
## 1940                         Telltale Games     0.02     0.01     0.00
## 1941                         Telltale Games     0.03     0.00     0.00
## 1942                        Electronic Arts     0.54     0.02     0.00
## 1943                        Electronic Arts     0.34     0.13     0.00
## 1944                        Electronic Arts     0.28     0.07     0.00
## 1945                        Electronic Arts     0.10     0.00     0.00
## 1946                   Take-Two Interactive     9.43     0.40     0.41
## 1947                   Take-Two Interactive     1.26     0.61     0.00
## 1948                   Take-Two Interactive     0.00     0.92     0.00
## 1949                   Take-Two Interactive     0.08     0.03     0.00
## 1950                             Activision     0.94     0.49     0.00
## 1951                             Activision     0.65     0.37     0.00
## 1952                             Activision     0.28     0.30     0.00
## 1953                             Activision     0.53     0.40     0.00
## 1954                             Activision     1.04     0.14     0.00
## 1955                             Activision     1.00     0.14     0.00
## 1956                             Activision     0.73     0.15     0.00
## 1957                             Activision     0.61     0.00     0.00
## 1958                             Activision     0.41     0.43     0.00
## 1959                             Activision     0.52     0.21     0.00
## 1960                             Activision     0.28     0.24     0.00
## 1961                             Activision     0.17     0.13     0.00
## 1962                             Activision     0.33     0.21     0.00
## 1963                             Activision     0.23     0.15     0.00
## 1964                             Activision     0.20     0.11     0.00
## 1965                             Activision     0.11     0.01     0.00
## 1966                             Activision     0.16     0.10     0.00
## 1967                             Activision     0.14     0.12     0.00
## 1968                             Activision     0.14     0.09     0.00
## 1969                             Activision     0.05     0.04     0.00
## 1970                             Activision     0.98     0.04     0.00
## 1971                             Activision     0.38     0.12     0.00
## 1972                             Activision     0.14     0.04     0.00
## 1973                             Activision     0.24     0.01     0.00
## 1974             Disney Interactive Studios     0.38     0.25     0.00
## 1975             Disney Interactive Studios     0.13     0.18     0.00
## 1976             Disney Interactive Studios     0.14     0.06     0.00
## 1977             Disney Interactive Studios     0.14     0.06     0.00
## 1978                        Electronic Arts     0.44     0.34     0.00
## 1979                        Electronic Arts     0.31     0.08     0.00
## 1980                        Electronic Arts     0.28     0.10     0.00
## 1981                        Electronic Arts     0.14     0.04     0.00
## 1982                      Eidos Interactive     0.25     0.19     0.00
## 1983                      Eidos Interactive     0.29     0.06     0.01
## 1984                      Eidos Interactive     0.11     0.03     0.00
## 1985                      Eidos Interactive     0.00     0.03     0.00
## 1986                             Activision     0.20     0.15     0.00
## 1987                             Activision     0.22     0.00     0.00
## 1988                             Activision     0.15     0.00     0.00
## 1989                             Activision     0.13     0.00     0.00
## 1990                             Activision     0.32     0.17     0.00
## 1991                             Activision     0.24     0.15     0.00
## 1992                             Activision     0.12     0.04     0.00
## 1993                             Activision     0.11     0.02     0.00
## 1994                              505 Games     0.34     0.26     0.00
## 1995                              505 Games     0.23     0.24     0.00
## 1996                              505 Games     0.08     0.07     0.00
## 1997                              505 Games     0.06     0.00     0.00
## 1998                             Activision     0.36     0.30     0.00
## 1999                             Activision     0.11     0.01     0.00
## 2000                             Activision     0.17     0.07     0.00
## 2001                             Activision     0.11     0.10     0.00
## 2002                             Activision     0.18     0.38     0.02
## 2003                             Activision     0.20     0.24     0.00
## 2004                             Activision     0.05     0.01     0.00
## 2005                             Activision     0.02     0.00     0.00
## 2006                        Electronic Arts     0.85     1.06     0.09
## 2007                        Electronic Arts     0.43     0.19     0.00
## 2008                        Electronic Arts     0.32     0.08     0.00
## 2009                        Electronic Arts     0.12     0.04     0.00
## 2010                        Electronic Arts     1.45     1.29     0.12
## 2011                        Electronic Arts     0.58     0.22     0.00
## 2012                        Electronic Arts     0.60     0.16     0.00
## 2013                        Electronic Arts     0.10     0.04     0.00
## 2014                             Activision     0.17     0.00     0.00
## 2015                             Activision     0.14     0.00     0.00
## 2016                             Activision     0.07     0.06     0.00
## 2017                             Activision     0.12     0.00     0.00
## 2018                                Ubisoft     4.14     2.21     0.00
## 2019                                Ubisoft     0.90     0.20     0.00
## 2020                                Ubisoft     0.26     0.12     0.00
## 2021                                Ubisoft     0.22     0.14     0.00
## 2022           Konami Digital Entertainment     0.42     0.00     0.00
## 2023           Konami Digital Entertainment     0.19     0.15     0.00
## 2024           Konami Digital Entertainment     0.10     0.00     0.00
## 2025           Konami Digital Entertainment     0.08     0.00     0.00
## 2026                             Activision     0.16     0.13     0.00
## 2027                             Activision     0.09     0.03     0.00
## 2028                             Activision     0.08     0.02     0.00
## 2029                             Activision     0.05     0.01     0.00
## 2030                                    THQ     0.16     0.07     0.00
## 2031                                    THQ     0.16     0.05     0.00
## 2032                                    THQ     0.08     0.05     0.00
## 2033                                    THQ     0.04     0.04     0.00
## 2034 Warner Bros. Interactive Entertainment     0.42     0.22     0.00
## 2035 Warner Bros. Interactive Entertainment     0.40     0.12     0.00
## 2036 Warner Bros. Interactive Entertainment     0.33     0.09     0.00
## 2037 Warner Bros. Interactive Entertainment     0.24     0.13     0.00
## 2038                              LucasArts     3.66     1.63     0.00
## 2039                              LucasArts     2.89     1.54     0.00
## 2040                              LucasArts     1.53     0.87     0.00
## 2041                              LucasArts     1.02     0.97     0.00
## 2042                           Nordic Games     0.02     0.03     0.00
## 2043                     JoWood Productions     0.06     0.00     0.00
## 2044                           Nordic Games     0.03     0.02     0.00
## 2045                     JoWood Productions     0.03     0.02     0.00
## 2046 Warner Bros. Interactive Entertainment     0.11     0.02     0.00
## 2047 Warner Bros. Interactive Entertainment     0.11     0.01     0.00
## 2048 Warner Bros. Interactive Entertainment     0.06     0.01     0.00
## 2049 Warner Bros. Interactive Entertainment     0.06     0.01     0.00
## 2050                  Acclaim Entertainment     0.16     0.13     0.00
## 2051                  Acclaim Entertainment     0.09     0.03     0.00
## 2052                  Acclaim Entertainment     0.09     0.02     0.00
## 2053                  Acclaim Entertainment     0.05     0.02     0.00
## 2054                             Activision     0.31     0.24     0.00
## 2055                             Activision     0.30     0.11     0.00
## 2056                             Activision     0.20     0.05     0.00
## 2057                             Activision     0.09     0.03     0.00
## 2058                                    THQ     0.52     0.26     0.00
## 2059                                    THQ     0.52     0.15     0.00
## 2060                                    THQ     0.18     0.03     0.00
## 2061                                    THQ     0.13     0.00     0.00
## 2062                        Electronic Arts     2.42     0.11     0.00
## 2063                        Electronic Arts     1.93     0.15     0.00
## 2064                        Electronic Arts     0.43     0.00     0.00
## 2065                        Electronic Arts     0.21     0.00     0.00
## 2066                        Electronic Arts     1.53     0.25     0.00
## 2067                        Electronic Arts     1.76     0.09     0.00
## 2068                        Electronic Arts     1.30     0.09     0.00
## 2069                        Electronic Arts     1.07     0.15     0.00
## 2070                        Electronic Arts     2.33     0.30     0.00
## 2071                        Electronic Arts     2.07     0.08     0.00
## 2072                        Electronic Arts     0.82     0.05     0.00
## 2073                        Electronic Arts     0.56     0.11     0.00
## 2074                        Electronic Arts     0.92     0.08     0.00
## 2075                        Electronic Arts     0.72     0.02     0.00
## 2076                        Electronic Arts     0.06     0.01     0.00
## 2077                        Electronic Arts     0.05     0.01     0.00
## 2078                        Electronic Arts     3.36     0.21     0.01
## 2079                        Electronic Arts     0.67     0.02     0.00
## 2080                        Electronic Arts     0.44     0.16     0.00
## 2081                        Electronic Arts     0.33     0.09     0.00
## 2082                        Electronic Arts     4.26     0.26     0.01
## 2083                        Electronic Arts     1.02     0.02     0.00
## 2084                        Electronic Arts     0.40     0.10     0.00
## 2085                        Electronic Arts     0.22     0.08     0.00
## 2086                        Electronic Arts     1.97     0.07     0.00
## 2087                        Electronic Arts     1.59     0.03     0.00
## 2088                        Electronic Arts     0.62     0.13     0.00
## 2089                        Electronic Arts     0.67     0.05     0.00
## 2090                                  Spike     0.67     0.00     0.00
## 2091                                  Spike     0.29     0.23     0.00
## 2092                                  Spike     0.23     0.00     0.00
## 2093                   Take-Two Interactive     0.08     0.00     0.00
## 2094                               Nintendo     0.78     0.40     1.06
## 2095                               Nintendo     0.50     0.18     0.44
## 2096                               Nintendo     0.00     0.00     0.02
## 2097                               Nintendo     0.00     0.06     0.00
## 2098                                    THQ     0.37     0.02     0.00
## 2099                                    THQ     0.31     0.03     0.00
## 2100                                    THQ     0.14     0.11     0.00
## 2101                                    THQ     0.17     0.02     0.00
## 2102                        Electronic Arts     1.94     0.86     0.03
## 2103                        Electronic Arts     0.63     0.59     0.03
## 2104                        Electronic Arts     0.40     0.44     0.00
## 2105                        Electronic Arts     0.14     0.11     0.00
## 2106                             Activision     0.23     0.18     0.00
## 2107                             Activision     0.15     0.04     0.00
## 2108                             Activision     0.11     0.04     0.00
## 2109                             Activision     0.03     0.01     0.00
## 2110                   Take-Two Interactive     1.99     1.05     0.05
## 2111                   Take-Two Interactive     0.98     0.19     0.00
## 2112                   Take-Two Interactive     0.02     0.01     0.00
## 2113                   Take-Two Interactive     0.00     0.02     0.00
## 2114                        Electronic Arts     1.28     1.05     0.07
## 2115                        Electronic Arts     1.44     1.09     0.00
## 2116                        Electronic Arts     1.55     0.81     0.04
## 2117                        Electronic Arts     0.20     0.23     0.00
## 2118           Konami Digital Entertainment     0.45     0.46     0.17
## 2119           Konami Digital Entertainment     0.14     0.14     0.27
## 2120           Konami Digital Entertainment     0.15     0.11     0.00
## 2121           Konami Digital Entertainment     0.07     0.06     0.01
## 2122                             Activision     0.20     0.15     0.00
## 2123                             Activision     0.08     0.02     0.00
## 2124                             Activision     0.07     0.02     0.00
## 2125                             Activision     0.03     0.01     0.00
## 2126                                  Atari     0.14     0.11     0.00
## 2127                                  Atari     0.10     0.03     0.00
## 2128                                  Atari     0.03     0.01     0.00
## 2129                                  Atari     0.01     0.00     0.00
## 2130                           Little Orbit     0.00     0.06     0.00
## 2131                           Little Orbit     0.00     0.04     0.00
## 2132                           Little Orbit     0.00     0.03     0.00
## 2133                           Little Orbit     0.00     0.03     0.00
## 2134                                    THQ     0.14     0.01     0.00
## 2135                                    THQ     0.07     0.05     0.00
## 2136                                    THQ     0.11     0.03     0.00
## 2137                                    THQ     0.06     0.02     0.00
## 2138                             Activision     0.39     0.00     0.00
## 2139                             Activision     0.37     0.00     0.00
## 2140                             Activision     0.06     0.05     0.00
## 2141                             Activision     0.08     0.00     0.00
## 2142                           Midway Games     1.81     0.52     0.00
## 2143                           Midway Games     0.77     0.15     0.00
## 2144                           Midway Games     0.31     0.08     0.00
## 2145                           Midway Games     0.01     0.00     0.00
## 2146                       Milestone S.r.l.     0.04     0.11     0.00
## 2147                       Milestone S.r.l.     0.04     0.06     0.00
## 2148                       Milestone S.r.l.     0.04     0.04     0.00
## 2149                       Milestone S.r.l.     0.00     0.01     0.00
## 2150                       Milestone S.r.l.     0.00     0.12     0.03
## 2151                       Milestone S.r.l.     0.00     0.03     0.03
## 2152                       Milestone S.r.l.     0.00     0.03     0.00
## 2153                       Milestone S.r.l.     0.00     0.01     0.00
## 2154                        Electronic Arts     0.22     0.08     0.00
## 2155                        Electronic Arts     0.18     0.10     0.00
## 2156                        Electronic Arts     0.08     0.02     0.00
## 2157                        Electronic Arts     0.09     0.00     0.00
## 2158                             Activision     0.18     0.00     0.00
## 2159                             Activision     0.18     0.00     0.00
## 2160                             Activision     0.11     0.00     0.00
## 2161                             Activision     0.09     0.00     0.00
## 2162                   Take-Two Interactive     2.10     0.20     0.00
## 2163                   Take-Two Interactive     1.43     0.33     0.04
## 2164                   Take-Two Interactive     0.89     0.31     0.01
## 2165                   Take-Two Interactive     0.70     0.11     0.00
## 2166                   Take-Two Interactive     1.46     0.54     0.01
## 2167                   Take-Two Interactive     1.36     0.18     0.00
## 2168                   Take-Two Interactive     1.33     0.14     0.00
## 2169                   Take-Two Interactive     0.86     0.27     0.02
## 2170                   Take-Two Interactive     0.83     0.14     0.00
## 2171                   Take-Two Interactive     0.54     0.04     0.00
## 2172                   Take-Two Interactive     0.04     0.00     0.00
## 2173                   Take-Two Interactive     0.03     0.01     0.00
## 2174                   Take-Two Interactive     0.65     0.02     0.00
## 2175                   Take-Two Interactive     0.53     0.00     0.00
## 2176                   Take-Two Interactive     0.30     0.04     0.00
## 2177                   Take-Two Interactive     0.02     0.01     0.00
## 2178                        Electronic Arts     0.57     0.04     0.00
## 2179                        Electronic Arts     0.39     0.00     0.00
## 2180                        Electronic Arts     0.25     0.07     0.00
## 2181                        Electronic Arts     0.27     0.00     0.00
## 2182                        Electronic Arts     1.07     0.04     0.02
## 2183                        Electronic Arts     0.47     0.00     0.00
## 2184                        Electronic Arts     0.42     0.00     0.00
## 2185                        Electronic Arts     0.04     0.01     0.00
## 2186                        Electronic Arts     0.50     0.14     0.00
## 2187                        Electronic Arts     0.46     0.00     0.02
## 2188                        Electronic Arts     0.32     0.01     0.01
## 2189                        Electronic Arts     0.23     0.07     0.03
## 2190                        Electronic Arts     1.41     0.05     0.00
## 2191                        Electronic Arts     0.67     0.00     0.00
## 2192                        Electronic Arts     0.42     0.12     0.00
## 2193                        Electronic Arts     0.34     0.00     0.00
## 2194                        Electronic Arts     0.65     0.03     0.00
## 2195                        Electronic Arts     0.65     0.00     0.00
## 2196                        Electronic Arts     0.35     0.00     0.00
## 2197                        Electronic Arts     0.06     0.02     0.00
## 2198                        Electronic Arts     0.65     0.00     0.00
## 2199                        Electronic Arts     0.54     0.00     0.00
## 2200                        Electronic Arts     0.40     0.02     0.00
## 2201                        Electronic Arts     0.21     0.00     0.00
## 2202                        Electronic Arts     0.87     0.00     0.00
## 2203                        Electronic Arts     0.75     0.00     0.00
## 2204                        Electronic Arts     0.28     0.22     0.00
## 2205                        Electronic Arts     0.19     0.00     0.00
## 2206                                Ubisoft     0.10     0.03     0.00
## 2207                                Ubisoft     0.08     0.04     0.00
## 2208                                Ubisoft     0.07     0.04     0.00
## 2209                                Ubisoft     0.01     0.02     0.00
## 2210                        Electronic Arts     0.42     0.02     0.00
## 2211                        Electronic Arts     0.25     0.01     0.00
## 2212                        Electronic Arts     0.13     0.02     0.00
## 2213                        Electronic Arts     0.02     0.01     0.00
## 2214                        Electronic Arts     0.45     0.01     0.00
## 2215                        Electronic Arts     0.29     0.02     0.00
## 2216                        Electronic Arts     0.07     0.06     0.00
## 2217                        Electronic Arts     0.00     0.02     0.00
## 2218                        Electronic Arts     0.30     0.18     0.00
## 2219                        Electronic Arts     0.35     0.07     0.00
## 2220                        Electronic Arts     0.31     0.06     0.00
## 2221                        Electronic Arts     0.21     0.11     0.00
## 2222                        Electronic Arts     0.35     0.15     0.00
## 2223                        Electronic Arts     0.37     0.05     0.00
## 2224                        Electronic Arts     0.00     0.03     0.00
## 2225                        Electronic Arts     0.00     0.02     0.00
## 2226                   Take-Two Interactive     0.33     0.01     0.00
## 2227                   Take-Two Interactive     0.17     0.14     0.00
## 2228                   Take-Two Interactive     0.13     0.01     0.00
## 2229                   Take-Two Interactive     0.11     0.02     0.00
## 2230                   Take-Two Interactive     0.15     0.01     0.00
## 2231                   Take-Two Interactive     0.11     0.01     0.00
## 2232                   Take-Two Interactive     0.07     0.05     0.00
## 2233                   Take-Two Interactive     0.06     0.00     0.00
## 2234                       Activision Value     0.13     0.10     0.00
## 2235                       Activision Value     0.15     0.00     0.00
## 2236                       Activision Value     0.10     0.01     0.00
## 2237                       Activision Value     0.11     0.00     0.00
## 2238                     Namco Bandai Games     3.00     1.11     0.05
## 2239                     Namco Bandai Games     1.73     0.07     0.00
## 2240                     Namco Bandai Games     0.48     0.13     0.00
## 2241                                Unknown     0.77     0.11     0.00
## 2242                     Namco Bandai Games     2.08     1.35     0.00
## 2243                     Namco Bandai Games     0.17     0.04     0.00
## 2244                     Namco Bandai Games     0.14     0.05     0.00
## 2245                     Namco Bandai Games     0.13     0.04     0.00
## 2246                        Electronic Arts     1.05     1.25     0.03
## 2247                        Electronic Arts     1.03     0.98     0.00
## 2248                        Electronic Arts     0.18     0.24     0.00
## 2249                        Electronic Arts     0.12     0.20     0.00
## 2250                        Electronic Arts     0.69     1.41     0.04
## 2251                        Electronic Arts     0.73     0.97     0.01
## 2252                        Electronic Arts     0.16     0.38     0.01
## 2253                        Electronic Arts     0.00     0.05     0.00
## 2254                     Namco Bandai Games     0.05     0.04     0.28
## 2255                     Namco Bandai Games     0.09     0.12     0.06
## 2256                     Namco Bandai Games     0.06     0.04     0.04
## 2257                     Namco Bandai Games     0.00     0.04     0.02
## 2258                     Namco Bandai Games     0.05     0.04     0.00
## 2259                     Namco Bandai Games     0.03     0.04     0.00
## 2260                     Namco Bandai Games     0.04     0.03     0.00
## 2261                     Namco Bandai Games     0.04     0.01     0.00
## 2262                     Namco Bandai Games     1.26     0.05     0.00
## 2263                     Namco Bandai Games     0.36     0.11     0.00
## 2264                               Nintendo     0.28     0.07     0.00
## 2265                 Zoo Digital Publishing     0.08     0.03     0.00
## 2266                     Namco Bandai Games     0.05     0.05     0.00
## 2267                     Namco Bandai Games     0.05     0.04     0.00
## 2268                     Namco Bandai Games     0.03     0.05     0.00
## 2269                     Namco Bandai Games     0.05     0.02     0.00
## 2270                             Activision     0.10     0.08     0.00
## 2271                             Activision     0.06     0.02     0.00
## 2272                             Activision     0.05     0.02     0.00
## 2273                             Activision     0.05     0.01     0.00
## 2274                                   Sega     0.22     0.14     0.00
## 2275                                   Sega     0.17     0.02     0.00
## 2276                                   Sega     0.07     0.03     0.00
## 2277                                   Sega     0.07     0.03     0.00
## 2278                           Mastertronic     0.95     0.15     0.00
## 2279                           PopCap Games     0.24     0.00     0.00
## 2280                           PopCap Games     0.18     0.00     0.00
## 2281                           PopCap Games     0.00     0.04     0.00
## 2282                                Ubisoft     0.88     1.03     0.00
## 2283                                Ubisoft     0.57     0.33     0.00
## 2284                                Ubisoft     0.25     0.06     0.00
## 2285                                Ubisoft     0.11     0.04     0.00
## 2286                                    THQ     0.20     0.02     0.00
## 2287                                    THQ     0.19     0.01     0.00
## 2288                                    THQ     0.09     0.01     0.00
## 2289                                    THQ     0.07     0.01     0.00
## 2290                                   Sega     0.00     0.00     0.11
## 2291                                   Sega     0.00     0.00     0.05
## 2292                                   Sega     0.00     0.00     0.04
## 2293                                   Sega     0.00     0.00     0.02
## 2294                            D3Publisher     0.28     0.01     0.03
## 2295                            D3Publisher     0.26     0.00     0.00
## 2296                            D3Publisher     0.06     0.05     0.00
## 2297                            D3Publisher     0.01     0.00     0.00
## 2298                        Electronic Arts     0.07     0.09     0.00
## 2299                        Electronic Arts     0.08     0.04     0.00
## 2300                        Electronic Arts     0.06     0.06     0.00
## 2301                        Electronic Arts     0.07     0.03     0.00
## 2302                                Ubisoft     0.14     0.11     0.00
## 2303                                Ubisoft     0.06     0.02     0.00
## 2304                                Ubisoft     0.05     0.01     0.00
## 2305                                Ubisoft     0.00     0.03     0.00
## 2306                                Ubisoft     1.23     0.07     0.02
## 2307                                Ubisoft     0.18     0.01     0.00
## 2308                                Ubisoft     0.13     0.01     0.00
## 2309                                Ubisoft     0.00     0.01     0.00
## 2310                     BAM! Entertainment     0.13     0.10     0.00
## 2311                     BAM! Entertainment     0.08     0.02     0.00
## 2312                     BAM! Entertainment     0.07     0.02     0.00
## 2313                     BAM! Entertainment     0.03     0.01     0.00
## 2314                                 Capcom     2.08     0.83     0.46
## 2315                                 Capcom     1.34     0.57     0.14
## 2316                                 Capcom     0.98     0.42     0.22
## 2317                                Ubisoft     0.00     0.02     0.00
## 2318                                 Capcom     0.54     0.27     0.45
## 2319                                 Capcom     0.09     0.17     0.05
## 2320                                 Capcom     0.05     0.02     0.00
## 2321                                 Capcom     0.01     0.01     0.00
## 2322                                    THQ     0.14     0.04     0.00
## 2323                                    THQ     0.12     0.03     0.00
## 2324                                    THQ     0.04     0.09     0.00
## 2325                                    THQ     0.05     0.03     0.00
## 2326                            Deep Silver     0.02     0.06     0.00
## 2327                            Deep Silver     0.00     0.08     0.00
## 2328                            Deep Silver     0.02     0.06     0.00
## 2329                            Deep Silver     0.00     0.05     0.00
## 2330                          Vivendi Games     0.18     0.14     0.00
## 2331                          Vivendi Games     0.12     0.03     0.00
## 2332                          Vivendi Games     0.12     0.01     0.00
## 2333                          Vivendi Games     0.07     0.02     0.00
## 2334                        Electronic Arts     1.93     0.34     0.00
## 2335                              MTV Games     1.35     0.56     0.00
## 2336                        Electronic Arts     0.99     0.41     0.00
## 2337                        Electronic Arts     0.71     0.06     0.00
## 2338                        Electronic Arts     1.78     0.24     0.00
## 2339                              MTV Games     1.13     0.20     0.00
## 2340                              MTV Games     0.94     0.01     0.00
## 2341                              MTV Games     0.29     0.23     0.00
## 2342                              MTV Games     0.73     0.10     0.00
## 2343                              MTV Games     0.56     0.06     0.00
## 2344                              MTV Games     0.43     0.09     0.00
## 2345                              MTV Games     0.09     0.01     0.00
## 2346                              MTV Games     0.42     0.00     0.00
## 2347                              MTV Games     0.16     0.12     0.00
## 2348                              MTV Games     0.22     0.00     0.00
## 2349                              MTV Games     0.18     0.00     0.00
## 2350                              MTV Games     0.21     0.02     0.00
## 2351                              MTV Games     0.16     0.01     0.00
## 2352                              MTV Games     0.11     0.00     0.00
## 2353                              MTV Games     0.06     0.05     0.00
## 2354                              MTV Games     0.22     0.00     0.00
## 2355                              MTV Games     0.10     0.08     0.00
## 2356                              MTV Games     0.10     0.00     0.00
## 2357                              MTV Games     0.07     0.00     0.00
## 2358                              MTV Games     0.14     0.00     0.00
## 2359                              MTV Games     0.11     0.00     0.00
## 2360                              MTV Games     0.10     0.00     0.00
## 2361                              MTV Games     0.05     0.04     0.00
## 2362           Konami Digital Entertainment     0.25     0.00     0.00
## 2363                                Unknown     0.25     0.00     0.00
## 2364           Konami Digital Entertainment     0.10     0.00     0.00
## 2365                                Unknown     0.07     0.00     0.00
## 2366                   Alternative Software     0.00     0.04     0.00
## 2367                   Alternative Software     0.00     0.03     0.00
## 2368                   Alternative Software     0.00     0.02     0.00
## 2369                   Alternative Software     0.00     0.01     0.00
## 2370                  Tru Blu Entertainment     0.00     0.03     0.00
## 2371                  Tru Blu Entertainment     0.00     0.03     0.00
## 2372                  Tru Blu Entertainment     0.00     0.02     0.00
## 2373                  Tru Blu Entertainment     0.00     0.01     0.00
## 2374                       Black Bean Games     0.12     0.11     0.00
## 2375                       Black Bean Games     0.06     0.14     0.00
## 2376                       Black Bean Games     0.01     0.01     0.00
## 2377                       Black Bean Games     0.01     0.00     0.00
## 2378                             Activision     0.11     0.01     0.00
## 2379                             Activision     0.09     0.00     0.00
## 2380                             Activision     0.07     0.00     0.00
## 2381                             Activision     0.00     0.00     0.00
## 2382                        Electronic Arts     0.93     0.52     0.00
## 2383                        Electronic Arts     0.29     0.08     0.00
## 2384                        Electronic Arts     0.29     0.08     0.00
## 2385                        Electronic Arts     0.09     0.03     0.00
## 2386                        Electronic Arts     0.25     0.20     0.00
## 2387                        Electronic Arts     0.19     0.02     0.00
## 2388                        Electronic Arts     0.13     0.03     0.00
## 2389                        Electronic Arts     0.11     0.03     0.00
## 2390                        Electronic Arts     0.85     0.66     0.00
## 2391                        Electronic Arts     0.42     0.11     0.00
## 2392                        Electronic Arts     0.32     0.09     0.00
## 2393                        Electronic Arts     0.14     0.05     0.00
## 2394                          Vivendi Games     0.99     0.04     0.00
## 2395                          Vivendi Games     0.37     0.11     0.00
## 2396                          Vivendi Games     0.12     0.01     0.00
## 2397                          Vivendi Games     0.01     0.02     0.00
## 2398                                    THQ     0.22     0.17     0.00
## 2399                                    THQ     0.31     0.12     0.00
## 2400                                    THQ     0.17     0.04     0.00
## 2401                                    THQ     0.11     0.03     0.00
## 2402                                   Sega     0.07     0.43     0.00
## 2403                                   Sega     0.12     0.28     0.00
## 2404                                   Sega     0.03     0.15     0.00
## 2405                                   Sega     0.00     0.01     0.00
## 2406                             Activision     0.37     0.29     0.00
## 2407                             Activision     0.49     0.18     0.00
## 2408                             Activision     0.23     0.06     0.00
## 2409                             Activision     0.15     0.04     0.00
## 2410                                Ubisoft     0.11     0.05     0.00
## 2411                                Ubisoft     0.14     0.03     0.00
## 2412                                Ubisoft     0.10     0.05     0.00
## 2413                                Ubisoft     0.00     0.03     0.00
## 2414                             Activision     0.19     0.10     0.00
## 2415                             Activision     0.19     0.09     0.00
## 2416                             Activision     0.16     0.02     0.00
## 2417                             Activision     0.09     0.00     0.00
## 2418                                Ubisoft     0.10     0.07     0.00
## 2419                     Reef Entertainment     0.08     0.03     0.00
## 2420                                Ubisoft     0.07     0.02     0.00
## 2421                      MC2 Entertainment     0.00     0.01     0.00
## 2422                              505 Games     0.22     0.33     0.00
## 2423                              505 Games     0.19     0.11     0.00
## 2424                              505 Games     0.16     0.14     0.00
## 2425                              505 Games     0.10     0.15     0.00
## 2426                                   Sega     0.60     0.73     0.02
## 2427                                   Sega     0.71     0.57     0.00
## 2428                                   Sega     0.44     0.46     0.01
## 2429                                   Sega     0.02     0.07     0.00
## 2430                                   Sega     1.28     0.68     0.02
## 2431                                   Sega     0.56     0.33     0.01
## 2432                                   Sega     0.54     0.33     0.00
## 2433                                   Sega     0.37     0.04     0.00
## 2434                                   Sega     3.03     0.91     0.26
## 2435                                   Sega     0.41     0.07     0.04
## 2436                                   Sega     0.44     0.49     0.00
## 2437                                   Sega     0.00     0.48     0.00
## 2438                    Brash Entertainment     0.06     0.05     0.00
## 2439                    Brash Entertainment     0.10     0.00     0.00
## 2440                    Brash Entertainment     0.08     0.00     0.00
## 2441                    Brash Entertainment     0.05     0.00     0.00
## 2442                                  Atari     2.36     0.14     0.00
## 2443                                  Taito     0.00     0.00     0.46
## 2444                             Activision     0.13     0.03     0.00
## 2445                             Activision     0.08     0.03     0.00
## 2446                             Activision     0.26     0.13     0.00
## 2447                             Activision     0.24     0.09     0.00
## 2448                             Activision     0.13     0.09     0.00
## 2449                             Activision     0.17     0.01     0.00
## 2450                             Activision     2.71     1.51     0.03
## 2451                             Activision     1.07     0.28     0.00
## 2452                             Activision     0.92     0.35     0.01
## 2453                             Activision     0.86     0.27     0.01
## 2454             Disney Interactive Studios     0.31     0.31     0.01
## 2455             Disney Interactive Studios     0.32     0.23     0.00
## 2456             Disney Interactive Studios     0.07     0.02     0.00
## 2457             Disney Interactive Studios     0.00     0.04     0.00
## 2458                                    THQ     1.08     0.45     0.00
## 2459                                    THQ     0.88     0.33     0.00
## 2460                                    THQ     0.74     0.19     0.00
## 2461                                    THQ     0.45     0.10     0.00
## 2462                                    THQ     0.37     0.14     0.00
## 2463                                    THQ     0.37     0.01     0.00
## 2464                                    THQ     0.34     0.09     0.00
## 2465                                    THQ     0.19     0.06     0.00
## 2466                                    THQ     0.42     0.00     0.00
## 2467                                    THQ     0.38     0.01     0.00
## 2468                                    THQ     0.39     0.00     0.00
## 2469                                    THQ     0.25     0.00     0.00
## 2470                              LucasArts     1.47     1.39     0.03
## 2471                             Activision     0.82     0.38     0.00
## 2472                                Ubisoft     0.52     0.19     0.00
## 2473                                Ubisoft     0.25     0.03     0.00
## 2474                              LucasArts     2.18     1.02     0.03
## 2475                             Activision     1.22     0.39     0.00
## 2476                              LucasArts     1.05     0.06     0.01
## 2477                              LucasArts     0.02     0.13     0.00
## 2478                     Empire Interactive     0.45     0.35     0.00
## 2479                     Empire Interactive     0.17     0.05     0.00
## 2480                     BAM! Entertainment     0.08     0.02     0.00
## 2481                     Empire Interactive     0.02     0.01     0.00
## 2482                                  PQube     0.07     0.09     0.00
## 2483                        Kadokawa Shoten     0.00     0.00     0.19
## 2484                                  PQube     0.01     0.04     0.02
## 2485                                    5pb     0.00     0.00     0.06
## 2486                                 Capcom     0.42     0.22     0.10
## 2487                                 Capcom     0.31     0.10     0.03
## 2488                                 Capcom     0.14     0.05     0.01
## 2489                                 Capcom     0.00     0.02     0.00
## 2490                                Ubisoft     0.47     0.04     0.00
## 2491                                Ubisoft     0.34     0.03     0.00
## 2492                                Ubisoft     0.10     0.01     0.00
## 2493                                Ubisoft     0.03     0.01     0.00
## 2494                           Midway Games     0.26     0.15     0.00
## 2495                           Midway Games     0.22     0.12     0.00
## 2496                           Midway Games     0.10     0.00     0.00
## 2497                           Midway Games     0.14     0.01     0.00
## 2498                                    THQ     0.30     0.24     0.00
## 2499                                    THQ     0.33     0.12     0.00
## 2500                                    THQ     0.26     0.07     0.00
## 2501                                    THQ     0.10     0.03     0.00
## 2502                                    THQ     0.12     0.05     0.00
## 2503                                    THQ     0.12     0.03     0.00
## 2504                                    THQ     0.09     0.00     0.00
## 2505                                    THQ     0.05     0.02     0.00
## 2506           Konami Digital Entertainment     0.22     0.17     0.00
## 2507           Konami Digital Entertainment     0.23     0.09     0.00
## 2508           Konami Digital Entertainment     0.15     0.04     0.00
## 2509           Konami Digital Entertainment     0.10     0.03     0.00
## 2510           Konami Digital Entertainment     0.10     0.08     0.00
## 2511           Konami Digital Entertainment     0.09     0.02     0.00
## 2512           Konami Digital Entertainment     0.05     0.00     0.00
## 2513           Konami Digital Entertainment     0.03     0.01     0.00
## 2514                             Activision     0.04     0.02     0.00
## 2515                             Activision     0.01     0.03     0.00
## 2516                             Activision     0.02     0.01     0.00
## 2517                             Activision     0.01     0.02     0.00
## 2518                                Ubisoft     0.13     0.17     0.00
## 2519                                Ubisoft     0.06     0.16     0.00
## 2520                                Ubisoft     0.07     0.14     0.00
## 2521                                Ubisoft     0.05     0.09     0.00
## 2522                           Midway Games     0.09     0.02     0.00
## 2523                           Midway Games     0.05     0.04     0.00
## 2524                           Midway Games     0.08     0.00     0.00
## 2525                           Midway Games     0.03     0.01     0.00
## 2526                                Ubisoft     0.34     1.08     0.03
## 2527                                Ubisoft     0.24     0.34     0.00
## 2528                                Ubisoft     0.06     0.18     0.00
## 2529                                Ubisoft     0.00     0.15     0.00
## 2530                            D3Publisher     0.03     0.07     0.00
## 2531                            D3Publisher     0.03     0.04     0.00
## 2532                            D3Publisher     0.01     0.02     0.00
## 2533                            D3Publisher     0.01     0.01     0.00
## 2534                          Vivendi Games     0.26     0.20     0.00
## 2535                          Vivendi Games     0.18     0.05     0.00
## 2536                          Vivendi Games     0.14     0.05     0.00
## 2537                          Vivendi Games     0.13     0.03     0.00
## 2538                        Electronic Arts     0.38     0.26     0.00
## 2539                        Electronic Arts     0.37     0.21     0.00
## 2540                        Electronic Arts     0.09     0.01     0.00
## 2541                        Electronic Arts     0.00     0.02     0.00
## 2542                        Electronic Arts     1.50     1.28     0.05
## 2543                        Electronic Arts     0.71     0.38     0.00
## 2544                        Electronic Arts     0.53     0.14     0.00
## 2545                        Electronic Arts     0.40     0.15     0.00
## 2546                        Electronic Arts     1.94     1.95     0.08
## 2547                        Electronic Arts     0.53     0.20     0.00
## 2548                        Electronic Arts     0.45     0.24     0.00
## 2549                        Electronic Arts     0.41     0.11     0.00
## 2550                                    THQ     0.07     0.03     0.00
## 2551                                    THQ     0.07     0.03     0.00
## 2552                                    THQ     0.05     0.03     0.00
## 2553                                    THQ     0.04     0.03     0.00
## 2554                            D3Publisher     0.05     0.02     0.00
## 2555                            D3Publisher     0.09     0.00     0.00
## 2556                            D3Publisher     0.08     0.00     0.00
## 2557                            D3Publisher     0.08     0.00     0.00
## 2558                        Electronic Arts     2.02     1.17     0.00
## 2559                                    THQ     0.86     0.32     0.00
## 2560                        Electronic Arts     0.78     0.26     0.00
## 2561                        Electronic Arts     0.19     0.05     0.00
## 2562                        Electronic Arts     1.41     1.12     0.00
## 2563                        Electronic Arts     0.35     0.13     0.00
## 2564                        Electronic Arts     0.31     0.10     0.00
## 2565                        Electronic Arts     0.01     0.03     0.00
## 2566                        Electronic Arts     0.45     0.64     0.00
## 2567                        Electronic Arts     0.08     0.46     0.00
## 2568                        Electronic Arts     0.63     0.05     0.00
## 2569                        Electronic Arts     0.30     0.01     0.00
## 2570                        Electronic Arts     1.07     1.19     0.00
## 2571                        Electronic Arts     0.93     0.35     0.00
## 2572                        Electronic Arts     0.43     0.20     0.00
## 2573                        Electronic Arts     0.40     0.14     0.00
## 2574                                    THQ     1.06     0.54     0.00
## 2575                                    THQ     1.02     0.38     0.00
## 2576                                    THQ     0.73     0.19     0.00
## 2577                                    THQ     0.40     0.12     0.00
## 2578                        Electronic Arts     0.52     0.95     0.00
## 2579                        Electronic Arts     0.37     0.22     0.00
## 2580                        Electronic Arts     0.24     0.14     0.00
## 2581                        Electronic Arts     0.22     0.11     0.00
## 2582                        Electronic Arts     0.34     0.22     0.00
## 2583                        Electronic Arts     0.35     0.23     0.00
## 2584                        Electronic Arts     0.16     0.00     0.00
## 2585                        Electronic Arts     0.07     0.19     0.00
## 2586                        Electronic Arts     1.18     0.34     0.00
## 2587                        Electronic Arts     0.47     0.13     0.00
## 2588                        Electronic Arts     0.13     0.05     0.00
## 2589                        Electronic Arts     0.12     0.03     0.00
## 2590                        Electronic Arts     1.03     0.32     0.00
## 2591                        Electronic Arts     0.64     0.18     0.00
## 2592                        Electronic Arts     0.10     0.03     0.00
## 2593                        Electronic Arts     0.00     0.01     0.00
## 2594                                Ubisoft     1.42     0.40     0.00
## 2595                                Ubisoft     1.23     0.46     0.00
## 2596                                Ubisoft     0.11     0.03     0.00
## 2597                                Ubisoft     0.11     0.01     0.00
## 2598                                Ubisoft     0.21     0.12     0.03
## 2599                                Ubisoft     0.24     0.09     0.01
## 2600                                Ubisoft     0.07     0.03     0.00
## 2601                                Ubisoft     0.00     0.04     0.00
## 2602                                Ubisoft     1.85     1.04     0.00
## 2603                                Ubisoft     1.15     1.11     0.00
## 2604                                Ubisoft     0.18     0.05     0.00
## 2605                                Ubisoft     0.07     0.03     0.00
## 2606                                Ubisoft     0.57     0.34     0.01
## 2607                                Ubisoft     0.34     0.41     0.06
## 2608                                Ubisoft     0.04     0.13     0.00
## 2609                                Ubisoft     0.05     0.07     0.00
## 2610                                Ubisoft     0.68     0.38     0.00
## 2611                                Ubisoft     0.36     0.45     0.00
## 2612                                Ubisoft     0.08     0.02     0.00
## 2613                                Ubisoft     0.06     0.00     0.00
## 2614                                Ubisoft     0.67     0.05     0.01
## 2615                                Ubisoft     0.20     0.03     0.00
## 2616                                Ubisoft     0.10     0.01     0.00
## 2617                                Ubisoft     0.04     0.01     0.00
## 2618                                Ubisoft     0.82     0.59     0.00
## 2619                                Ubisoft     0.52     0.56     0.00
## 2620                                Ubisoft     0.06     0.02     0.00
## 2621                                Ubisoft     0.05     0.02     0.00
## 2622                            Square Enix     0.60     1.31     0.08
## 2623                            Square Enix     0.86     0.87     0.01
## 2624                            Square Enix     0.47     0.64     0.06
## 2625                            Square Enix     0.34     0.21     0.00
## 2626                             Activision     2.13     1.18     0.01
## 2627                             Activision     0.59     0.30     0.00
## 2628                             Activision     0.45     0.12     0.00
## 2629                             Activision     0.41     0.15     0.00
## 2630                             Activision     0.09     0.08     0.00
## 2631                             Activision     0.08     0.02     0.00
## 2632                             Activision     0.06     0.00     0.00
## 2633                             Activision     0.04     0.00     0.00
## 2634                             Activision     0.72     0.03     0.00
## 2635                             Activision     0.30     0.23     0.01
## 2636                             Activision     0.41     0.08     0.00
## 2637                             Activision     0.44     0.02     0.00
## 2638                             Activision     2.29     1.17     0.01
## 2639                             Activision     0.85     0.37     0.00
## 2640                             Activision     0.54     0.14     0.00
## 2641                             Activision     0.43     0.16     0.00
## 2642                             Activision     1.25     0.86     0.01
## 2643                             Activision     0.48     0.24     0.00
## 2644                             Activision     0.38     0.10     0.00
## 2645                             Activision     0.35     0.13     0.00
## 2646                   Take-Two Interactive     0.15     0.37     0.00
## 2647                   Take-Two Interactive     0.08     0.37     0.00
## 2648                   Take-Two Interactive     0.09     0.40     0.00
## 2649                            D3Publisher     0.11     0.02     0.00
## 2650                             Activision     0.11     0.19     0.00
## 2651                             Activision     0.13     0.13     0.00
## 2652                             Activision     0.16     0.04     0.00
## 2653                             Activision     0.10     0.07     0.00
## 2654                        Electronic Arts     0.21     0.31     0.00
## 2655                        Electronic Arts     0.12     0.21     0.00
## 2656                        Electronic Arts     0.12     0.12     0.00
## 2657                        Electronic Arts     0.09     0.01     0.00
## 2658                  Acclaim Entertainment     0.64     0.50     0.00
## 2659                  Acclaim Entertainment     0.39     0.14     0.00
## 2660                  Acclaim Entertainment     0.30     0.08     0.00
## 2661                  Acclaim Entertainment     0.08     0.03     0.00
## 2662                        Electronic Arts     0.26     0.20     0.00
## 2663                        Electronic Arts     0.15     0.04     0.00
## 2664                        Electronic Arts     0.09     0.03     0.00
## 2665                        Electronic Arts     0.08     0.02     0.00
## 2666                             Activision     0.09     0.07     0.00
## 2667                             Activision     0.07     0.02     0.00
## 2668                 Zoo Digital Publishing     0.04     0.01     0.00
## 2669                 Zoo Digital Publishing     0.02     0.01     0.00
## 2670                        Electronic Arts     0.08     0.27     0.00
## 2671                        Electronic Arts     0.08     0.23     0.00
## 2672                        Electronic Arts     0.03     0.00     0.00
## 2673                        Electronic Arts     0.06     0.13     0.00
## 2674                                   Sega     0.23     0.59     0.03
## 2675                                   Sega     0.02     0.03     0.00
## 2676                                   Sega     0.03     0.02     0.00
## 2677                                   Sega     0.00     0.01     0.00
## 2678                                   Sega     0.09     0.25     0.03
## 2679                                   Sega     0.11     0.10     0.01
## 2680                                   Sega     0.05     0.08     0.00
## 2681                                   Sega     0.00     0.03     0.00
## 2682                       Black Bean Games     0.00     0.01     0.00
## 2683                       Black Bean Games     0.00     0.10     0.00
## 2684                       Black Bean Games     0.00     0.15     0.01
## 2685            Sony Computer Entertainment     0.02     0.01     0.00
## 2686                   Take-Two Interactive     0.38     0.56     0.00
## 2687                   Take-Two Interactive     0.36     0.35     0.00
## 2688                   Take-Two Interactive     0.38     0.26     0.00
## 2689                   Take-Two Interactive     0.28     0.23     0.00
## 2690                   Take-Two Interactive     0.41     0.60     0.00
## 2691                   Take-Two Interactive     0.31     0.22     0.00
## 2692                   Take-Two Interactive     0.21     0.27     0.00
## 2693                   Take-Two Interactive     0.27     0.19     0.00
## 2694 Warner Bros. Interactive Entertainment     0.13     0.00     0.00
## 2695 Warner Bros. Interactive Entertainment     0.11     0.00     0.00
## 2696 Warner Bros. Interactive Entertainment     0.10     0.00     0.00
## 2697 Warner Bros. Interactive Entertainment     0.09     0.01     0.00
## 2698                                    RTL     0.18     0.19     0.00
## 2699               Conspiracy Entertainment     0.04     0.03     0.00
## 2700                                    RTL     0.06     0.01     0.00
## 2701                                    RTL     0.04     0.02     0.00
## 2702                             Activision     0.38     0.00     0.00
## 2703                             Activision     0.20     0.00     0.00
## 2704                             Activision     0.18     0.00     0.00
## 2705                             Activision     0.12     0.00     0.00
## 2706                   Take-Two Interactive     0.10     0.08     0.00
## 2707                   Take-Two Interactive     0.05     0.01     0.00
## 2708                   Take-Two Interactive     0.04     0.00     0.00
## 2709                   Take-Two Interactive     0.01     0.00     0.00
## 2710                             Activision     0.39     0.01     0.00
## 2711                             Activision     0.19     0.05     0.00
## 2712                             Activision     0.19     0.00     0.00
## 2713                       Activision Value     0.04     0.01     0.00
## 2714                             Activision     0.15     0.00     0.00
## 2715                             Activision     0.10     0.00     0.00
## 2716                             Activision     0.04     0.00     0.00
## 2717                             Activision     0.02     0.01     0.00
## 2718                             Activision     0.53     0.02     0.00
## 2719                             Activision     0.30     0.12     0.00
## 2720                             Activision     0.25     0.01     0.00
## 2721                             Activision     0.19     0.05     0.00
## 2722                             Activision     0.19     0.04     0.00
## 2723                             Activision     0.15     0.03     0.00
## 2724                             Activision     0.13     0.03     0.00
## 2725                             Activision     0.13     0.00     0.00
## 2726                             Activision     0.14     0.08     0.00
## 2727                             Activision     0.18     0.05     0.00
## 2728                             Activision     0.08     0.02     0.00
## 2729                             Activision     0.05     0.01     0.00
## 2730                             Activision     0.31     0.24     0.00
## 2731                             Activision     0.15     0.04     0.00
## 2732                             Activision     0.14     0.05     0.00
## 2733                             Activision     0.09     0.02     0.00
## 2734                     Namco Bandai Games     0.06     0.02     0.00
## 2735                     Namco Bandai Games     0.00     0.03     0.00
## 2736                     Namco Bandai Games     0.03     0.00     0.00
## 2737                     Namco Bandai Games     0.00     0.01     0.00
## 2738                             Infogrames     0.08     0.06     0.00
## 2739                             Infogrames     0.10     0.04     0.00
## 2740                             Infogrames     0.10     0.03     0.00
## 2741                             Infogrames     0.04     0.01     0.00
## 2742                                    THQ     0.11     0.07     0.00
## 2743                                    THQ     0.11     0.06     0.00
## 2744                                    THQ     0.10     0.04     0.00
## 2745                                    THQ     0.09     0.02     0.00
## 2746                        Electronic Arts     0.21     0.17     0.16
## 2747                        Electronic Arts     0.14     0.04     0.00
## 2748                        Electronic Arts     0.04     0.01     0.00
## 2749                                   Sega     0.00     0.00     0.13
## 2750                                  Spike     0.00     0.00     0.04
## 2751                                  Spike     0.00     0.00     0.02
## 2752                          Vivendi Games     0.85     0.76     0.00
## 2753                          Vivendi Games     0.33     0.10     0.00
## 2754                          Vivendi Games     0.08     0.00     0.00
## 2755                     Namco Bandai Games     0.00     0.00     0.23
## 2756                     Namco Bandai Games     0.00     0.00     0.08
## 2757                     Namco Bandai Games     0.00     0.00     0.07
## 2758                  Acclaim Entertainment     0.41     0.32     0.00
## 2759                  Acclaim Entertainment     0.36     0.07     0.00
## 2760                  Acclaim Entertainment     0.22     0.06     0.00
## 2761                                  PQube     0.02     0.01     0.00
## 2762                                  PQube     0.01     0.01     0.00
## 2763                                  PQube     0.02     0.00     0.00
## 2764                  Acclaim Entertainment     0.17     0.13     0.00
## 2765                  Acclaim Entertainment     0.05     0.01     0.00
## 2766                  Acclaim Entertainment     0.04     0.01     0.00
## 2767                      bitComposer Games     0.10     0.06     0.00
## 2768                      bitComposer Games     0.06     0.02     0.00
## 2769                      bitComposer Games     0.00     0.02     0.00
## 2770                   Nippon Ichi Software     0.09     0.02     0.08
## 2771                                Acquire     0.08     0.00     0.01
## 2772                   Nippon Ichi Software     0.05     0.01     0.04
## 2773                        Electronic Arts     0.22     0.25     0.04
## 2774                        Electronic Arts     0.27     0.15     0.04
## 2775                        Electronic Arts     0.00     0.10     0.00
## 2776                                   Sega     0.55     0.40     0.00
## 2777                                   Sega     0.41     0.47     0.00
## 2778                                   Sega     0.00     0.17     0.00
## 2779                                   Sega     0.36     0.37     0.00
## 2780                                   Sega     0.20     0.31     0.00
## 2781                                   Sega     0.10     0.06     0.00
## 2782                                   Sega     0.19     0.18     0.00
## 2783                                   Sega     0.23     0.13     0.00
## 2784                                   Sega     0.00     0.03     0.00
## 2785                    Brash Entertainment     0.12     0.00     0.00
## 2786                    Brash Entertainment     0.04     0.03     0.00
## 2787                      Eidos Interactive     0.05     0.00     0.00
## 2788                              505 Games     0.07     0.03     0.00
## 2789                              505 Games     0.08     0.01     0.00
## 2790                              505 Games     0.08     0.01     0.00
## 2791                        Kadokawa Shoten     0.00     0.00     0.15
## 2792                             Enterbrain     0.00     0.00     0.13
## 2793                         Kadokawa Games     0.00     0.00     0.04
## 2794                 Zoo Digital Publishing     0.09     0.07     0.00
## 2795                             Activision     0.04     0.01     0.00
## 2796                 Zoo Digital Publishing     0.04     0.01     0.00
## 2797                             Activision     0.38     0.20     0.00
## 2798                             Activision     0.18     0.06     0.00
## 2799                             Activision     0.12     0.02     0.00
## 2800                             Activision     0.11     0.07     0.00
## 2801                             Activision     0.12     0.04     0.00
## 2802                            Just Flight     0.00     0.03     0.00
## 2803                                  PQube     0.04     0.05     0.10
## 2804                       Arc System Works     0.03     0.00     0.02
## 2805                                  PQube     0.00     0.03     0.02
## 2806                     JoWood Productions     0.09     0.08     0.00
## 2807                     JoWood Productions     0.03     0.04     0.01
## 2808                           Nordic Games     0.04     0.00     0.00
## 2809                                    THQ     0.25     0.00     0.00
## 2810                                    THQ     0.22     0.00     0.00
## 2811                                    THQ     0.12     0.00     0.00
## 2812                         GT Interactive     0.40     0.27     0.00
## 2813                           Midway Games     0.22     0.17     0.00
## 2814                           Midway Games     0.22     0.06     0.00
## 2815                                    3DO     0.34     0.07     0.00
## 2816                                    3DO     0.14     0.09     0.00
## 2817        Midas Interactive Entertainment     0.09     0.07     0.00
## 2818                        Electronic Arts     0.62     0.24     0.00
## 2819                        Electronic Arts     0.44     0.27     0.01
## 2820                        Electronic Arts     0.12     0.13     0.00
## 2821                             Tecmo Koei     0.02     0.01     0.04
## 2822                             Tecmo Koei     0.00     0.00     0.05
## 2823                             Tecmo Koei     0.01     0.00     0.00
## 2824                            Codemasters     0.00     0.23     0.00
## 2825                            Codemasters     0.00     0.19     0.00
## 2826                            Codemasters     0.00     0.16     0.00
## 2827                                Ubisoft     3.28     1.65     0.07
## 2828                                Ubisoft     1.91     2.00     0.09
## 2829                                Ubisoft     0.01     0.83     0.00
## 2830                                Ubisoft     0.02     0.06     0.01
## 2831                                Ubisoft     0.01     0.05     0.01
## 2832                                Ubisoft     0.00     0.01     0.00
## 2833                                Ubisoft     2.54     1.95     0.21
## 2834                                Ubisoft     3.10     1.56     0.08
## 2835                                Ubisoft     0.01     0.45     0.00
## 2836                                Ubisoft     0.80     1.92     0.06
## 2837                                Ubisoft     0.61     0.56     0.00
## 2838                                Ubisoft     0.10     0.08     0.00
## 2839                                Ubisoft     2.84     0.39     0.03
## 2840                                Ubisoft     1.87     0.57     0.11
## 2841                                Ubisoft     0.15     0.34     0.00
## 2842                                Ubisoft     1.41     2.02     0.10
## 2843                                Ubisoft     2.25     1.47     0.04
## 2844                                Ubisoft     0.14     0.48     0.00
## 2845                                Ubisoft     0.46     0.62     0.06
## 2846                                Ubisoft     0.58     0.38     0.00
## 2847                                Ubisoft     0.04     0.02     0.00
## 2848                                Ubisoft     1.18     1.96     0.08
## 2849                                Ubisoft     2.26     0.89     0.00
## 2850                                Ubisoft     0.17     0.33     0.00
## 2851                             Tecmo Koei     0.01     0.02     0.06
## 2852                             Tecmo Koei     0.00     0.00     0.06
## 2853                             Tecmo Koei     0.00     0.00     0.03
## 2854                                    THQ     0.12     0.09     0.00
## 2855                                    THQ     0.17     0.01     0.00
## 2856                                    THQ     0.11     0.01     0.00
## 2857                  Acclaim Entertainment     0.07     0.06     0.00
## 2858                  Acclaim Entertainment     0.08     0.02     0.00
## 2859                  Acclaim Entertainment     0.05     0.01     0.00
## 2860                                  Atari     0.24     0.19     0.00
## 2861                                  Atari     0.31     0.11     0.00
## 2862                             Infogrames     0.10     0.03     0.00
## 2863                                  Atari     0.12     0.00     0.00
## 2864                                  Atari     0.04     0.00     0.00
## 2865                                  Atari     0.01     0.01     0.00
## 2866                                  Atari     0.08     0.07     0.00
## 2867                                  Atari     0.11     0.00     0.00
## 2868                                  Atari     0.10     0.00     0.00
## 2869                                  Atari     0.20     0.00     0.00
## 2870                                  Atari     0.08     0.07     0.00
## 2871                                  Atari     0.07     0.00     0.00
## 2872                                  Atari     0.16     0.00     0.00
## 2873                                  Atari     0.10     0.00     0.00
## 2874                                  Atari     0.03     0.02     0.00
## 2875                                  Atari     0.16     0.00     0.00
## 2876                                  Atari     0.12     0.00     0.00
## 2877                                  Atari     0.11     0.00     0.00
## 2878                                  Atari     0.15     0.00     0.00
## 2879                                  Atari     0.14     0.00     0.00
## 2880                                  Atari     0.09     0.00     0.00
## 2881                     Empire Interactive     0.56     0.44     0.00
## 2882                     Empire Interactive     0.14     0.04     0.00
## 2883                     Empire Interactive     0.03     0.01     0.00
## 2884                             Activision     0.51     0.00     0.00
## 2885                             Activision     0.18     0.00     0.00
## 2886                             Activision     0.09     0.07     0.00
## 2887                      Eidos Interactive     2.23     1.34     0.07
## 2888                      Eidos Interactive     2.20     0.97     0.02
## 2889                      Eidos Interactive     0.00     0.27     0.00
## 2890 Warner Bros. Interactive Entertainment     1.49     1.58     0.10
## 2891 Warner Bros. Interactive Entertainment     0.86     0.46     0.00
## 2892 Warner Bros. Interactive Entertainment     0.08     0.03     0.00
## 2893                                Ubisoft     0.27     0.21     0.00
## 2894                                Ubisoft     0.20     0.05     0.00
## 2895                                Ubisoft     0.13     0.05     0.00
## 2896                    TopWare Interactive     0.00     0.02     0.00
## 2897                    TopWare Interactive     0.00     0.04     0.00
## 2898                    TopWare Interactive     0.00     0.03     0.00
## 2899                   Take-Two Interactive     0.09     0.08     0.01
## 2900                   Take-Two Interactive     0.08     0.04     0.00
## 2901                   Take-Two Interactive     0.03     0.03     0.00
## 2902                        Electronic Arts     0.39     0.15     0.00
## 2903                        Electronic Arts     0.37     0.01     0.00
## 2904                        Electronic Arts     0.35     0.02     0.01
## 2905                        Electronic Arts     4.46     2.13     0.06
## 2906                        Electronic Arts     2.85     2.93     0.35
## 2907                        Electronic Arts     0.89     1.43     0.00
## 2908                        Electronic Arts     2.09     1.02     0.04
## 2909                        Electronic Arts     1.33     1.12     0.08
## 2910                        Electronic Arts     0.19     0.53     0.00
## 2911                                Ubisoft     0.36     0.01     0.00
## 2912                                Ubisoft     0.14     0.01     0.00
## 2913                                Ubisoft     0.08     0.00     0.00
## 2914                                Ubisoft     0.16     0.13     0.00
## 2915                                Ubisoft     0.08     0.02     0.00
## 2916                                Ubisoft     0.06     0.01     0.00
## 2917                   Take-Two Interactive     1.65     0.86     0.05
## 2918                   Take-Two Interactive     0.75     0.49     0.01
## 2919                   Take-Two Interactive     0.01     0.39     0.00
## 2920                   Take-Two Interactive     1.45     0.55     0.02
## 2921                   Take-Two Interactive     0.85     0.47     0.02
## 2922                   Take-Two Interactive     0.02     0.19     0.00
## 2923                   Take-Two Interactive     1.22     0.57     0.02
## 2924                   Take-Two Interactive     0.72     0.69     0.04
## 2925                   Take-Two Interactive     0.28     0.30     0.00
## 2926                             Tecmo Koei     0.07     0.04     0.03
## 2927                             Tecmo Koei     0.03     0.02     0.00
## 2928                             Tecmo Koei     0.00     0.00     0.03
## 2929                                  PQube     0.36     0.10     0.06
## 2930                                  PQube     0.21     0.08     0.04
## 2931                                  PQube     0.00     0.01     0.00
## 2932                                  PQube     0.03     0.05     0.02
## 2933                                  PQube     0.00     0.00     0.09
## 2934                       Arc System Works     0.00     0.00     0.01
## 2935                                Unknown     0.74     0.03     0.00
## 2936                           Midway Games     0.40     0.11     0.00
## 2937                           Midway Games     0.15     0.00     0.00
## 2938                      Eidos Interactive     0.19     0.15     0.00
## 2939                      Eidos Interactive     0.14     0.04     0.00
## 2940                      Eidos Interactive     0.04     0.01     0.00
## 2941                  Universal Interactive     0.20     0.16     0.00
## 2942                  Universal Interactive     0.16     0.05     0.00
## 2943                  Universal Interactive     0.09     0.02     0.00
## 2944                             Activision     0.22     0.37     0.02
## 2945                             Activision     0.25     0.28     0.00
## 2946                             Activision     0.01     0.04     0.00
## 2947                      Rising Star Games     0.11     0.02     0.03
## 2948                            Hudson Soft     0.00     0.00     0.15
## 2949                   Hudson Entertainment     0.06     0.00     0.00
## 2950                        Electronic Arts     0.43     0.03     0.00
## 2951                        Electronic Arts     0.25     0.00     0.00
## 2952                        Electronic Arts     0.09     0.07     0.00
## 2953                   Take-Two Interactive     2.39     0.73     0.03
## 2954                   Take-Two Interactive     1.20     0.62     0.00
## 2955                   Take-Two Interactive     0.01     0.14     0.00
## 2956                   Take-Two Interactive     0.46     0.22     0.01
## 2957                   Take-Two Interactive     0.25     0.26     0.05
## 2958                   Take-Two Interactive     0.11     0.15     0.00
## 2959                                    THQ     0.43     0.88     0.00
## 2960                                    THQ     0.17     0.04     0.00
## 2961                                    THQ     0.01     0.01     0.00
## 2962                                    THQ     0.18     0.11     0.00
## 2963                                    THQ     0.11     0.09     0.00
## 2964                                    THQ     0.19     0.00     0.00
## 2965                                    THQ     0.39     0.14     0.00
## 2966                                    THQ     0.19     0.15     0.00
## 2967                                    THQ     0.16     0.04     0.00
## 2968                     Bethesda Softworks     0.59     0.35     0.01
## 2969                     Bethesda Softworks     0.29     0.32     0.01
## 2970                     Bethesda Softworks     0.06     0.09     0.00
## 2971                                Ubisoft     0.44     0.34     0.00
## 2972                                Ubisoft     0.47     0.31     0.00
## 2973                                Ubisoft     0.00     0.02     0.00
## 2974                          Vivendi Games     0.09     0.07     0.00
## 2975                          Vivendi Games     0.09     0.03     0.00
## 2976                          Vivendi Games     0.02     0.01     0.00
## 2977                        Electronic Arts     0.61     0.32     0.01
## 2978                        Electronic Arts     0.23     0.20     0.01
## 2979                        Electronic Arts     0.07     0.07     0.00
## 2980                   Take-Two Interactive     0.53     0.40     0.03
## 2981                   Take-Two Interactive     0.17     0.29     0.00
## 2982                   Take-Two Interactive     0.00     0.02     0.00
## 2983                  Acclaim Entertainment     0.36     0.28     0.00
## 2984                  Acclaim Entertainment     0.23     0.06     0.00
## 2985                  Acclaim Entertainment     0.09     0.03     0.00
## 2986                  Acclaim Entertainment     0.42     0.32     0.00
## 2987                  Acclaim Entertainment     0.18     0.05     0.00
## 2988                  Acclaim Entertainment     0.12     0.03     0.00
## 2989                        Electronic Arts     0.00     0.08     0.00
## 2990                        Electronic Arts     0.00     0.06     0.01
## 2991                        Electronic Arts     0.00     0.03     0.00
## 2992                        Electronic Arts     0.75     0.03     0.00
## 2993                        Electronic Arts     0.32     0.19     0.00
## 2994                        Electronic Arts     0.42     0.05     0.00
## 2995                             Activision     0.15     0.02     0.00
## 2996                             Activision     0.06     0.03     0.00
## 2997                             Activision     0.07     0.02     0.00
## 2998                             Activision     0.58     0.00     0.00
## 2999                       Activision Value     0.10     0.08     0.00
## 3000                       Activision Value     0.06     0.00     0.00
## 3001                       Activision Value     1.58     0.00     0.00
## 3002                       Activision Value     0.37     0.00     0.00
## 3003                       Activision Value     0.25     0.00     0.00
## 3004                             Activision     0.34     0.02     0.00
## 3005                             Activision     0.24     0.02     0.00
## 3006                             Activision     0.17     0.03     0.00
## 3007                             Activision     0.03     0.00     0.00
## 3008                             Activision     0.02     0.00     0.00
## 3009                             Activision     0.02     0.00     0.00
## 3010                             Activision     0.19     0.15     0.00
## 3011                             Activision     0.08     0.02     0.00
## 3012                             Activision     0.03     0.01     0.00
## 3013                             Activision     0.21     0.16     0.00
## 3014                             Activision     0.17     0.00     0.00
## 3015                             Activision     0.16     0.00     0.00
## 3016                             Activision     0.15     0.05     0.00
## 3017                             Activision     0.11     0.05     0.00
## 3018                             Activision     0.14     0.03     0.00
## 3019                       Activision Value     0.13     0.11     0.00
## 3020                       Activision Value     0.06     0.00     0.00
## 3021                       Activision Value     0.04     0.00     0.00
## 3022                             Activision     1.48     0.92     0.01
## 3023                             Activision     0.66     0.40     0.00
## 3024                             Activision     0.25     0.07     0.00
## 3025                             Activision     1.51     1.12     0.01
## 3026                             Activision     0.78     0.40     0.00
## 3027                             Activision     0.31     0.08     0.00
## 3028                             Activision     8.52     3.63     0.08
## 3029                             Activision     4.99     3.69     0.38
## 3030                             Activision     0.01     0.79     0.00
## 3031                                Ubisoft     0.35     0.38     0.01
## 3032                                Ubisoft     0.30     0.24     0.00
## 3033                                Ubisoft     0.00     0.03     0.00
## 3034                                Ubisoft     0.12     0.13     0.00
## 3035                                Ubisoft     0.14     0.11     0.00
## 3036                                Ubisoft     0.05     0.05     0.00
## 3037                     BAM! Entertainment     0.03     0.02     0.00
## 3038                     BAM! Entertainment     0.02     0.01     0.00
## 3039                     BAM! Entertainment     0.02     0.00     0.00
## 3040                    Crave Entertainment     0.07     0.01     0.00
## 3041                    Crave Entertainment     0.07     0.00     0.00
## 3042                    Crave Entertainment     0.06     0.00     0.00
## 3043           Konami Digital Entertainment     0.03     0.13     0.02
## 3044           Konami Digital Entertainment     0.02     0.07     0.00
## 3045           Konami Digital Entertainment     0.01     0.03     0.00
## 3046                             Tecmo Koei     0.06     0.05     0.08
## 3047                             Tecmo Koei     0.05     0.04     0.01
## 3048                             Tecmo Koei     0.00     0.05     0.00
## 3049                                    5pb     0.00     0.00     0.05
## 3050                                    5pb     0.00     0.00     0.01
## 3051                                    5pb     0.00     0.00     0.01
## 3052                                    5pb     0.00     0.00     0.04
## 3053                                    5pb     0.00     0.00     0.02
## 3054                                    5pb     0.00     0.00     0.01
## 3055                                Ubisoft     0.19     0.15     0.00
## 3056                                Ubisoft     0.10     0.03     0.00
## 3057                                Ubisoft     0.03     0.01     0.00
## 3058                 Zoo Digital Publishing     0.33     0.01     0.00
## 3059                 Zoo Digital Publishing     0.13     0.00     0.00
## 3060                 Zoo Digital Publishing     0.03     0.01     0.00
## 3061                            Codemasters     0.28     0.01     0.00
## 3062                            Codemasters     0.17     0.01     0.00
## 3063                            Codemasters     0.00     0.01     0.00
## 3064                            Global Star     0.05     0.04     0.00
## 3065                            Global Star     0.04     0.01     0.00
## 3066                            Global Star     0.01     0.00     0.00
## 3067                            Codemasters     0.01     0.71     0.01
## 3068                            Codemasters     0.08     0.02     0.00
## 3069                            Codemasters     0.00     0.01     0.00
## 3070                   Take-Two Interactive     0.11     0.00     0.00
## 3071                   Take-Two Interactive     0.07     0.02     0.00
## 3072                                Unknown     0.12     0.10     0.00
## 3073                   Take-Two Interactive     0.17     0.13     0.00
## 3074                   Take-Two Interactive     0.16     0.00     0.00
## 3075                   Take-Two Interactive     0.13     0.00     0.00
## 3076                      Eidos Interactive     0.08     0.09     0.00
## 3077                      Eidos Interactive     0.05     0.10     0.00
## 3078                      Eidos Interactive     0.00     0.01     0.00
## 3079                           Gotham Games     0.98     0.53     0.00
## 3080                                    SCi     0.48     0.37     0.00
## 3081                                    SCi     0.06     0.02     0.00
## 3082                                    SCi     0.38     0.29     0.00
## 3083                                    SCi     0.21     0.06     0.00
## 3084                                    SCi     0.03     0.01     0.00
## 3085                            D3Publisher     0.06     0.04     0.00
## 3086                            D3Publisher     0.05     0.00     0.00
## 3087                            D3Publisher     0.04     0.00     0.00
## 3088                         TDK Mediactive     0.65     0.51     0.00
## 3089                         TDK Mediactive     0.20     0.07     0.00
## 3090                         TDK Mediactive     0.18     0.05     0.00
## 3091                  Universal Interactive     2.07     2.29     0.24
## 3092                  Universal Interactive     0.59     0.57     0.00
## 3093                  Universal Interactive     0.46     0.12     0.00
## 3094                  Acclaim Entertainment     1.13     1.12     0.06
## 3095                                   Sega     1.10     0.51     0.12
## 3096                  Acclaim Entertainment     0.36     0.09     0.02
## 3097                                Ubisoft     0.06     0.05     0.00
## 3098                                Ubisoft     0.02     0.01     0.00
## 3099                                Ubisoft     0.01     0.00     0.00
## 3100                        Electronic Arts     0.70     0.50     0.02
## 3101                        Electronic Arts     0.45     0.57     0.06
## 3102                        Electronic Arts     0.16     0.45     0.00
## 3103                        Electronic Arts     0.51     0.33     0.01
## 3104                        Electronic Arts     0.26     0.43     0.03
## 3105                        Electronic Arts     0.17     0.39     0.00
## 3106                             Activision     0.64     0.12     0.00
## 3107                             Activision     0.47     0.19     0.00
## 3108                             Activision     0.49     0.09     0.00
## 3109                            Codemasters     0.07     0.01     0.00
## 3110                            Codemasters     0.06     0.01     0.00
## 3111                            Codemasters     0.00     0.01     0.00
## 3112           Konami Digital Entertainment     0.29     0.04     0.00
## 3113           Konami Digital Entertainment     0.12     0.05     0.00
## 3114           Konami Digital Entertainment     0.08     0.00     0.00
## 3115                        Electronic Arts     0.64     0.28     0.04
## 3116                        Electronic Arts     0.63     0.20     0.02
## 3117                        Electronic Arts     0.12     0.03     0.01
## 3118                     Namco Bandai Games     0.75     0.54     0.54
## 3119                     Namco Bandai Games     0.64     0.28     0.00
## 3120                     Namco Bandai Games     0.00     0.06     0.00
## 3121                     Namco Bandai Games     0.58     0.44     0.33
## 3122                     Namco Bandai Games     0.23     0.09     0.00
## 3123                     Namco Bandai Games     0.00     0.05     0.00
## 3124                                    THQ     0.11     0.08     0.00
## 3125                                    THQ     0.08     0.02     0.00
## 3126                                    THQ     0.04     0.01     0.00
## 3127                                 Capcom     0.18     0.12     0.00
## 3128                                 Capcom     0.19     0.09     0.00
## 3129                                 Capcom     0.00     0.01     0.00
## 3130                                    THQ     0.67     0.29     0.01
## 3131                                    THQ     0.07     0.06     0.00
## 3132                                    THQ     0.01     0.01     0.00
## 3133                                Ubisoft     0.00     0.32     0.00
## 3134                                Ubisoft     0.13     0.06     0.00
## 3135                                Ubisoft     0.07     0.03     0.00
## 3136                            Deep Silver     1.48     0.71     0.00
## 3137                            Deep Silver     1.08     0.75     0.15
## 3138                            Deep Silver     0.12     0.07     0.00
## 3139                            Deep Silver     0.44     0.27     0.01
## 3140                            Deep Silver     0.26     0.20     0.07
## 3141                            Deep Silver     0.00     0.07     0.00
## 3142                                 Capcom     0.75     0.53     0.09
## 3143                                 Capcom     0.43     0.57     0.15
## 3144                                 Capcom     0.10     0.02     0.00
## 3145                                 Capcom     0.11     0.08     0.10
## 3146                                 Capcom     0.17     0.09     0.00
## 3147                                 Capcom     0.04     0.02     0.00
## 3148                        Electronic Arts     1.05     0.67     0.00
## 3149                        Electronic Arts     0.89     0.40     0.00
## 3150                        Electronic Arts     0.00     0.53     0.00
## 3151                        Electronic Arts     0.94     0.45     0.00
## 3152                        Electronic Arts     0.73     0.50     0.00
## 3153                        Electronic Arts     0.13     0.15     0.00
## 3154                        Electronic Arts     0.44     0.38     0.00
## 3155                        Electronic Arts     0.64     0.28     0.00
## 3156                        Electronic Arts     0.02     0.15     0.00
## 3157                    Crave Entertainment     0.12     0.00     0.00
## 3158                    Crave Entertainment     0.08     0.00     0.00
## 3159                    Crave Entertainment     0.08     0.00     0.00
## 3160                              Mindscape     1.15     0.41     0.00
## 3161                              Zoo Games     1.22     0.00     0.00
## 3162                 Focus Home Interactive     0.00     0.01     0.00
## 3163           Konami Digital Entertainment     0.31     0.02     0.00
## 3164           Konami Digital Entertainment     0.25     0.05     0.00
## 3165           Konami Digital Entertainment     0.25     0.03     0.00
## 3166                        Electronic Arts     0.86     0.67     0.00
## 3167                        Electronic Arts     0.17     0.05     0.00
## 3168                        Electronic Arts     0.43     0.10     0.00
## 3169                           Trion Worlds     0.38     0.15     0.00
## 3170                           Trion Worlds     0.19     0.11     0.00
## 3171                           Trion Worlds     0.14     0.04     0.00
## 3172                            D3Publisher     0.19     0.12     0.00
## 3173                            D3Publisher     0.05     0.08     0.00
## 3174                            D3Publisher     0.05     0.04     0.00
## 3175                            Square Enix     0.10     0.18     0.00
## 3176                            Square Enix     0.08     0.06     0.00
## 3177                            Square Enix     0.00     0.02     0.00
## 3178                            Codemasters     0.16     0.67     0.00
## 3179                            Codemasters     0.38     0.40     0.00
## 3180                            Codemasters     0.00     0.02     0.00
## 3181                            Codemasters     0.27     0.59     0.01
## 3182                            Codemasters     0.23     0.41     0.01
## 3183                            Codemasters     0.00     0.13     0.00
## 3184                            Codemasters     0.03     0.24     0.00
## 3185                            Codemasters     0.03     0.08     0.00
## 3186                            Codemasters     0.00     0.03     0.00
## 3187                                  Atari     0.05     0.04     0.00
## 3188                                  Atari     0.03     0.01     0.00
## 3189                                  Atari     0.01     0.00     0.00
## 3190                                  Atari     0.08     0.06     0.00
## 3191                     Namco Bandai Games     0.07     0.02     0.00
## 3192                                  Atari     0.02     0.01     0.00
## 3193             Disney Interactive Studios     0.01     0.08     0.00
## 3194             Disney Interactive Studios     0.00     0.05     0.00
## 3195             Disney Interactive Studios     0.01     0.01     0.00
## 3196             Disney Interactive Studios     1.08     0.28     0.00
## 3197             Disney Interactive Studios     0.10     0.02     0.00
## 3198             Disney Interactive Studios     0.17     0.05     0.00
## 3199             Disney Interactive Studios     0.67     0.30     0.00
## 3200             Disney Interactive Studios     0.30     0.23     0.00
## 3201             Disney Interactive Studios     0.37     0.15     0.00
## 3202                   Take-Two Interactive     0.18     0.14     0.00
## 3203                   Take-Two Interactive     0.08     0.02     0.00
## 3204                   Take-Two Interactive     0.07     0.02     0.00
## 3205                                Ubisoft     0.09     0.03     0.00
## 3206                                Ubisoft     0.06     0.05     0.00
## 3207                                Ubisoft     0.05     0.01     0.00
## 3208                 Focus Home Interactive     0.09     0.12     0.02
## 3209                 Focus Home Interactive     0.04     0.02     0.00
## 3210                 Focus Home Interactive     0.00     0.02     0.00
## 3211                               Nintendo     1.57     0.62     0.55
## 3212                                 Coleco     1.36     0.08     0.00
## 3213                               Nintendo     0.23     0.05     0.84
## 3214                               Nintendo     4.36     1.71     3.00
## 3215                               Nintendo     1.04     0.72     0.30
## 3216                               Nintendo     1.20     0.48     0.29
## 3217                             Infogrames     0.43     0.30     0.00
## 3218                             Activision     0.10     0.04     0.00
## 3219                            id Software     0.02     0.00     0.00
## 3220                     Bethesda Softworks     0.49     0.66     0.02
## 3221                     Bethesda Softworks     0.39     0.23     0.00
## 3222                     Bethesda Softworks     0.06     0.10     0.00
## 3223                     Bethesda Softworks     0.26     0.22     0.00
## 3224                     Bethesda Softworks     0.28     0.17     0.00
## 3225                     Bethesda Softworks     0.00     0.02     0.00
## 3226                   Take-Two Interactive     0.50     0.03     0.00
## 3227                   Take-Two Interactive     0.27     0.16     0.00
## 3228                   Take-Two Interactive     0.19     0.15     0.00
## 3229                   Take-Two Interactive     0.10     0.01     0.00
## 3230                   Take-Two Interactive     0.08     0.01     0.00
## 3231                   Take-Two Interactive     0.02     0.01     0.00
## 3232                           Midway Games     0.08     0.06     0.00
## 3233                           Midway Games     0.04     0.01     0.00
## 3234                           Midway Games     0.02     0.01     0.00
## 3235                        Electronic Arts     0.72     0.30     0.01
## 3236                        Electronic Arts     0.40     0.27     0.05
## 3237                        Electronic Arts     0.23     0.33     0.00
## 3238                        Electronic Arts     0.33     0.10     0.00
## 3239                                  Spike     0.24     0.00     0.00
## 3240                        Electronic Arts     0.01     0.10     0.00
## 3241                        Electronic Arts     1.76     0.56     0.03
## 3242                        Electronic Arts     0.96     0.44     0.08
## 3243                        Electronic Arts     0.00     0.46     0.00
## 3244                     Namco Bandai Games     0.10     0.11     0.06
## 3245                     Namco Bandai Games     0.00     0.04     0.06
## 3246                     Namco Bandai Games     0.01     0.06     0.00
## 3247                                  Atari     0.38     0.01     0.00
## 3248                                  Atari     0.18     0.05     0.00
## 3249                                  Atari     0.16     0.04     0.00
## 3250                            Square Enix     0.00     0.00     0.30
## 3251                            Square Enix     0.00     0.00     0.22
## 3252                            Square Enix     0.00     0.00     0.12
## 3253                            Square Enix     0.00     0.00     0.28
## 3254                            Square Enix     0.00     0.00     0.23
## 3255                            Square Enix     0.00     0.00     0.13
## 3256                            Square Enix     0.00     0.00     0.96
## 3257                            Square Enix     0.00     0.00     0.40
## 3258                            Square Enix     0.00     0.00     0.17
## 3259                                  Atari     0.60     0.47     0.00
## 3260                                  Atari     0.36     0.38     0.00
## 3261                                  Atari     0.02     0.01     0.00
## 3262                     BAM! Entertainment     0.08     0.06     0.00
## 3263                     BAM! Entertainment     0.06     0.02     0.00
## 3264                     BAM! Entertainment     0.02     0.01     0.00
## 3265                                  Atari     0.12     0.10     0.03
## 3266                                  Atari     0.05     0.01     0.00
## 3267                                Ubisoft     0.01     0.01     0.00
## 3268                        Electronic Arts     0.06     0.05     0.00
## 3269                        Electronic Arts     0.02     0.01     0.00
## 3270                                    THQ     0.02     0.01     0.00
## 3271                   Take-Two Interactive     0.52     0.25     0.00
## 3272                   Take-Two Interactive     0.33     0.31     0.00
## 3273                   Take-Two Interactive     0.18     0.17     0.00
## 3274                            Square Enix     0.17     0.14     0.03
## 3275                            Square Enix     0.21     0.12     0.01
## 3276                            Square Enix     0.08     0.08     0.00
## 3277 Warner Bros. Interactive Entertainment     0.63     0.66     0.11
## 3278 Warner Bros. Interactive Entertainment     0.43     0.30     0.01
## 3279 Warner Bros. Interactive Entertainment     0.11     0.06     0.00
## 3280                             Tecmo Koei     0.18     0.08     0.41
## 3281                             Tecmo Koei     0.15     0.06     0.06
## 3282                             Tecmo Koei     0.12     0.09     0.00
## 3283                             Tecmo Koei     0.09     0.11     0.06
## 3284                             Tecmo Koei     0.02     0.03     0.11
## 3285                             Tecmo Koei     0.04     0.03     0.05
## 3286                     Namco Bandai Games     0.09     0.07     0.32
## 3287                     Namco Bandai Games     0.04     0.03     0.25
## 3288                     Namco Bandai Games     0.07     0.03     0.08
## 3289                         Ubisoft Annecy     0.03     0.03     0.38
## 3290                             Tecmo Koei     0.11     0.08     0.07
## 3291                             Tecmo Koei     0.13     0.06     0.02
## 3292                        Electronic Arts     0.78     0.40     0.00
## 3293                        Electronic Arts     0.52     0.28     0.00
## 3294                        Electronic Arts     0.18     0.17     0.00
## 3295                                  Kemco     0.02     0.01     0.00
## 3296                                  Kemco     0.01     0.00     0.00
## 3297                                  Kemco     0.01     0.00     0.00
## 3298                             Activision     0.30     0.11     0.00
## 3299                             Activision     0.23     0.07     0.00
## 3300                             Activision     0.01     0.00     0.00
## 3301                                  Atari     1.78     1.12     0.09
## 3302                                  Atari     0.72     0.43     0.01
## 3303                                  Atari     0.34     0.09     0.02
## 3304                          Vivendi Games     0.13     0.02     0.00
## 3305                          Vivendi Games     0.12     0.01     0.00
## 3306                          Vivendi Games     0.10     0.00     0.00
## 3307                   Take-Two Interactive     0.35     0.41     0.05
## 3308                   Take-Two Interactive     0.36     0.20     0.00
## 3309                   Take-Two Interactive     0.07     0.10     0.00
## 3310 Warner Bros. Interactive Entertainment     0.32     0.15     0.00
## 3311 Warner Bros. Interactive Entertainment     0.19     0.21     0.01
## 3312 Warner Bros. Interactive Entertainment     0.01     0.05     0.00
## 3313 Warner Bros. Interactive Entertainment     0.21     0.17     0.01
## 3314 Warner Bros. Interactive Entertainment     0.30     0.11     0.01
## 3315 Warner Bros. Interactive Entertainment     0.04     0.08     0.00
## 3316                        Electronic Arts     0.05     0.04     0.02
## 3317                        Electronic Arts     0.02     0.01     0.00
## 3318              Destination Software, Inc     0.01     0.01     0.00
## 3319                            Codemasters     0.25     0.76     0.08
## 3320                            Codemasters     0.18     0.59     0.01
## 3321                            Codemasters     0.00     0.05     0.00
## 3322                            Codemasters     0.12     0.64     0.05
## 3323                            Codemasters     0.10     0.35     0.00
## 3324                            Codemasters     0.01     0.11     0.00
## 3325                            Codemasters     0.07     0.31     0.02
## 3326                            Codemasters     0.08     0.15     0.00
## 3327                            Codemasters     0.00     0.09     0.00
## 3328                            Codemasters     0.09     0.44     0.03
## 3329                            Codemasters     0.08     0.15     0.00
## 3330                            Codemasters     0.00     0.04     0.00
## 3331                            Codemasters     0.01     0.21     0.01
## 3332                            Codemasters     0.01     0.07     0.00
## 3333                            Codemasters     0.00     0.02     0.00
## 3334                            Codemasters     0.06     0.21     0.00
## 3335                            Codemasters     0.07     0.18     0.00
## 3336                            Codemasters     0.00     0.02     0.00
## 3337                        Electronic Arts     0.31     0.24     0.00
## 3338                        Electronic Arts     0.14     0.04     0.00
## 3339                        Electronic Arts     0.08     0.06     0.00
## 3340                        Electronic Arts     0.08     0.18     0.00
## 3341                        Electronic Arts     0.12     0.14     0.00
## 3342                        Electronic Arts     0.07     0.02     0.00
## 3343                     Bethesda Softworks     3.39     1.03     0.09
## 3344                     Bethesda Softworks     2.15     1.20     0.07
## 3345                     Bethesda Softworks     0.02     0.88     0.00
## 3346                     Bethesda Softworks     2.47     3.15     0.24
## 3347                     Bethesda Softworks     2.45     1.26     0.01
## 3348                     Bethesda Softworks     0.50     0.63     0.00
## 3349                     Bethesda Softworks     2.65     1.06     0.04
## 3350                     Bethesda Softworks     1.52     1.08     0.10
## 3351                     Bethesda Softworks     0.58     0.45     0.00
## 3352                        Electronic Arts     0.13     0.04     0.00
## 3353                        Electronic Arts     0.08     0.02     0.00
## 3354                        Electronic Arts     0.07     0.00     0.00
## 3355                             Activision     0.41     0.01     0.00
## 3356                             Activision     0.20     0.06     0.00
## 3357                             Activision     0.19     0.05     0.00
## 3358                                Ubisoft     0.71     0.69     0.02
## 3359                                Ubisoft     0.43     0.70     0.01
## 3360                                Ubisoft     0.01     0.45     0.00
## 3361                                Ubisoft     0.88     1.75     0.10
## 3362                                Ubisoft     1.38     1.35     0.02
## 3363                                Ubisoft     0.21     0.62     0.00
## 3364                                Ubisoft     0.59     1.16     0.06
## 3365                                Ubisoft     0.46     0.32     0.00
## 3366                                Ubisoft     0.04     0.09     0.00
## 3367                 Focus Home Interactive     0.00     0.80     0.00
## 3368                 Focus Home Interactive     0.22     0.13     0.00
## 3369                 Focus Home Interactive     0.00     0.10     0.02
## 3370                        Electronic Arts     0.72     0.03     0.00
## 3371                        Electronic Arts     0.42     0.16     0.00
## 3372                        Electronic Arts     0.13     0.03     0.00
## 3373                                 Square     0.24     0.09     1.33
## 3374                             SquareSoft     0.00     0.00     0.76
## 3375                             SquareSoft     0.00     0.00     0.25
## 3376                            Square Enix     0.37     0.32     0.15
## 3377                                Unknown     0.00     0.00     0.81
## 3378                            Square Enix     0.15     0.07     0.00
## 3379                            Square Enix     0.86     0.48     0.00
## 3380                            Square Enix     0.36     0.33     0.28
## 3381                            Square Enix     0.32     0.22     0.08
## 3382                            Square Enix     0.00     0.05     0.06
## 3383                            Square Enix     0.01     0.00     0.01
## 3384                            Square Enix     0.01     0.01     0.00
## 3385                           Midway Games     0.09     0.07     0.00
## 3386                           Midway Games     0.06     0.02     0.00
## 3387                           Midway Games     0.02     0.01     0.00
## 3388                             Tecmo Koei     0.00     0.00     0.30
## 3389                             Tecmo Koei     0.03     0.01     0.02
## 3390                             Tecmo Koei     0.00     0.00     0.02
## 3391                                Xplosiv     0.06     0.40     0.00
## 3392                                Xplosiv     0.10     0.08     0.00
## 3393                                Xplosiv     0.05     0.08     0.00
## 3394                                Unknown     0.01     0.00     0.00
## 3395                           Midway Games     0.05     0.04     0.00
## 3396                           Midway Games     0.02     0.01     0.00
## 3397                        Electronic Arts     0.25     0.20     0.00
## 3398                        Electronic Arts     0.17     0.05     0.00
## 3399                        Electronic Arts     0.10     0.03     0.00
## 3400                        Electronic Arts     0.52     0.41     0.00
## 3401                        Electronic Arts     0.07     0.02     0.00
## 3402                 Zoo Digital Publishing     0.01     0.00     0.00
## 3403                           Midway Games     0.04     0.03     0.00
## 3404                           Midway Games     0.02     0.00     0.00
## 3405                           Midway Games     0.01     0.00     0.00
## 3406                            Deep Silver     0.00     0.03     0.00
## 3407                            Deep Silver     0.02     0.01     0.00
## 3408                            Deep Silver     0.02     0.00     0.00
## 3409           Konami Digital Entertainment     0.05     0.04     0.00
## 3410           Konami Digital Entertainment     0.04     0.01     0.00
## 3411           Konami Digital Entertainment     0.02     0.01     0.00
## 3412                            Square Enix     0.09     0.07     0.11
## 3413                            Square Enix     0.10     0.07     0.02
## 3414                            Square Enix     0.05     0.00     0.00
## 3415                            Codemasters     0.09     0.19     0.00
## 3416                            Codemasters     0.08     0.12     0.00
## 3417                            Codemasters     0.00     0.02     0.00
## 3418                    Crave Entertainment     0.03     0.03     0.00
## 3419                     JoWood Productions     0.02     0.01     0.00
## 3420                     JoWood Productions     0.02     0.00     0.00
## 3421                            Codemasters     0.07     0.23     0.01
## 3422                            Codemasters     0.08     0.17     0.00
## 3423                            Codemasters     0.00     0.06     0.00
## 3424                            Codemasters     0.05     0.11     0.01
## 3425                            Codemasters     0.03     0.06     0.00
## 3426                            Codemasters     0.00     0.02     0.00
## 3427                 Focus Home Interactive     0.15     0.08     0.00
## 3428                 Focus Home Interactive     0.10     0.11     0.00
## 3429                 Focus Home Interactive     0.00     0.07     0.00
## 3430                           Midway Games     0.56     0.44     0.00
## 3431                           Midway Games     0.14     0.04     0.00
## 3432                           Midway Games     0.13     0.04     0.00
## 3433                       Black Bean Games     0.15     0.17     0.00
## 3434                       Black Bean Games     0.00     0.07     0.00
## 3435                       Black Bean Games     0.03     0.05     0.00
## 3436                   Take-Two Interactive     1.04     1.24     0.03
## 3437                   Take-Two Interactive     0.59     0.99     0.13
## 3438                   Take-Two Interactive     0.00     0.08     0.00
## 3439                             Activision     0.10     0.08     0.00
## 3440                             Activision     0.10     0.03     0.00
## 3441                             Activision     0.06     0.01     0.00
## 3442                                 Jaleco     0.08     0.07     0.00
## 3443                                 Jaleco     0.06     0.02     0.00
## 3444                                 Jaleco     0.01     0.00     0.00
## 3445                        Scholastic Inc.     0.31     0.00     0.00
## 3446                        Scholastic Inc.     0.16     0.00     0.00
## 3447                        Scholastic Inc.     0.04     0.03     0.00
## 3448                   Take-Two Interactive     6.76     3.10     0.14
## 3449                   Take-Two Interactive     4.76     3.76     0.44
## 3450                   Take-Two Interactive     0.01     0.79     0.00
## 3451                              MTV Games     0.19     0.16     0.00
## 3452                              MTV Games     0.24     0.13     0.00
## 3453                              MTV Games     0.22     0.12     0.00
## 3454                  Majesco Entertainment     0.19     0.00     0.00
## 3455                              505 Games     0.12     0.00     0.00
## 3456                  Majesco Entertainment     0.03     0.00     0.00
## 3457                             Activision     0.03     0.00     0.00
## 3458                             Activision     0.02     0.01     0.00
## 3459                             Activision     0.01     0.00     0.00
## 3460                                Ubisoft     0.05     0.01     0.00
## 3461                                Ubisoft     0.03     0.01     0.00
## 3462                                Ubisoft     0.00     0.02     0.00
## 3463                                  PQube     0.03     0.01     0.04
## 3464                                  PQube     0.03     0.02     0.00
## 3465                                  PQube     0.01     0.02     0.00
## 3466                             Activision     0.48     0.44     0.00
## 3467                             Activision     0.47     0.32     0.00
## 3468                             Activision     0.33     0.35     0.00
## 3469                     Bigben Interactive     0.00     0.05     0.00
## 3470                     Bigben Interactive     0.00     0.04     0.00
## 3471                     Bigben Interactive     0.00     0.01     0.00
## 3472                           Midway Games     0.27     0.01     0.00
## 3473                           Midway Games     0.20     0.05     0.00
## 3474                           Midway Games     0.12     0.00     0.00
## 3475                                 Capcom     0.06     0.04     0.00
## 3476                                 Capcom     0.08     0.00     0.00
## 3477                                 Capcom     0.08     0.00     0.00
## 3478                        Electronic Arts     0.97     0.34     0.00
## 3479                        Electronic Arts     0.28     0.22     0.00
## 3480                        Electronic Arts     0.01     0.19     0.00
## 3481                        Electronic Arts     0.47     0.28     0.00
## 3482                        Electronic Arts     0.18     0.04     0.00
## 3483                        Electronic Arts     0.17     0.03     0.00
## 3484                                Unknown     0.17     0.00     0.00
## 3485                                Mastiff     0.11     0.00     0.00
## 3486                                Mastiff     0.02     0.00     0.00
## 3487           Konami Digital Entertainment     0.13     0.02     0.00
## 3488           Konami Digital Entertainment     0.10     0.00     0.00
## 3489           Konami Digital Entertainment     0.04     0.00     0.00
## 3490                            Codemasters     0.14     0.11     0.00
## 3491                            Codemasters     0.10     0.03     0.00
## 3492                            Codemasters     0.00     0.02     0.00
## 3493             Disney Interactive Studios     0.68     0.49     0.00
## 3494             Disney Interactive Studios     0.17     0.13     0.00
## 3495             Disney Interactive Studios     0.18     0.00     0.00
## 3496                      Eidos Interactive     1.36     1.15     0.04
## 3497                      Eidos Interactive     0.10     0.03     0.00
## 3498                      Eidos Interactive     0.76     0.38     0.00
## 3499                            Square Enix     0.59     1.07     0.07
## 3500                            Square Enix     0.68     0.90     0.01
## 3501                            Square Enix     0.03     0.17     0.00
## 3502                                    THQ     0.83     0.48     0.02
## 3503                                    THQ     0.32     0.40     0.04
## 3504                                    THQ     0.11     0.10     0.00
## 3505                            Deep Silver     0.05     0.19     0.03
## 3506                            Deep Silver     0.05     0.07     0.00
## 3507                            Deep Silver     0.00     0.02     0.00
## 3508                                    THQ     0.23     0.18     0.00
## 3509                                    THQ     0.12     0.04     0.00
## 3510                                    THQ     0.09     0.02     0.00
## 3511                                    THQ     0.29     0.23     0.00
## 3512                                    THQ     0.32     0.12     0.00
## 3513                                    THQ     0.08     0.02     0.00
## 3514                  Universal Interactive     0.52     0.41     0.00
## 3515                  Universal Interactive     0.25     0.07     0.00
## 3516                  Universal Interactive     0.15     0.04     0.00
## 3517                     Bethesda Softworks     0.12     0.08     0.02
## 3518                     Bethesda Softworks     0.13     0.07     0.00
## 3519                     Bethesda Softworks     0.03     0.01     0.00
## 3520            Sony Computer Entertainment     0.19     0.15     0.00
## 3521                     Namco Bandai Games     0.07     0.02     0.00
## 3522                     Namco Bandai Games     0.05     0.02     0.00
## 3523                                  Atari     0.07     0.06     0.00
## 3524                                  Atari     0.07     0.03     0.00
## 3525                                  Atari     0.00     0.02     0.00
## 3526                                Play It     0.08     0.06     0.00
## 3527                    Crave Entertainment     0.05     0.01     0.00
## 3528                    Crave Entertainment     0.03     0.01     0.00
## 3529                     Namco Bandai Games     0.01     0.00     0.00
## 3530                     Namco Bandai Games     0.03     0.03     0.00
## 3531                     Namco Bandai Games     0.03     0.02     0.00
## 3532                     Namco Bandai Games     0.04     0.06     0.20
## 3533                     Namco Bandai Games     0.00     0.07     0.17
## 3534                     Namco Bandai Games     0.07     0.14     0.00
## 3535                            Deep Silver     0.07     0.03     0.00
## 3536                            Deep Silver     0.06     0.02     0.00
## 3537                            Deep Silver     0.02     0.01     0.00
## 3538                        Electronic Arts     1.90     1.13     0.10
## 3539                        Electronic Arts     0.65     0.22     0.00
## 3540                        Electronic Arts     0.56     0.15     0.00
## 3541                             Activision     0.11     0.17     0.00
## 3542                             Activision     0.13     0.14     0.00
## 3543                             Activision     0.07     0.05     0.00
## 3544           Konami Digital Entertainment     0.00     0.00     0.17
## 3545           Konami Digital Entertainment     0.00     0.00     0.17
## 3546           Konami Digital Entertainment     0.00     0.00     0.11
## 3547           Konami Digital Entertainment     0.00     0.00     0.21
## 3548           Konami Digital Entertainment     0.00     0.00     0.15
## 3549           Konami Digital Entertainment     0.00     0.00     0.09
## 3550           Konami Digital Entertainment     0.00     0.00     0.26
## 3551           Konami Digital Entertainment     0.00     0.00     0.17
## 3552           Konami Digital Entertainment     0.00     0.00     0.10
## 3553           Konami Digital Entertainment     0.08     0.00     0.00
## 3554           Konami Digital Entertainment     0.07     0.00     0.00
## 3555           Konami Digital Entertainment     0.07     0.00     0.00
## 3556                                    THQ     0.30     0.11     0.00
## 3557                                    THQ     0.20     0.16     0.00
## 3558                                    THQ     0.07     0.02     0.00
## 3559           Home Entertainment Suppliers     0.09     0.21     0.00
## 3560           Home Entertainment Suppliers     0.00     0.20     0.00
## 3561           Home Entertainment Suppliers     0.00     0.04     0.00
## 3562                      Eidos Interactive     0.08     0.00     0.00
## 3563                      Eidos Interactive     0.03     0.03     0.00
## 3564                      Eidos Interactive     0.05     0.00     0.00
## 3565           Konami Digital Entertainment     0.13     0.10     0.00
## 3566           Konami Digital Entertainment     0.05     0.01     0.00
## 3567                          Vivendi Games     0.00     0.02     0.00
## 3568                      Eidos Interactive     0.10     0.03     0.01
## 3569                      Eidos Interactive     0.00     0.01     0.00
## 3570                      Eidos Interactive     0.01     0.01     0.00
## 3571                            Square Enix     0.45     0.94     0.06
## 3572                            Square Enix     0.59     0.85     0.02
## 3573                            Square Enix     0.00     0.10     0.00
## 3574                            Square Enix     0.46     1.02     0.07
## 3575                            Square Enix     0.42     0.38     0.00
## 3576                            Square Enix     0.03     0.11     0.00
## 3577                                Ubisoft     6.05     3.15     0.00
## 3578                                Ubisoft     1.47     0.40     0.00
## 3579                                Ubisoft     0.33     0.21     0.00
## 3580                                Ubisoft     0.29     0.09     0.00
## 3581                                Ubisoft     0.28     0.00     0.00
## 3582                                Ubisoft     0.10     0.10     0.00
## 3583                                Ubisoft     0.06     0.01     0.00
## 3584                                Ubisoft     0.05     0.01     0.00
## 3585                                Ubisoft     0.05     0.01     0.00
## 3586                     Namco Bandai Games     0.00     0.00     0.05
## 3587                     Namco Bandai Games     0.00     0.00     0.05
## 3588                     Namco Bandai Games     0.00     0.00     0.04
## 3589                            Square Enix     0.17     0.28     0.05
## 3590                            Square Enix     0.20     0.23     0.01
## 3591                            Square Enix     0.00     0.06     0.00
## 3592           Konami Digital Entertainment     0.15     0.12     0.00
## 3593           Konami Digital Entertainment     0.05     0.01     0.00
## 3594           Konami Digital Entertainment     0.05     0.01     0.00
## 3595           Konami Digital Entertainment     0.30     0.00     0.00
## 3596           Konami Digital Entertainment     0.11     0.00     0.00
## 3597           Konami Digital Entertainment     0.08     0.00     0.00
## 3598            Sony Computer Entertainment     0.34     0.27     0.00
## 3599                     Namco Bandai Games     0.18     0.05     0.00
## 3600                 Zoo Digital Publishing     0.02     0.01     0.00
## 3601           Konami Digital Entertainment     0.07     0.05     0.00
## 3602           Konami Digital Entertainment     0.04     0.01     0.00
## 3603           Konami Digital Entertainment     0.03     0.01     0.00
## 3604                        Electronic Arts     0.55     0.25     0.01
## 3605                        Electronic Arts     0.37     0.30     0.09
## 3606                        Electronic Arts     0.14     0.13     0.00
## 3607                             Tecmo Koei     0.00     0.00     0.09
## 3608                             Tecmo Koei     0.00     0.00     0.03
## 3609                             Tecmo Koei     0.00     0.00     0.01
## 3610                           Little Orbit     0.00     0.03     0.00
## 3611                           Little Orbit     0.00     0.02     0.00
## 3612                           Little Orbit     0.00     0.02     0.00
## 3613 Warner Bros. Interactive Entertainment     0.18     0.10     0.00
## 3614 Warner Bros. Interactive Entertainment     0.02     0.09     0.00
## 3615                                Unknown     0.00     0.03     0.00
## 3616                      Eidos Interactive     0.26     0.20     0.00
## 3617                      Eidos Interactive     0.14     0.04     0.00
## 3618                      Eidos Interactive     0.00     0.01     0.00
## 3619                                  Atari     0.08     0.15     0.00
## 3620                                  Atari     0.08     0.03     0.00
## 3621                                  Atari     0.00     0.01     0.00
## 3622                  Acclaim Entertainment     0.37     0.29     0.00
## 3623                  Acclaim Entertainment     0.10     0.03     0.00
## 3624                  Acclaim Entertainment     0.10     0.03     0.00
## 3625                       Black Bean Games     0.00     0.02     0.00
## 3626                       Black Bean Games     0.00     0.02     0.00
## 3627                       Black Bean Games     0.00     0.02     0.00
## 3628                            Square Enix     0.14     0.15     0.03
## 3629                            Square Enix     0.08     0.02     0.00
## 3630                            Square Enix     0.01     0.03     0.00
## 3631                                Level 5     0.00     0.00     0.19
## 3632                                Level 5     0.00     0.00     0.10
## 3633                                Level 5     0.00     0.00     0.04
## 3634                              Prototype     0.00     0.00     0.05
## 3635                              Prototype     0.00     0.00     0.04
## 3636                              Prototype     0.00     0.00     0.03
## 3637 Warner Bros. Interactive Entertainment     0.19     0.15     0.00
## 3638 Warner Bros. Interactive Entertainment     0.21     0.01     0.00
## 3639 Warner Bros. Interactive Entertainment     0.06     0.01     0.00
## 3640 Warner Bros. Interactive Entertainment     0.25     0.19     0.00
## 3641                        Electronic Arts     0.13     0.05     0.00
## 3642 Warner Bros. Interactive Entertainment     0.13     0.03     0.00
## 3643                            Square Enix     0.17     0.23     0.02
## 3644                            Square Enix     0.10     0.10     0.00
## 3645                            Square Enix     0.00     0.03     0.00
## 3646                                 Capcom     0.29     0.34     0.20
## 3647                                 Capcom     0.38     0.24     0.08
## 3648                                 Capcom     0.00     0.02     0.00
## 3649                                 Capcom     0.07     0.06     0.06
## 3650                                 Capcom     0.07     0.04     0.01
## 3651                                 Capcom     0.00     0.03     0.00
## 3652                                Ubisoft     0.18     0.34     0.00
## 3653                                Ubisoft     0.19     0.23     0.00
## 3654                                Ubisoft     0.00     0.01     0.00
## 3655            Sony Computer Entertainment     0.77     0.03     0.00
## 3656            Sony Computer Entertainment     0.29     0.00     0.00
## 3657            Sony Computer Entertainment     0.26     0.00     0.00
## 3658            Sony Computer Entertainment     0.64     0.00     0.00
## 3659            Sony Computer Entertainment     0.35     0.01     0.00
## 3660            Sony Computer Entertainment     0.30     0.00     0.00
## 3661            Sony Computer Entertainment     0.66     0.00     0.00
## 3662            Sony Computer Entertainment     0.16     0.13     0.00
## 3663            Sony Computer Entertainment     0.24     0.00     0.00
## 3664            Sony Computer Entertainment     0.66     0.00     0.00
## 3665            Sony Computer Entertainment     0.20     0.16     0.00
## 3666            Sony Computer Entertainment     0.19     0.00     0.00
## 3667            Sony Computer Entertainment     0.54     0.00     0.00
## 3668            Sony Computer Entertainment     0.15     0.00     0.00
## 3669            Sony Computer Entertainment     0.06     0.05     0.00
## 3670    Sony Computer Entertainment America     0.58     0.00     0.00
## 3671    Sony Computer Entertainment America     0.35     0.00     0.00
## 3672    Sony Computer Entertainment America     0.11     0.00     0.00
## 3673            Sony Computer Entertainment     0.67     0.08     0.00
## 3674            Sony Computer Entertainment     0.30     0.01     0.00
## 3675            Sony Computer Entertainment     0.03     0.00     0.00
## 3676           Konami Digital Entertainment     0.05     0.04     0.05
## 3677           Konami Digital Entertainment     0.12     0.00     0.01
## 3678                   Take-Two Interactive     0.05     0.00     0.00
## 3679                           Midway Games     0.26     0.20     0.00
## 3680                           Midway Games     0.07     0.02     0.00
## 3681                           Midway Games     0.03     0.01     0.00
## 3682                             Activision     0.13     0.10     0.00
## 3683                             Activision     0.07     0.02     0.00
## 3684                             Activision     0.04     0.00     0.00
## 3685                        Electronic Arts     1.10     0.06     0.00
## 3686                        Electronic Arts     0.44     0.13     0.00
## 3687                        Electronic Arts     0.20     0.05     0.00
## 3688                        Electronic Arts     1.26     0.07     0.00
## 3689                        Electronic Arts     0.70     0.20     0.00
## 3690                        Electronic Arts     0.25     0.07     0.00
## 3691                                    THQ     0.27     0.21     0.00
## 3692                                    THQ     0.11     0.04     0.00
## 3693                                    THQ     0.10     0.03     0.00
## 3694                                    THQ     0.14     0.11     0.00
## 3695                                    THQ     0.07     0.02     0.00
## 3696                                    THQ     0.07     0.02     0.00
## 3697                       Milestone S.r.l.     0.02     0.05     0.00
## 3698                       Milestone S.r.l.     0.02     0.02     0.00
## 3699                       Milestone S.r.l.     0.00     0.01     0.00
## 3700                        Electronic Arts     1.58     0.05     0.00
## 3701                        Electronic Arts     1.19     0.07     0.05
## 3702                        Electronic Arts     0.60     0.03     0.00
## 3703                     Illusion Softworks     0.34     0.27     0.00
## 3704                   Take-Two Interactive     0.17     0.05     0.00
## 3705                   Take-Two Interactive     0.00     0.04     0.00
## 3706                   Take-Two Interactive     0.84     0.56     0.00
## 3707                   Take-Two Interactive     0.50     0.72     0.04
## 3708                   Take-Two Interactive     0.17     0.17     0.00
## 3709                    Crave Entertainment     0.09     0.00     0.00
## 3710                               Abylight     0.07     0.00     0.00
## 3711                    Crave Entertainment     0.07     0.00     0.00
## 3712                   Take-Two Interactive     0.27     0.21     0.00
## 3713                   Take-Two Interactive     0.25     0.23     0.00
## 3714                   Take-Two Interactive     0.04     0.18     0.00
## 3715                                    THQ     0.11     0.07     0.00
## 3716                                    THQ     0.15     0.03     0.00
## 3717                                    THQ     0.13     0.04     0.00
## 3718                                 Capcom     0.31     0.24     0.13
## 3719                     Virgin Interactive     0.00     0.00     0.14
## 3720                                 Capcom     0.09     0.03     0.01
## 3721                        Electronic Arts     1.99     0.82     0.03
## 3722                        Electronic Arts     0.78     0.47     0.03
## 3723                        Electronic Arts     0.01     0.32     0.00
## 3724                        Electronic Arts     0.28     0.10     0.00
## 3725                        Electronic Arts     0.37     0.00     0.00
## 3726                        Electronic Arts     0.09     0.16     0.00
## 3727                   Take-Two Interactive     0.65     0.51     0.00
## 3728                   Take-Two Interactive     0.47     0.15     0.00
## 3729                   Take-Two Interactive     0.00     0.02     0.00
## 3730                   Take-Two Interactive     0.59     0.92     0.06
## 3731                   Take-Two Interactive     0.86     0.64     0.01
## 3732                   Take-Two Interactive     0.15     0.22     0.00
## 3733                        Electronic Arts     0.25     0.70     0.03
## 3734                        Electronic Arts     0.45     0.53     0.01
## 3735                        Electronic Arts     0.00     0.04     0.00
## 3736                        Electronic Arts     2.93     2.75     0.17
## 3737                        Electronic Arts     1.00     0.43     0.00
## 3738                        Electronic Arts     0.46     0.12     0.00
## 3739                        Electronic Arts     1.98     2.23     0.13
## 3740                        Electronic Arts     0.76     0.36     0.00
## 3741                        Electronic Arts     0.33     0.09     0.00
## 3742                        Electronic Arts     0.47     0.65     0.06
## 3743                        Electronic Arts     0.58     0.47     0.01
## 3744                        Electronic Arts     0.14     0.15     0.00
## 3745                                 Capcom     0.29     0.22     0.00
## 3746                                 Capcom     0.32     0.08     0.00
## 3747                                 Capcom     0.10     0.03     0.00
## 3748                        Electronic Arts     0.65     0.30     0.01
## 3749                        Electronic Arts     0.29     0.40     0.02
## 3750                        Electronic Arts     0.21     0.00     0.00
## 3751                          Vivendi Games     0.17     0.13     0.00
## 3752                          Vivendi Games     0.13     0.04     0.00
## 3753                          Vivendi Games     0.08     0.02     0.00
## 3754           Konami Digital Entertainment     0.16     0.18     0.05
## 3755           Konami Digital Entertainment     0.00     0.00     0.10
## 3756           Konami Digital Entertainment     0.00     0.00     0.01
## 3757                 Ignition Entertainment     0.12     0.01     0.00
## 3758                 Ignition Entertainment     0.02     0.00     0.02
## 3759                 Ignition Entertainment     0.00     0.00     0.01
## 3760                           Midway Games     0.72     0.56     0.00
## 3761                           Midway Games     0.33     0.08     0.00
## 3762                           Midway Games     0.13     0.03     0.00
## 3763                           Midway Games     0.33     0.26     0.00
## 3764                           Midway Games     0.24     0.05     0.00
## 3765                           Midway Games     0.13     0.03     0.00
## 3766                           Midway Games     0.08     0.06     0.00
## 3767                           Midway Games     0.06     0.02     0.00
## 3768                           Midway Games     0.05     0.01     0.00
## 3769                            Deep Silver     0.04     0.00     0.00
## 3770                            Deep Silver     0.01     0.01     0.00
## 3771                            Deep Silver     0.01     0.00     0.00
## 3772                              Zoo Games     0.30     0.00     0.00
## 3773                              Zoo Games     0.25     0.00     0.00
## 3774                              Zoo Games     0.11     0.00     0.00
## 3775                        Electronic Arts     0.51     0.51     0.01
## 3776                        Electronic Arts     0.31     0.59     0.02
## 3777                        Electronic Arts     0.00     0.05     0.00
## 3778                        Electronic Arts     0.10     0.14     0.02
## 3779                        Electronic Arts     0.08     0.05     0.00
## 3780                        Electronic Arts     0.01     0.03     0.00
## 3781                              LucasArts     0.00     0.14     0.00
## 3782                             Activision     0.00     0.08     0.00
## 3783                             Activision     0.00     0.05     0.00
## 3784                             Infogrames     0.25     0.19     0.00
## 3785                             Infogrames     0.14     0.04     0.00
## 3786                             Infogrames     0.10     0.03     0.00
## 3787                        Electronic Arts     0.24     0.44     0.00
## 3788                        Electronic Arts     0.16     0.18     0.00
## 3789                        Electronic Arts     0.16     0.10     0.00
## 3790                               Nintendo     0.46     0.29     1.96
## 3791                               Nintendo     0.67     0.41     1.05
## 3792                               Nintendo     0.26     0.19     0.22
## 3793                                Ubisoft     0.32     0.25     0.00
## 3794                                Ubisoft     0.07     0.03     0.00
## 3795                                Ubisoft     0.04     0.01     0.00
## 3796                      Eidos Interactive     0.28     0.02     0.00
## 3797                      Eidos Interactive     0.12     0.01     0.00
## 3798                      Eidos Interactive     0.05     0.04     0.00
## 3799                  Acclaim Entertainment     1.19     0.29     0.00
## 3800                  Acclaim Entertainment     1.03     0.27     0.00
## 3801            Sony Computer Entertainment     0.29     0.20     0.02
## 3802 Warner Bros. Interactive Entertainment     1.47     0.76     0.00
## 3803 Warner Bros. Interactive Entertainment     1.00     0.21     0.00
## 3804 Warner Bros. Interactive Entertainment     0.01     0.04     0.00
## 3805                           Midway Games     0.92     0.72     0.00
## 3806                           Midway Games     0.61     0.12     0.00
## 3807                           Midway Games     0.09     0.02     0.00
## 3808                                 Capcom     0.07     0.24     0.00
## 3809                                 Capcom     0.11     0.20     0.00
## 3810                                 Capcom     0.01     0.00     0.00
## 3811                        Electronic Arts     1.59     1.61     0.08
## 3812                        Electronic Arts     0.91     0.55     0.04
## 3813                        Electronic Arts     0.00     0.02     0.00
## 3814                        Electronic Arts     0.26     0.00     0.00
## 3815                        Electronic Arts     0.12     0.09     0.00
## 3816                        Electronic Arts     0.15     0.05     0.00
## 3817                        Electronic Arts     0.26     0.20     0.00
## 3818                        Electronic Arts     0.22     0.01     0.00
## 3819                        Electronic Arts     0.23     0.00     0.00
## 3820                        Electronic Arts     0.69     0.54     0.00
## 3821                        Electronic Arts     0.34     0.10     0.00
## 3822                        Electronic Arts     0.10     0.02     0.00
## 3823                             Activision     0.29     0.00     0.00
## 3824                             Activision     0.25     0.00     0.00
## 3825                             Activision     0.22     0.00     0.00
## 3826                             Infogrames     0.29     0.23     0.00
## 3827                             Infogrames     0.15     0.04     0.00
## 3828                             Infogrames     0.12     0.04     0.00
## 3829                        Electronic Arts     0.57     0.44     0.00
## 3830                        Electronic Arts     0.23     0.16     0.00
## 3831                        Electronic Arts     0.25     0.07     0.00
## 3832                        Electronic Arts     0.24     0.06     0.00
## 3833                        Electronic Arts     0.20     0.06     0.00
## 3834                                Unknown     0.60     0.46     0.00
## 3835            Sony Computer Entertainment     0.24     0.00     0.01
## 3836            Sony Computer Entertainment     0.18     0.00     0.00
## 3837            Sony Computer Entertainment     0.01     0.01     0.00
## 3838            Sony Computer Entertainment     0.12     0.00     0.00
## 3839            Sony Computer Entertainment     0.06     0.05     0.00
## 3840            Sony Computer Entertainment     0.03     0.00     0.00
## 3841            Sony Computer Entertainment     0.16     0.00     0.00
## 3842            Sony Computer Entertainment     0.08     0.06     0.00
## 3843            Sony Computer Entertainment     0.14     0.00     0.00
## 3844                                   Sega     0.59     0.46     0.01
## 3845                                   Sega     0.15     0.04     0.00
## 3846                                   Sega     0.09     0.02     0.00
## 3847                                   Sega     0.51     0.40     0.00
## 3848                                   Sega     0.24     0.07     0.00
## 3849                                   Sega     0.12     0.03     0.00
## 3850                   Take-Two Interactive     0.43     0.34     0.00
## 3851                   Take-Two Interactive     0.27     0.08     0.00
## 3852                   Take-Two Interactive     0.21     0.01     0.00
## 3853                   Take-Two Interactive     0.79     0.00     0.00
## 3854                   Take-Two Interactive     0.50     0.02     0.00
## 3855                   Take-Two Interactive     0.50     0.01     0.00
## 3856                   Take-Two Interactive     1.00     0.16     0.00
## 3857                   Take-Two Interactive     0.56     0.00     0.00
## 3858                   Take-Two Interactive     0.34     0.01     0.00
## 3859                  Acclaim Entertainment     0.95     0.14     0.00
## 3860                  Acclaim Entertainment     0.87     0.12     0.00
## 3861                  Acclaim Entertainment     0.14     0.09     0.00
## 3862                        Electronic Arts     0.46     0.03     0.01
## 3863                        Electronic Arts     0.40     0.02     0.00
## 3864                        Electronic Arts     0.21     0.00     0.01
## 3865                        Electronic Arts     0.91     0.71     0.00
## 3866                        Electronic Arts     0.29     0.19     0.00
## 3867                        Electronic Arts     0.35     0.03     0.00
## 3868                        Electronic Arts     1.25     0.15     0.03
## 3869                        Electronic Arts     0.23     0.06     0.00
## 3870                        Electronic Arts     0.31     0.04     0.00
## 3871                        Electronic Arts     1.57     0.18     0.00
## 3872                        Electronic Arts     0.44     0.04     0.00
## 3873                        Electronic Arts     0.21     0.05     0.00
## 3874                        Electronic Arts     2.03     0.21     0.00
## 3875                        Electronic Arts     0.81     0.05     0.00
## 3876                        Electronic Arts     0.35     0.09     0.00
## 3877                        Electronic Arts     0.52     0.41     0.00
## 3878                        Electronic Arts     0.28     0.03     0.00
## 3879                        Electronic Arts     0.23     0.06     0.00
## 3880                        Electronic Arts     1.69     0.20     0.00
## 3881                        Electronic Arts     0.62     0.04     0.00
## 3882                        Electronic Arts     0.41     0.11     0.00
## 3883                        Electronic Arts     0.14     0.11     0.00
## 3884                        Electronic Arts     0.20     0.00     0.00
## 3885                        Electronic Arts     0.15     0.00     0.00
## 3886                        Electronic Arts     0.86     0.00     0.00
## 3887                        Electronic Arts     0.79     0.00     0.00
## 3888                        Electronic Arts     0.19     0.15     0.00
## 3889                        Electronic Arts     1.16     0.08     0.00
## 3890                        Electronic Arts     0.39     0.11     0.00
## 3891                        Electronic Arts     0.16     0.04     0.00
## 3892                        Electronic Arts     1.35     0.09     0.00
## 3893                        Electronic Arts     0.40     0.02     0.00
## 3894                        Electronic Arts     0.12     0.03     0.00
## 3895                        Electronic Arts     1.32     0.09     0.00
## 3896                        Electronic Arts     0.63     0.02     0.00
## 3897                        Electronic Arts     0.17     0.04     0.00
## 3898                        Electronic Arts     0.13     0.10     0.00
## 3899                        Electronic Arts     0.20     0.00     0.00
## 3900                        Electronic Arts     0.08     0.00     0.00
## 3901                                  Atari     1.06     0.08     0.00
## 3902                                   Sega     0.38     0.11     0.00
## 3903                                   Sega     0.17     0.04     0.00
## 3904                           Midway Games     0.14     0.11     0.00
## 3905                           Midway Games     0.07     0.02     0.00
## 3906                           Midway Games     0.07     0.02     0.00
## 3907                           Midway Games     0.21     0.17     0.00
## 3908                           Midway Games     0.11     0.03     0.00
## 3909                           Midway Games     0.11     0.03     0.00
## 3910                           Midway Games     0.11     0.09     0.00
## 3911                           Midway Games     0.04     0.01     0.00
## 3912                           Midway Games     0.02     0.00     0.00
## 3913                        Electronic Arts     1.15     0.08     0.00
## 3914                        Electronic Arts     0.49     0.15     0.00
## 3915                        Electronic Arts     0.27     0.07     0.00
## 3916                        Electronic Arts     0.79     0.62     0.00
## 3917                        Electronic Arts     0.36     0.11     0.00
## 3918                        Electronic Arts     0.15     0.04     0.00
## 3919                        Electronic Arts     0.48     0.02     0.00
## 3920                        Electronic Arts     0.19     0.05     0.00
## 3921                        Electronic Arts     0.06     0.02     0.00
## 3922                        Electronic Arts     0.59     0.46     0.00
## 3923                        Electronic Arts     0.20     0.06     0.00
## 3924                        Electronic Arts     0.09     0.03     0.00
## 3925                        Electronic Arts     0.46     0.36     0.00
## 3926                        Electronic Arts     0.15     0.04     0.00
## 3927                        Electronic Arts     0.10     0.03     0.00
## 3928                        Electronic Arts     0.47     0.37     0.00
## 3929                        Electronic Arts     0.13     0.04     0.00
## 3930                        Electronic Arts     0.08     0.02     0.00
## 3931                        Electronic Arts     0.22     0.17     0.00
## 3932                        Electronic Arts     0.12     0.03     0.00
## 3933                        Electronic Arts     0.05     0.01     0.00
## 3934                                   Sega     0.10     0.08     0.00
## 3935                                   Sega     0.09     0.02     0.00
## 3936                                   Sega     0.01     0.00     0.00
## 3937                   Take-Two Interactive     0.21     0.16     0.00
## 3938                   Take-Two Interactive     0.16     0.05     0.00
## 3939                   Take-Two Interactive     0.09     0.00     0.00
## 3940                   Take-Two Interactive     0.11     0.00     0.00
## 3941                   Take-Two Interactive     0.07     0.00     0.00
## 3942                   Take-Two Interactive     0.01     0.00     0.00
## 3943                           Midway Games     0.28     0.22     0.00
## 3944                           Midway Games     0.20     0.06     0.00
## 3945                           Midway Games     0.16     0.04     0.00
## 3946                           Midway Games     0.14     0.11     0.00
## 3947                           Midway Games     0.08     0.02     0.00
## 3948                           Midway Games     0.06     0.02     0.00
## 3949                                Unknown     0.03     0.01     0.00
## 3950                           Midway Games     0.09     0.07     0.00
## 3951                           Midway Games     0.05     0.01     0.00
## 3952                       Black Bean Games     0.05     0.03     0.00
## 3953                       Black Bean Games     0.04     0.00     0.00
## 3954                       Black Bean Games     0.00     0.02     0.00
## 3955                                Unknown     0.06     0.00     0.00
## 3956                       Black Bean Games     0.08     0.02     0.00
## 3957                       Black Bean Games     0.01     0.03     0.00
## 3958                   Nippon Ichi Software     0.05     0.02     0.02
## 3959                   Nippon Ichi Software     0.03     0.02     0.03
## 3960                   Nippon Ichi Software     0.03     0.01     0.01
## 3961                        Electronic Arts     0.49     1.49     0.05
## 3962                        Electronic Arts     0.30     0.33     0.00
## 3963                        Electronic Arts     0.00     0.03     0.00
## 3964                        Electronic Arts     1.68     0.31     0.02
## 3965                        Electronic Arts     0.68     0.11     0.00
## 3966                        Electronic Arts     0.68     0.09     0.00
## 3967                        Electronic Arts     0.20     0.36     0.00
## 3968                        Electronic Arts     0.18     0.22     0.00
## 3969                        Electronic Arts     0.05     0.11     0.00
## 3970                                    THQ     0.24     0.19     0.00
## 3971                                    THQ     0.40     0.00     0.00
## 3972                                    THQ     0.04     0.00     0.00
## 3973                   Take-Two Interactive     0.15     0.00     0.00
## 3974                   Take-Two Interactive     0.12     0.00     0.00
## 3975                   Take-Two Interactive     0.10     0.00     0.00
## 3976                                    THQ     0.34     0.01     0.00
## 3977                                    THQ     0.27     0.07     0.00
## 3978                                    THQ     0.10     0.00     0.00
## 3979                  Majesco Entertainment     0.12     0.18     0.00
## 3980                  Majesco Entertainment     0.17     0.13     0.00
## 3981                  Majesco Entertainment     0.07     0.03     0.00
## 3982                             Tecmo Koei     0.19     0.10     0.11
## 3983                             Tecmo Koei     0.16     0.05     0.03
## 3984                               Nintendo     0.15     0.03     0.00
## 3985                             Tecmo Koei     0.00     0.00     0.04
## 3986                             Tecmo Koei     0.00     0.00     0.04
## 3987                             Tecmo Koei     0.00     0.00     0.03
## 3988                   Nippon Ichi Software     0.06     0.03     0.07
## 3989                   Nippon Ichi Software     0.02     0.03     0.08
## 3990                   Nippon Ichi Software     0.01     0.02     0.03
## 3991                                 Capcom     0.45     0.10     0.04
## 3992                                 Capcom     0.11     0.03     0.15
## 3993                                 Capcom     0.00     0.00     0.14
## 3994                     Namco Bandai Games     0.10     0.08     0.07
## 3995                     Namco Bandai Games     0.00     0.03     0.07
## 3996                     Namco Bandai Games     0.03     0.01     0.00
## 3997                     Namco Bandai Games     0.08     0.22     0.10
## 3998                     Namco Bandai Games     0.00     0.09     0.19
## 3999                     Namco Bandai Games     0.00     0.07     0.13
## 4000                            Codemasters     0.36     0.45     0.02
## 4001                            Codemasters     0.23     0.46     0.05
## 4002                            Codemasters     0.01     0.03     0.00
## 4003                            Codemasters     0.06     0.15     0.07
## 4004                            Codemasters     0.10     0.15     0.01
## 4005                            Codemasters     0.01     0.04     0.00
## 4006                            Codemasters     0.15     0.14     0.00
## 4007                            Codemasters     0.11     0.15     0.00
## 4008                            Codemasters     0.00     0.03     0.00
## 4009                             Activision     0.64     0.68     0.14
## 4010                             Activision     0.52     0.25     0.00
## 4011                             Activision     0.22     0.18     0.00
## 4012                     Oxygen Interactive     0.01     0.00     0.00
## 4013                                Unknown     0.01     0.00     0.00
## 4014                     Oxygen Interactive     0.02     0.21     0.00
## 4015                                O-Games     0.00     0.09     0.00
## 4016                                O-Games     0.00     0.10     0.00
## 4017                                O-Games     0.00     0.02     0.00
## 4018                     Namco Bandai Games     0.06     0.02     0.00
## 4019                     Namco Bandai Games     0.04     0.00     0.00
## 4020                     Namco Bandai Games     0.01     0.01     0.00
## 4021                                    THQ     0.22     0.00     0.00
## 4022                                    THQ     0.12     0.04     0.00
## 4023                                    THQ     0.10     0.00     0.00
## 4024                     Namco Bandai Games     0.00     0.06     0.00
## 4025                     Namco Bandai Games     0.01     0.02     0.00
## 4026                     Namco Bandai Games     0.00     0.02     0.00
## 4027                                Ubisoft     0.47     0.52     0.00
## 4028                                Ubisoft     0.53     0.01     0.00
## 4029                                Ubisoft     0.28     0.21     0.00
## 4030                                Ubisoft     0.51     0.40     0.00
## 4031                                Ubisoft     0.41     0.01     0.00
## 4032                                Ubisoft     0.18     0.14     0.00
## 4033                                Ubisoft     0.41     0.00     0.00
## 4034                                Ubisoft     0.39     0.00     0.00
## 4035                                Ubisoft     0.13     0.10     0.00
## 4036             Disney Interactive Studios     0.36     0.19     0.00
## 4037             Disney Interactive Studios     0.32     0.19     0.00
## 4038             Disney Interactive Studios     0.15     0.12     0.00
## 4039                           Gotham Games     0.05     0.04     0.00
## 4040                           Gotham Games     0.04     0.01     0.00
## 4041                                    THQ     0.04     0.01     0.00
## 4042                     Empire Interactive     0.07     0.05     0.00
## 4043                     Empire Interactive     0.08     0.01     0.00
## 4044                     Empire Interactive     0.06     0.00     0.00
## 4045             Disney Interactive Studios     0.33     0.12     0.00
## 4046             Disney Interactive Studios     0.25     0.01     0.00
## 4047             Disney Interactive Studios     0.23     0.01     0.00
## 4048                        Electronic Arts     0.17     0.21     0.00
## 4049                        Electronic Arts     0.26     0.15     0.00
## 4050                        Electronic Arts     0.00     0.04     0.00
## 4051                      Eidos Interactive     0.21     0.10     0.00
## 4052                      Eidos Interactive     0.04     0.05     0.00
## 4053                      Eidos Interactive     0.00     0.01     0.00
## 4054                         Valve Software     1.41     0.51     0.01
## 4055                                  Valve     0.83     0.63     0.02
## 4056                         Valve Software     0.33     0.32     0.00
## 4057                                    THQ     0.35     0.27     0.00
## 4058                                    THQ     0.35     0.13     0.00
## 4059                                    THQ     0.31     0.08     0.00
## 4060                                Ubisoft     0.57     0.02     0.00
## 4061                                Ubisoft     0.33     0.22     0.00
## 4062                                Ubisoft     0.11     0.03     0.00
## 4063                                Ubisoft     0.54     0.88     0.00
## 4064                                Ubisoft     0.48     0.28     0.00
## 4065                                Ubisoft     0.15     0.04     0.00
## 4066           Konami Digital Entertainment     0.01     0.16     0.09
## 4067           Konami Digital Entertainment     0.00     0.01     0.04
## 4068           Konami Digital Entertainment     0.00     0.02     0.00
## 4069           Konami Digital Entertainment     0.00     0.00     0.24
## 4070           Konami Digital Entertainment     0.00     0.00     0.21
## 4071           Konami Digital Entertainment     0.00     0.00     0.10
## 4072           Konami Digital Entertainment     0.00     0.00     0.24
## 4073           Konami Digital Entertainment     0.00     0.00     0.18
## 4074           Konami Digital Entertainment     0.00     0.00     0.07
## 4075           Konami Digital Entertainment     0.00     0.00     0.20
## 4076           Konami Digital Entertainment     0.00     0.00     0.19
## 4077           Konami Digital Entertainment     0.00     0.00     0.06
## 4078           Konami Digital Entertainment     0.00     0.00     0.20
## 4079           Konami Digital Entertainment     0.00     0.00     0.20
## 4080           Konami Digital Entertainment     0.00     0.00     0.06
## 4081           Konami Digital Entertainment     0.00     0.00     0.14
## 4082           Konami Digital Entertainment     0.00     0.00     0.09
## 4083           Konami Digital Entertainment     0.00     0.00     0.07
## 4084                                   Sega     0.00     0.00     0.25
## 4085                                   Sega     0.00     0.00     0.23
## 4086                                   Sega     0.00     0.00     0.19
## 4087                   Slightly Mad Studios     0.17     0.69     0.02
## 4088                   Slightly Mad Studios     0.08     0.13     0.00
## 4089                   Slightly Mad Studios     0.00     0.10     0.00
## 4090                               System 3     0.06     0.07     0.00
## 4091                               System 3     0.02     0.02     0.00
## 4092                               System 3     0.00     0.01     0.00
## 4093                                   Sega     0.00     0.00     0.30
## 4094                                   Sega     0.00     0.00     0.05
## 4095                                   Sega     0.00     0.00     0.03
## 4096                    Crave Entertainment     0.18     0.00     0.00
## 4097                    Crave Entertainment     0.03     0.00     0.00
## 4098                    Crave Entertainment     0.01     0.01     0.00
## 4099                                Ubisoft     0.18     0.22     0.02
## 4100                                Ubisoft     0.04     0.19     0.00
## 4101                                Ubisoft     0.12     0.12     0.00
## 4102                     Namco Bandai Games     0.14     0.11     0.00
## 4103                     Namco Bandai Games     0.06     0.02     0.00
## 4104                     Namco Bandai Games     0.06     0.02     0.00
## 4105                     Bethesda Softworks     0.82     0.61     0.03
## 4106                     Bethesda Softworks     0.47     0.59     0.06
## 4107                     Bethesda Softworks     0.14     0.18     0.00
## 4108                           Midway Games     0.31     0.08     0.00
## 4109                           Midway Games     0.18     0.14     0.00
## 4110                           Midway Games     0.19     0.01     0.00
## 4111                 Zoo Digital Publishing     0.18     0.14     0.00
## 4112                 Zoo Digital Publishing     0.12     0.03     0.00
## 4113                 Zoo Digital Publishing     0.04     0.02     0.00
## 4114                                Ubisoft     0.29     0.23     0.00
## 4115                                Unknown     0.05     0.01     0.00
## 4116                                Ubisoft     0.11     0.03     0.00
## 4117                           Midway Games     0.40     0.31     0.00
## 4118                           Midway Games     0.29     0.20     0.00
## 4119                           Midway Games     0.19     0.05     0.00
## 4120                                    THQ     0.49     0.78     0.00
## 4121                                    THQ     0.09     0.03     0.00
## 4122                                    THQ     0.03     0.01     0.00
## 4123                                    THQ     0.20     0.16     0.03
## 4124                                    THQ     0.18     0.17     0.01
## 4125                                    THQ     0.05     0.02     0.00
## 4126                                    THQ     0.48     0.29     0.01
## 4127                                    THQ     0.33     0.28     0.02
## 4128                                    THQ     0.00     0.03     0.00
## 4129                           Midway Games     0.03     0.03     0.00
## 4130                           Midway Games     0.03     0.01     0.00
## 4131                           Midway Games     0.02     0.00     0.00
## 4132                                 Capcom     0.10     0.18     0.00
## 4133                                 Capcom     0.10     0.07     0.00
## 4134                                 Capcom     0.00     0.05     0.00
## 4135                     Virgin Interactive     2.05     1.16     1.11
## 4136                                 Capcom     0.00     0.00     0.17
## 4137                                 Capcom     0.00     0.00     0.12
## 4138                     Virgin Interactive     1.88     1.47     2.02
## 4139                     Virgin Interactive     0.39     0.09     0.07
## 4140                                 Capcom     0.04     0.01     0.00
## 4141                                 Capcom     1.96     1.43     1.08
## 4142                                 Capcom     2.11     0.94     0.12
## 4143                                 Capcom     0.01     0.04     0.00
## 4144                                 Capcom     0.48     0.25     0.36
## 4145                                 Capcom     0.55     0.15     0.03
## 4146                                 Capcom     0.00     0.03     0.00
## 4147            Sony Computer Entertainment     0.36     0.45     0.32
## 4148            Sony Computer Entertainment     0.00     0.00     0.74
## 4149                     Namco Bandai Games     0.04     0.08     0.05
## 4150                     Namco Bandai Games     0.05     0.10     0.00
## 4151                     Namco Bandai Games     0.05     0.05     0.00
## 4152                     Namco Bandai Games     0.00     0.02     0.00
## 4153                            Square Enix     0.53     0.64     0.02
## 4154                            Square Enix     0.17     0.19     0.00
## 4155                            Square Enix     0.00     0.09     0.00
## 4156                            Deep Silver     0.04     0.14     0.01
## 4157                            Deep Silver     0.00     0.19     0.00
## 4158                            Deep Silver     0.05     0.08     0.00
## 4159                           Midway Games     0.08     0.07     0.00
## 4160                           Midway Games     0.06     0.02     0.00
## 4161                           Midway Games     0.02     0.01     0.00
## 4162                         TDK Mediactive     0.30     0.23     0.00
## 4163                         TDK Mediactive     0.13     0.03     0.00
## 4164                                Unknown     0.16     0.05     0.00
## 4165                                    5pb     0.00     0.00     0.11
## 4166                                    5pb     0.00     0.00     0.02
## 4167                                    5pb     0.00     0.00     0.02
## 4168                              MTV Games     0.09     0.00     0.00
## 4169                              MTV Games     0.07     0.00     0.00
## 4170                              MTV Games     0.04     0.00     0.00
## 4171                              505 Games     0.02     0.14     0.00
## 4172                              505 Games     0.03     0.09     0.00
## 4173                              505 Games     0.01     0.01     0.00
## 4174                                    THQ     0.40     0.31     0.00
## 4175                                    THQ     0.20     0.07     0.00
## 4176                                    THQ     0.18     0.05     0.00
## 4177                                Ubisoft     0.52     0.38     0.09
## 4178                                Ubisoft     0.84     0.20     0.01
## 4179                                Unknown     0.06     0.04     0.00
## 4180                          Rage Software     0.42     0.33     0.00
## 4181                          Rage Software     0.11     0.03     0.00
## 4182                          Rage Software     0.07     0.02     0.00
## 4183                                  Kemco     0.11     0.09     0.00
## 4184                                  Kemco     0.10     0.03     0.00
## 4185                                  Kemco     0.04     0.01     0.00
## 4186                   Take-Two Interactive     0.00     0.51     0.00
## 4187                   Take-Two Interactive     0.06     0.02     0.00
## 4188                   Take-Two Interactive     0.00     0.02     0.00
## 4189           Konami Digital Entertainment     0.13     0.17     0.00
## 4190           Konami Digital Entertainment     0.13     0.12     0.00
## 4191           Konami Digital Entertainment     0.00     0.02     0.00
## 4192                       Black Bean Games     0.01     0.10     0.00
## 4193                       Black Bean Games     0.00     0.06     0.00
## 4194                       Black Bean Games     0.00     0.03     0.00
## 4195                 Ignition Entertainment     0.09     0.07     0.00
## 4196                 Ignition Entertainment     0.13     0.00     0.01
## 4197                 Ignition Entertainment     0.06     0.00     0.00
## 4198                     Namco Bandai Games     0.26     0.21     0.00
## 4199                     Namco Bandai Games     0.18     0.05     0.00
## 4200                     Namco Bandai Games     0.07     0.02     0.00
## 4201                        Electronic Arts     0.78     0.61     0.06
## 4202                        Electronic Arts     0.35     0.42     0.02
## 4203                        Electronic Arts     0.38     0.28     0.00
## 4204                            Deep Silver     0.22     0.23     0.08
## 4205                            Deep Silver     0.29     0.17     0.04
## 4206             Ascaron Entertainment GmbH     0.00     0.05     0.00
## 4207                            Deep Silver     0.03     0.05     0.02
## 4208                            Deep Silver     0.03     0.03     0.00
## 4209                            Deep Silver     0.00     0.02     0.00
## 4210                                    THQ     1.94     0.80     0.02
## 4211                                    THQ     0.88     0.54     0.02
## 4212                                    THQ     0.00     0.03     0.00
## 4213                                    THQ     1.25     1.15     0.07
## 4214                                    THQ     0.86     1.06     0.18
## 4215                                    THQ     0.16     0.16     0.00
## 4216                 Ignition Entertainment     0.08     0.00     0.00
## 4217                 Ignition Entertainment     0.07     0.06     0.00
## 4218                 Ignition Entertainment     0.06     0.00     0.00
## 4219                             Tecmo Koei     0.02     0.02     0.57
## 4220                             Tecmo Koei     0.07     0.01     0.00
## 4221                             Tecmo Koei     0.00     0.00     0.03
## 4222                             Tecmo Koei     0.00     0.00     0.26
## 4223                             Tecmo Koei     0.08     0.07     0.06
## 4224                             Tecmo Koei     0.00     0.00     0.11
## 4225                             Tecmo Koei     0.03     0.02     0.06
## 4226                             Tecmo Koei     0.00     0.00     0.11
## 4227                             Tecmo Koei     0.00     0.00     0.05
## 4228                             Tecmo Koei     0.02     0.01     0.05
## 4229                             Tecmo Koei     0.00     0.00     0.06
## 4230                             Tecmo Koei     0.00     0.00     0.05
## 4231                   Take-Two Interactive     0.05     0.04     0.00
## 4232                            Global Star     0.03     0.01     0.00
## 4233                   Take-Two Interactive     0.03     0.01     0.00
## 4234 Warner Bros. Interactive Entertainment     0.13     0.00     0.00
## 4235 Warner Bros. Interactive Entertainment     0.12     0.00     0.00
## 4236 Warner Bros. Interactive Entertainment     0.10     0.01     0.00
## 4237 Warner Bros. Interactive Entertainment     0.88     0.05     0.00
## 4238 Warner Bros. Interactive Entertainment     0.63     0.17     0.00
## 4239 Warner Bros. Interactive Entertainment     0.14     0.03     0.00
## 4240                                    THQ     1.17     0.72     0.00
## 4241                                    THQ     0.23     0.06     0.00
## 4242                                    THQ     0.11     0.03     0.00
## 4243 Warner Bros. Interactive Entertainment     0.29     0.13     0.00
## 4244 Warner Bros. Interactive Entertainment     0.26     0.10     0.00
## 4245 Warner Bros. Interactive Entertainment     0.08     0.11     0.00
## 4246                                Ubisoft     0.21     0.02     0.00
## 4247                                Ubisoft     0.14     0.10     0.00
## 4248                        Electronic Arts     0.08     0.00     0.00
## 4249                            Codemasters     0.07     0.05     0.00
## 4250                            Codemasters     0.05     0.02     0.00
## 4251                            Codemasters     0.04     0.01     0.00
## 4252                            Deep Silver     0.00     0.03     0.00
## 4253                            Deep Silver     0.00     0.03     0.00
## 4254                            Deep Silver     0.00     0.01     0.00
## 4255                             Koch Media     0.05     0.02     0.00
## 4256                            Deep Silver     0.04     0.01     0.00
## 4257               DreamCatcher Interactive     0.00     0.04     0.00
## 4258                                   Sega     0.06     0.05     0.00
## 4259                                   Sega     0.05     0.01     0.00
## 4260                                   Sega     0.04     0.01     0.00
## 4261 Warner Bros. Interactive Entertainment     0.29     0.00     0.00
## 4262 Warner Bros. Interactive Entertainment     0.26     0.00     0.00
## 4263 Warner Bros. Interactive Entertainment     0.05     0.00     0.00
## 4264 Warner Bros. Interactive Entertainment     0.37     0.00     0.00
## 4265 Warner Bros. Interactive Entertainment     0.27     0.00     0.00
## 4266 Warner Bros. Interactive Entertainment     0.04     0.00     0.00
## 4267                                   Sega     0.76     0.20     0.00
## 4268                                   Sega     0.50     0.02     0.00
## 4269                                   Sega     0.13     0.04     0.00
## 4270                                  Atlus     0.00     0.00     0.31
## 4271                                  Atlus     0.13     0.02     0.14
## 4272                                  Atlus     0.00     0.00     0.14
## 4273                       Yacht Club Games     0.07     0.04     0.01
## 4274                       Yacht Club Games     0.06     0.04     0.00
## 4275                       Yacht Club Games     0.03     0.03     0.00
## 4276                             Activision     1.12     0.69     0.03
## 4277                             Activision     0.73     0.26     0.01
## 4278                             Activision     0.40     0.13     0.00
## 4279                         TDK Mediactive     0.14     0.11     0.00
## 4280                         TDK Mediactive     0.10     0.03     0.00
## 4281                         TDK Mediactive     0.04     0.01     0.00
## 4282                             Activision     0.28     0.00     0.00
## 4283                             Activision     0.22     0.00     0.00
## 4284                             Activision     0.03     0.03     0.00
## 4285                   Take-Two Interactive     0.58     0.17     0.00
## 4286                   Take-Two Interactive     0.49     0.19     0.01
## 4287                   Take-Two Interactive     0.38     0.03     0.02
## 4288                   Take-Two Interactive     0.16     0.01     0.00
## 4289                   Take-Two Interactive     0.13     0.02     0.00
## 4290                   Take-Two Interactive     0.11     0.03     0.00
## 4291           Konami Digital Entertainment     0.13     0.22     0.01
## 4292           Konami Digital Entertainment     0.23     0.19     0.01
## 4293           Konami Digital Entertainment     0.09     0.13     0.01
## 4294                                Unknown     0.17     0.04     0.01
## 4295                           Mastertronic     0.00     0.04     0.00
## 4296                                Unknown     0.24     0.05     0.00
## 4297                                  PQube     0.10     0.00     0.00
## 4298                           Valcon Games     0.08     0.00     0.00
## 4299                           Valcon Games     0.03     0.00     0.00
## 4300                                Unknown     0.06     0.01     0.00
## 4301                     Namco Bandai Games     0.03     0.01     0.00
## 4302                 Zoo Digital Publishing     0.02     0.01     0.00
## 4303                              505 Games     0.38     0.39     0.06
## 4304                              505 Games     0.46     0.29     0.02
## 4305                              505 Games     0.00     0.02     0.00
## 4306                       City Interactive     0.54     0.51     0.00
## 4307                       City Interactive     0.26     0.36     0.04
## 4308                       City Interactive     0.00     0.13     0.00
## 4309                       City Interactive     0.05     0.19     0.03
## 4310                       City Interactive     0.06     0.13     0.00
## 4311                       City Interactive     0.02     0.05     0.00
## 4312                        Insomniac Games     0.05     0.00     0.00
## 4313                        Insomniac Games     0.03     0.00     0.00
## 4314                        Insomniac Games     0.02     0.00     0.00
## 4315                                   Sega     0.65     0.71     0.00
## 4316                                   Sega     0.44     0.54     0.00
## 4317                                   Sega     0.36     0.46     0.00
## 4318                                   Sega     1.04     1.37     0.06
## 4319                                   Sega     1.05     0.44     0.06
## 4320                                   Sega     0.41     0.43     0.01
## 4321                                   Sega     0.71     0.18     0.00
## 4322                                   Sega     0.42     0.02     0.00
## 4323                                   Sega     0.10     0.03     0.00
## 4324                     Namco Bandai Games     1.06     0.62     0.13
## 4325                     Namco Bandai Games     0.99     0.32     0.11
## 4326                     Namco Bandai Games     0.78     0.18     0.03
## 4327                                Ubisoft     0.42     0.38     0.00
## 4328                                Ubisoft     0.57     0.30     0.00
## 4329                                Ubisoft     0.07     0.10     0.00
## 4330                                   Sega     0.11     0.09     0.00
## 4331                                   Sega     0.10     0.03     0.00
## 4332                                   Sega     0.05     0.01     0.00
## 4333                        Electronic Arts     0.22     0.17     0.00
## 4334                        Electronic Arts     0.13     0.04     0.00
## 4335                        Electronic Arts     0.05     0.01     0.00
## 4336                   Take-Two Interactive     0.19     0.25     0.04
## 4337                   Take-Two Interactive     0.21     0.19     0.00
## 4338                   Take-Two Interactive     0.11     0.09     0.00
## 4339                  Acclaim Entertainment     0.05     0.04     0.00
## 4340                  Acclaim Entertainment     0.04     0.01     0.00
## 4341                  Acclaim Entertainment     0.01     0.00     0.00
## 4342 Warner Bros. Interactive Entertainment     0.36     0.02     0.00
## 4343 Warner Bros. Interactive Entertainment     0.29     0.05     0.00
## 4344 Warner Bros. Interactive Entertainment     0.10     0.08     0.00
## 4345                                    THQ     0.22     0.17     0.00
## 4346                                    THQ     0.11     0.03     0.00
## 4347                                    THQ     0.09     0.02     0.00
## 4348                             Activision     1.70     1.25     0.02
## 4349                           Parker Bros.     0.87     0.05     0.00
## 4350                             Activision     0.43     0.09     0.00
## 4351                                    THQ     0.29     0.22     0.00
## 4352                                    THQ     0.53     0.00     0.00
## 4353                                    THQ     0.49     0.00     0.00
## 4354                                    THQ     0.45     0.02     0.00
## 4355                                    THQ     0.45     0.00     0.00
## 4356                                    THQ     0.25     0.07     0.00
## 4357                             Activision     0.00     0.06     0.00
## 4358                             Activision     0.04     0.00     0.00
## 4359                             Activision     0.00     0.04     0.00
## 4360                                    THQ     0.92     0.23     0.00
## 4361                                    THQ     0.53     0.41     0.00
## 4362                                    THQ     0.15     0.04     0.00
## 4363                                    THQ     1.50     0.00     0.00
## 4364                                    THQ     0.57     0.01     0.00
## 4365                                    THQ     0.36     0.01     0.00
## 4366                                    THQ     0.08     0.07     0.00
## 4367                                    THQ     0.03     0.04     0.00
## 4368                                    THQ     0.02     0.04     0.00
## 4369                             Activision     0.08     0.00     0.00
## 4370                             Activision     0.03     0.01     0.00
## 4371                             Activision     0.03     0.00     0.00
## 4372                           Midway Games     1.13     0.32     0.00
## 4373                           Midway Games     0.25     0.07     0.00
## 4374                           Midway Games     0.16     0.04     0.00
## 4375                          Vivendi Games     0.32     0.25     0.00
## 4376                          Vivendi Games     0.22     0.06     0.00
## 4377                          Vivendi Games     0.11     0.03     0.00
## 4378                           Myelin Media     0.04     0.03     0.00
## 4379                           Myelin Media     0.03     0.00     0.00
## 4380                           Myelin Media     0.02     0.01     0.00
## 4381                     Namco Bandai Games     0.10     0.11     0.00
## 4382                     Namco Bandai Games     0.12     0.09     0.00
## 4383                     Namco Bandai Games     0.00     0.02     0.00
## 4384                        Electronic Arts     2.93     3.29     0.22
## 4385                        Electronic Arts     1.94     1.22     0.02
## 4386                        Electronic Arts     0.13     0.37     0.00
## 4387                              LucasArts     1.93     1.22     0.03
## 4388                             Activision     1.24     0.45     0.00
## 4389                              LucasArts     0.06     0.12     0.00
## 4390                              LucasArts     0.24     0.19     0.00
## 4391                             Activision     0.31     0.08     0.00
## 4392                              LucasArts     0.10     0.03     0.00
## 4393                                  PQube     0.00     0.00     0.05
## 4394                                  PQube     0.00     0.00     0.05
## 4395                                    5pb     0.00     0.00     0.03
## 4396                                    5pb     0.00     0.00     0.08
## 4397                                    5pb     0.00     0.00     0.06
## 4398                                    5pb     0.00     0.00     0.02
## 4399                                   Sega     0.13     0.02     0.00
## 4400                                   Sega     0.11     0.03     0.00
## 4401                                   Sega     0.00     0.02     0.00
## 4402                     Virgin Interactive     0.14     0.09     0.57
## 4403                     Virgin Interactive     0.00     0.00     0.32
## 4404                               Nintendo     0.00     0.00     0.17
## 4405                                 Capcom     2.02     1.06     0.58
## 4406                                 Capcom     1.82     0.71     0.15
## 4407                                 Capcom     0.07     0.04     0.00
## 4408                             Activision     0.45     0.35     0.00
## 4409                             Activision     0.21     0.06     0.00
## 4410                                Unknown     0.09     0.02     0.00
## 4411                                Play It     0.30     0.24     0.00
## 4412                    Crave Entertainment     0.05     0.01     0.00
## 4413                    Crave Entertainment     0.03     0.01     0.00
## 4414                                    THQ     0.25     0.32     0.00
## 4415                                    THQ     0.17     0.26     0.00
## 4416                                    THQ     0.13     0.10     0.00
## 4417                                   Sega     0.12     0.03     0.00
## 4418                                   Sega     0.05     0.02     0.00
## 4419                                   Sega     0.01     0.01     0.00
## 4420                              505 Games     0.06     0.04     0.00
## 4421                              505 Games     0.02     0.05     0.00
## 4422                              505 Games     0.05     0.03     0.00
## 4423                     Namco Bandai Games     0.08     0.10     0.23
## 4424                     Namco Bandai Games     0.09     0.10     0.00
## 4425                     Namco Bandai Games     0.00     0.00     0.10
## 4426                              Mindscape     0.10     0.02     0.00
## 4427                               Microids     0.08     0.02     0.00
## 4428                               Microids     0.00     0.02     0.00
## 4429                        Electronic Arts     0.10     0.06     0.00
## 4430                               EA Games     0.07     0.06     0.00
## 4431                        Electronic Arts     0.00     0.05     0.00
## 4432                            Codemasters     0.00     0.25     0.00
## 4433                            Codemasters     0.09     0.03     0.00
## 4434                            Codemasters     0.03     0.02     0.00
## 4435                            Codemasters     0.04     0.03     0.00
## 4436                            Codemasters     0.03     0.01     0.00
## 4437                            Codemasters     0.00     0.02     0.00
## 4438                                    THQ     0.56     0.44     0.00
## 4439                                    THQ     0.39     0.15     0.00
## 4440                                    THQ     0.31     0.08     0.00
## 4441                     Namco Bandai Games     0.00     0.00     0.54
## 4442                     Namco Bandai Games     0.00     0.00     0.40
## 4443                               Nintendo     0.08     0.03     0.17
## 4444                                  Atari     0.08     0.06     0.00
## 4445                                  Atari     0.06     0.02     0.00
## 4446                                  Atari     0.05     0.02     0.00
## 4447                                    THQ     0.25     0.07     0.00
## 4448                                    THQ     0.12     0.10     0.00
## 4449                                Unknown     0.13     0.05     0.00
## 4450                             Activision     0.11     0.11     0.00
## 4451                             Activision     0.11     0.09     0.00
## 4452                             Activision     0.08     0.04     0.00
## 4453                     Namco Bandai Games     1.20     0.98     0.17
## 4454                     Namco Bandai Games     0.71     0.42     0.05
## 4455                     Namco Bandai Games     0.15     0.04     0.10
## 4456                     Namco Bandai Games     0.28     0.33     0.13
## 4457                     Namco Bandai Games     0.19     0.12     0.01
## 4458                     Namco Bandai Games     0.09     0.07     0.01
## 4459                                  Atari     0.28     0.22     0.00
## 4460                                  Atari     0.11     0.03     0.00
## 4461                                  Atari     0.04     0.02     0.00
## 4462                                  Atari     0.08     0.06     0.00
## 4463                                  Atari     0.05     0.01     0.00
## 4464                                  Atari     0.02     0.00     0.00
## 4465                                  Atari     0.08     0.28     0.00
## 4466                                  Atari     0.23     0.04     0.02
## 4467                                  Atari     0.00     0.02     0.00
## 4468                                  Atari     0.05     0.11     0.00
## 4469                                  Atari     0.16     0.35     0.01
## 4470                                  Atari     0.30     0.32     0.00
## 4471                                    THQ     1.11     0.71     0.00
## 4472                                    THQ     1.25     0.39     0.00
## 4473                                    THQ     0.17     0.04     0.00
## 4474                                    THQ     0.36     0.13     0.00
## 4475                                    THQ     0.24     0.19     0.00
## 4476                                    THQ     0.22     0.06     0.00
## 4477                                    THQ     0.21     0.16     0.00
## 4478                                    THQ     0.25     0.09     0.00
## 4479                                    THQ     0.09     0.02     0.00
## 4480                              MTV Games     1.19     0.40     0.00
## 4481                              MTV Games     0.97     0.23     0.00
## 4482                              MTV Games     0.67     0.30     0.00
## 4483                    Crave Entertainment     0.10     0.08     0.00
## 4484                    Crave Entertainment     0.09     0.03     0.00
## 4485                    Crave Entertainment     0.03     0.01     0.00
## 4486                   Take-Two Interactive     0.08     0.16     0.00
## 4487                   Take-Two Interactive     0.10     0.12     0.00
## 4488                   Take-Two Interactive     0.00     0.05     0.00
## 4489                                  Atari     0.16     0.10     0.00
## 4490                          Vivendi Games     0.12     0.10     0.00
## 4491                          Vivendi Games     0.00     0.01     0.00
## 4492                                Ubisoft     0.00     0.08     0.00
## 4493                                Ubisoft     0.00     0.02     0.00
## 4494                                Ubisoft     0.00     0.02     0.00
## 4495                      DTP Entertainment     0.07     0.07     0.01
## 4496                      DTP Entertainment     0.08     0.05     0.00
## 4497                      DTP Entertainment     0.00     0.03     0.00
## 4498                   Take-Two Interactive     0.24     0.12     0.00
## 4499                   Take-Two Interactive     0.14     0.14     0.00
## 4500                   Take-Two Interactive     0.10     0.03     0.00
## 4501                   Take-Two Interactive     2.82     1.05     0.13
## 4502                                Ubisoft     1.69     0.87     0.14
## 4503                   Take-Two Interactive     0.01     0.20     0.00
## 4504                     Bethesda Softworks     0.66     0.78     0.00
## 4505                     Bethesda Softworks     0.77     0.38     0.00
## 4506                     Bethesda Softworks     0.32     0.48     0.00
## 4507                     Bethesda Softworks     5.03     2.86     0.10
## 4508                     Bethesda Softworks     2.55     2.71     0.25
## 4509                     Bethesda Softworks     1.15     2.09     0.00
## 4510                                    THQ     0.17     0.13     0.00
## 4511                                    THQ     0.25     0.09     0.00
## 4512                                    THQ     0.16     0.04     0.00
## 4513                             Activision     0.10     0.00     0.00
## 4514                             Activision     0.07     0.00     0.00
## 4515                             Activision     0.05     0.00     0.00
## 4516                            Deep Silver     0.07     0.00     0.00
## 4517                             Activision     0.02     0.02     0.00
## 4518                             Activision     0.01     0.00     0.00
## 4519                          Vivendi Games     0.26     0.20     0.00
## 4520                          Vivendi Games     0.17     0.05     0.00
## 4521                          Vivendi Games     0.11     0.03     0.00
## 4522                                    THQ     0.96     1.08     0.04
## 4523                                    THQ     1.15     0.77     0.04
## 4524                                    THQ     0.65     0.17     0.00
## 4525                      Eidos Interactive     0.11     0.09     0.00
## 4526                      Eidos Interactive     0.06     0.02     0.00
## 4527                      Eidos Interactive     0.03     0.01     0.00
## 4528                           SNK Playmore     0.00     0.00     0.28
## 4529                                    SNK     0.00     0.00     0.20
## 4530            Sony Computer Entertainment     0.00     0.00     0.16
## 4531                                    SNK     0.00     0.00     0.21
## 4532                                    SNK     0.00     0.00     0.07
## 4533                                    SNK     0.00     0.00     0.06
## 4534                 Ignition Entertainment     0.10     0.08     0.00
## 4535                 Ignition Entertainment     0.11     0.00     0.00
## 4536                 Ignition Entertainment     0.07     0.00     0.00
## 4537                             Ghostlight     0.10     0.03     0.06
## 4538                        Kadokawa Shoten     0.00     0.00     0.07
## 4539                     Falcom Corporation     0.00     0.00     0.04
## 4540                     Falcom Corporation     0.00     0.00     0.07
## 4541               Nihon Falcom Corporation     0.00     0.00     0.02
## 4542                     Falcom Corporation     0.00     0.00     0.01
## 4543                          Vivendi Games     0.21     0.16     0.00
## 4544                          Vivendi Games     0.32     0.03     0.00
## 4545                          Vivendi Games     0.18     0.02     0.00
## 4546                        Electronic Arts     0.49     0.02     0.00
## 4547                        Electronic Arts     0.22     0.06     0.00
## 4548                        Electronic Arts     0.16     0.06     0.00
## 4549 Warner Bros. Interactive Entertainment     0.04     0.11     0.00
## 4550 Warner Bros. Interactive Entertainment     0.25     0.45     0.01
## 4551 Warner Bros. Interactive Entertainment     0.52     0.26     0.00
## 4552                          Vivendi Games     0.12     0.10     0.00
## 4553                          Vivendi Games     0.08     0.00     0.00
## 4554                          Vivendi Games     0.08     0.00     0.00
## 4555                                    THQ     0.19     0.00     0.00
## 4556                                    THQ     0.18     0.00     0.00
## 4557                                    THQ     0.08     0.06     0.00
## 4558                        Electronic Arts     1.09     0.54     0.02
## 4559                        Electronic Arts     0.28     0.59     0.00
## 4560                        Electronic Arts     0.00     0.11     0.00
## 4561                             Activision     0.00     0.03     0.00
## 4562                             Activision     0.00     0.02     0.00
## 4563                             Activision     0.00     0.02     0.00
## 4564                                    THQ     0.11     0.09     0.00
## 4565                                    THQ     0.14     0.05     0.00
## 4566                                    THQ     0.08     0.02     0.00
## 4567                            Codemasters     0.05     0.12     0.00
## 4568                            Codemasters     0.03     0.12     0.00
## 4569                            Codemasters     0.00     0.01     0.00
## 4570                        Electronic Arts     0.26     0.21     0.00
## 4571                        Electronic Arts     0.20     0.22     0.00
## 4572                        Electronic Arts     0.00     0.05     0.00
## 4573                          Vivendi Games     1.73     2.19     0.00
## 4574                          Vivendi Games     0.70     0.58     0.00
## 4575                          Vivendi Games     0.77     0.20     0.00
## 4576                                Unknown     0.00     0.01     0.00
## 4577                                Ubisoft     0.24     0.14     0.00
## 4578                             Infogrames     0.02     0.02     0.00
## 4579                          Vivendi Games     0.17     0.01     0.00
## 4580                          Vivendi Games     0.09     0.01     0.00
## 4581                          Vivendi Games     0.08     0.00     0.00
## 4582                    Brash Entertainment     0.17     0.13     0.00
## 4583                    Brash Entertainment     0.06     0.00     0.00
## 4584                    Brash Entertainment     0.04     0.00     0.00
## 4585                 Focus Home Interactive     0.01     0.03     0.00
## 4586                 Focus Home Interactive     0.01     0.01     0.00
## 4587                 Focus Home Interactive     0.00     0.01     0.00
## 4588                 Focus Home Interactive     0.05     0.15     0.00
## 4589                 Focus Home Interactive     0.00     0.06     0.00
## 4590                 Focus Home Interactive     0.00     0.02     0.00
## 4591                             Activision     0.08     0.00     0.00
## 4592                             Activision     0.07     0.00     0.00
## 4593                             Activision     0.02     0.00     0.00
## 4594                             Activision     0.46     0.12     0.00
## 4595                             Activision     0.28     0.17     0.00
## 4596                             Activision     0.08     0.03     0.00
## 4597                   Take-Two Interactive     0.44     0.02     0.00
## 4598                   Take-Two Interactive     0.21     0.06     0.00
## 4599                   Take-Two Interactive     0.23     0.02     0.00
## 4600                     Namco Bandai Games     0.96     2.00     0.21
## 4601                     Namco Bandai Games     0.66     0.47     0.00
## 4602                     Namco Bandai Games     0.20     0.42     0.00
## 4603                            Deep Silver     0.00     0.29     0.00
## 4604                            Deep Silver     0.00     0.10     0.00
## 4605                            Deep Silver     0.00     0.08     0.00
## 4606                        Electronic Arts     0.24     0.16     0.13
## 4607                        Electronic Arts     0.00     0.00     0.08
## 4608                        Electronic Arts     0.00     0.03     0.03
## 4609                        Electronic Arts     0.37     0.34     0.00
## 4610                        Electronic Arts     0.24     0.26     0.00
## 4611                        Electronic Arts     0.28     0.20     0.00
## 4612                        Electronic Arts     0.52     0.26     0.00
## 4613                        Electronic Arts     0.40     0.17     0.00
## 4614                        Electronic Arts     0.21     0.13     0.00
## 4615                        Electronic Arts     0.80     0.63     0.00
## 4616                        Electronic Arts     0.35     0.08     0.00
## 4617                        Electronic Arts     0.18     0.05     0.00
## 4618                                Level 5     0.00     0.00     0.05
## 4619                                Unknown     0.00     0.00     0.04
## 4620                                Level 5     0.00     0.00     0.01
## 4621                          Vivendi Games     0.36     0.02     0.00
## 4622                          Vivendi Games     0.14     0.01     0.00
## 4623                          Vivendi Games     0.01     0.00     0.00
## 4624                      Eidos Interactive     0.34     0.27     0.00
## 4625                      Eidos Interactive     0.29     0.33     0.00
## 4626                      Eidos Interactive     0.34     0.09     0.00
## 4627                        Electronic Arts     0.12     0.09     0.00
## 4628                        Electronic Arts     0.12     0.03     0.00
## 4629                        Electronic Arts     0.06     0.02     0.00
## 4630                        Electronic Arts     1.84     0.80     0.04
## 4631                        Electronic Arts     0.87     0.38     0.02
## 4632                        Electronic Arts     0.21     0.30     0.00
## 4633                                Ubisoft     0.86     0.45     0.00
## 4634                                Ubisoft     0.64     0.34     0.00
## 4635                                Ubisoft     0.06     0.01     0.00
## 4636                                Ubisoft     0.34     0.48     0.02
## 4637                                Ubisoft     0.87     0.05     0.02
## 4638                                Ubisoft     0.35     0.10     0.00
## 4639                                Ubisoft     0.93     0.40     0.02
## 4640                                Ubisoft     0.41     0.33     0.09
## 4641                                Ubisoft     0.05     0.10     0.00
## 4642                                Ubisoft     0.31     0.19     0.02
## 4643                                Ubisoft     0.21     0.22     0.05
## 4644                                Ubisoft     0.00     0.03     0.00
## 4645                                Ubisoft     0.91     0.57     0.00
## 4646                                Ubisoft     0.40     0.31     0.00
## 4647                                Ubisoft     0.04     0.01     0.00
## 4648                                Ubisoft     0.26     0.13     0.00
## 4649                                Ubisoft     0.17     0.13     0.00
## 4650                                Ubisoft     0.04     0.01     0.00
## 4651                                Ubisoft     0.54     1.16     0.13
## 4652                                Ubisoft     0.73     0.44     0.00
## 4653                                Ubisoft     0.12     0.08     0.00
## 4654                                Ubisoft     1.09     0.65     0.02
## 4655                                Ubisoft     0.47     0.53     0.03
## 4656                                Ubisoft     0.42     0.19     0.00
## 4657                                Ubisoft     1.56     0.61     0.02
## 4658                                Ubisoft     0.66     0.45     0.04
## 4659                                Ubisoft     0.00     0.02     0.00
## 4660                                Ubisoft     1.28     1.61     0.15
## 4661                                Ubisoft     1.20     0.62     0.00
## 4662                                Ubisoft     0.20     0.14     0.00
## 4663                                Unknown     0.02     0.01     0.00
## 4664                                Ubisoft     0.13     0.10     0.00
## 4665                               NewKidCo     0.05     0.01     0.00
## 4666                      Eidos Interactive     2.29     1.97     0.13
## 4667                      Eidos Interactive     0.96     0.07     0.00
## 4668                            Square Enix     0.06     0.25     0.00
## 4669                             Activision     0.40     0.20     0.00
## 4670                             Activision     0.33     0.08     0.00
## 4671                             Activision     0.28     0.02     0.00
## 4672                             Activision     3.42     1.38     0.02
## 4673                             Activision     1.68     0.40     0.00
## 4674                             Activision     0.90     0.38     0.01
## 4675                             Activision     3.05     1.41     0.02
## 4676                             Activision     0.85     0.31     0.00
## 4677                             Activision     0.59     0.16     0.00
## 4678                             Activision     0.70     0.17     0.00
## 4679                             Activision     0.46     0.10     0.00
## 4680                             Activision     0.38     0.15     0.00
## 4681                             Activision     0.41     0.11     0.00
## 4682                             Activision     0.18     0.07     0.00
## 4683                             Activision     0.17     0.07     0.00
## 4684                                  Titus     0.45     0.35     0.00
## 4685                                  Titus     0.12     0.03     0.00
## 4686                                Mastiff     0.07     0.03     0.00
## 4687                   Take-Two Interactive     0.17     0.40     0.00
## 4688                   Take-Two Interactive     0.15     0.23     0.00
## 4689                   Take-Two Interactive     0.05     0.09     0.00
## 4690           Konami Digital Entertainment     0.10     0.00     0.00
## 4691           Konami Digital Entertainment     0.08     0.00     0.00
## 4692           Konami Digital Entertainment     0.07     0.00     0.00
## 4693                                Ubisoft     0.09     0.01     0.00
## 4694                                Ubisoft     0.00     0.02     0.00
## 4695                                Ubisoft     0.01     0.01     0.00
## 4696                             Tecmo Koei     0.00     0.00     0.11
## 4697                             Tecmo Koei     0.00     0.00     0.08
## 4698                             Tecmo Koei     0.00     0.00     0.02
## 4699                             Tecmo Koei     0.05     0.05     0.17
## 4700                             Tecmo Koei     0.05     0.07     0.02
## 4701                             Tecmo Koei     0.00     0.00     0.05
## 4702                                Ubisoft     0.03     0.24     0.00
## 4703                                Ubisoft     0.02     0.03     0.00
## 4704                                Ubisoft     0.00     0.01     0.00
## 4705                             Activision     0.28     0.13     0.00
## 4706                             Activision     0.19     0.15     0.00
## 4707                             Activision     0.01     0.00     0.00
## 4708                             Activision     0.13     0.03     0.00
## 4709                             Activision     0.09     0.03     0.00
## 4710                             Activision     0.00     0.01     0.00
## 4711                             Activision     0.37     0.15     0.00
## 4712                             Activision     0.24     0.19     0.00
## 4713                             Activision     0.01     0.00     0.00
## 4714                                Ubisoft     0.13     0.21     0.01
## 4715                                Ubisoft     0.12     0.10     0.00
## 4716                                Ubisoft     0.00     0.03     0.00
## 4717                                Play It     0.08     0.06     0.00
## 4718                    Crave Entertainment     0.03     0.01     0.00
## 4719                    Crave Entertainment     0.01     0.00     0.00
## 4720                          Kalypso Media     0.05     0.16     0.05
## 4721                          Kalypso Media     0.02     0.08     0.00
## 4722                          Kalypso Media     0.03     0.04     0.00
## 4723                             Activision     0.57     0.02     0.07
## 4724                             Activision     0.21     0.06     0.00
## 4725                             Activision     0.13     0.03     0.00
## 4726                             Activision     1.89     1.05     0.02
## 4727                             Activision     0.96     0.37     0.00
## 4728                             Activision     0.44     0.11     0.00
## 4729                                    THQ     0.07     0.03     0.00
## 4730                                    THQ     0.04     0.05     0.00
## 4731                                    THQ     0.06     0.02     0.00
## 4732                             Touchstone     0.46     0.21     0.01
## 4733                             Touchstone     0.35     0.22     0.01
## 4734                             Touchstone     0.00     0.01     0.00
## 4735                                Unknown     0.40     0.08     0.03
## 4736                                Unknown     0.26     0.11     0.06
## 4737                                Unknown     0.09     0.09     0.00
## 4738                        Electronic Arts     0.57     0.45     0.00
## 4739                        Electronic Arts     0.21     0.05     0.00
## 4740                        Electronic Arts     0.14     0.04     0.00
## 4741                                    THQ     0.53     0.19     0.00
## 4742                                    THQ     0.08     0.09     0.00
## 4743                                    THQ     0.12     0.06     0.00
## 4744                                    THQ     0.80     0.41     0.02
## 4745                                    THQ     0.90     0.31     0.00
## 4746                                    THQ     0.11     0.07     0.00
## 4747                                Xplosiv     0.14     0.00     0.00
## 4748                                Xplosiv     0.06     0.00     0.00
## 4749                                Xplosiv     0.01     0.00     0.00
## 4750                                 Capcom     0.20     0.09     0.00
## 4751                                 Capcom     0.00     0.04     0.04
## 4752                                 Capcom     0.00     0.03     0.04
## 4753                           Midway Games     0.33     0.24     0.00
## 4754                           Midway Games     0.25     0.17     0.01
## 4755                           Midway Games     0.00     0.05     0.00
## 4756                              Aqua Plus     0.00     0.00     0.05
## 4757                              Aqua Plus     0.00     0.00     0.04
## 4758                              Aqua Plus     0.00     0.00     0.01
## 4759                              Aqua Plus     0.00     0.00     0.07
## 4760                              Aqua Plus     0.00     0.00     0.06
## 4761                              Aqua Plus     0.00     0.00     0.05
## 4762                                  Atari     0.03     0.02     0.00
## 4763                                  Atari     0.03     0.01     0.00
## 4764                                  Atari     0.01     0.00     0.00
## 4765                     Namco Bandai Games     0.01     0.05     0.00
## 4766                     Namco Bandai Games     0.00     0.02     0.00
## 4767                     Namco Bandai Games     0.00     0.01     0.00
## 4768                             Activision     0.22     0.17     0.00
## 4769                             Activision     0.13     0.04     0.00
## 4770                             Activision     0.07     0.03     0.00
## 4771                      DTP Entertainment     0.09     0.03     0.00
## 4772                      DTP Entertainment     0.07     0.04     0.00
## 4773                      DTP Entertainment     0.00     0.04     0.00
## 4774                  Acclaim Entertainment     0.12     0.09     0.00
## 4775                  Acclaim Entertainment     0.08     0.02     0.00
## 4776                  Acclaim Entertainment     0.05     0.01     0.00
## 4777                                   Sega     0.09     0.23     0.00
## 4778                                   Sega     0.13     0.21     0.00
## 4779                                   Sega     0.12     0.18     0.00
## 4780                                Ubisoft     0.00     0.13     0.00
## 4781                                Ubisoft     0.00     0.06     0.00
## 4782                                Ubisoft     0.00     0.01     0.00
## 4783           Konami Digital Entertainment     0.03     0.02     0.00
## 4784           Konami Digital Entertainment     0.01     0.00     0.00
## 4785           Konami Digital Entertainment     0.01     0.00     0.00
## 4786                                    THQ     0.74     0.40     0.00
## 4787                                    THQ     0.53     0.46     0.02
## 4788                                    THQ     0.24     0.09     0.00
## 4789                                    THQ     0.51     0.62     0.00
## 4790                                    THQ     0.72     0.45     0.00
## 4791                                    THQ     0.12     0.02     0.00
## 4792                                    THQ     1.40     0.88     0.03
## 4793                                    THQ     0.33     0.20     0.00
## 4794                                    THQ     0.44     0.03     0.00
## 4795                             Activision     0.08     0.06     0.00
## 4796                             Activision     0.04     0.01     0.00
## 4797                                  Aspyr     0.01     0.01     0.00
## 4798                     BAM! Entertainment     0.11     0.09     0.00
## 4799                     BAM! Entertainment     0.05     0.01     0.00
## 4800                     BAM! Entertainment     0.02     0.01     0.00
## 4801                                    THQ     0.25     0.27     0.00
## 4802                                    THQ     0.13     0.25     0.00
## 4803                                    THQ     0.09     0.09     0.00
## 4804                             Tecmo Koei     0.11     0.09     0.64
## 4805                             Tecmo Koei     0.02     0.00     0.18
## 4806                             Tecmo Koei     0.17     0.01     0.00
## 4807                             Tecmo Koei     0.06     0.00     0.22
## 4808                             Tecmo Koei     0.06     0.05     0.00
## 4809                             Tecmo Koei     0.04     0.00     0.01
## 4810                            Deep Silver     0.07     0.00     0.01
## 4811                   inXile Entertainment     0.02     0.06     0.00
## 4812                            Deep Silver     0.04     0.01     0.00
## 4813                      DTP Entertainment     0.00     0.06     0.00
## 4814                      DTP Entertainment     0.00     0.04     0.00
## 4815                      DTP Entertainment     0.00     0.02     0.00
## 4816                              Tradewest     0.02     0.02     0.00
## 4817                              Tradewest     0.00     0.03     0.00
## 4818                              Tradewest     0.00     0.01     0.00
## 4819                            Deep Silver     0.06     0.07     0.00
## 4820                            Deep Silver     0.05     0.04     0.00
## 4821                            Deep Silver     0.01     0.06     0.00
## 4822                             Activision     0.25     0.28     0.00
## 4823                             Activision     0.28     0.22     0.00
## 4824                             Activision     0.01     0.03     0.00
## 4825                     Bethesda Softworks     0.09     0.25     0.02
## 4826                     Bethesda Softworks     0.07     0.07     0.00
## 4827                     Bethesda Softworks     0.00     0.08     0.00
## 4828                                Play It     0.80     0.03     0.00
## 4829                    Crave Entertainment     0.37     0.11     0.00
## 4830                    Crave Entertainment     0.12     0.05     0.00
## 4831                     Oxygen Interactive     0.16     0.13     0.00
## 4832                              505 Games     0.12     0.00     0.00
## 4833                    Crave Entertainment     0.07     0.02     0.00
## 4834           Konami Digital Entertainment     0.00     0.00     0.23
## 4835           Konami Digital Entertainment     0.00     0.00     0.16
## 4836           Konami Digital Entertainment     0.00     0.00     0.09
## 4837                                    THQ     0.43     0.20     0.00
## 4838                                    THQ     0.41     0.16     0.00
## 4839                                    THQ     0.00     0.02     0.00
## 4840                                   Sega     0.06     0.05     0.00
## 4841                                   Sega     0.05     0.01     0.00
## 4842                                   Sega     0.04     0.01     0.00
## 4843                             Activision     0.42     0.11     0.02
## 4844                             Activision     0.11     0.08     0.00
## 4845                             Activision     0.04     0.01     0.00
## 4846                             Activision     1.00     0.72     0.00
## 4847                             Activision     0.62     0.24     0.00
## 4848                             Activision     0.41     0.11     0.00
## 4849                             Activision     0.31     0.32     0.00
## 4850                             Activision     0.42     0.21     0.00
## 4851                             Activision     0.02     0.00     0.00
## 4852                             Activision     0.23     0.18     0.00
## 4853                             Activision     0.10     0.03     0.00
## 4854                             Activision     0.08     0.02     0.00
## 4855                   Take-Two Interactive     0.09     0.10     0.00
## 4856                   Take-Two Interactive     0.01     0.02     0.00
## 4857                   Take-Two Interactive     0.01     0.01     0.00
## 4858                   Take-Two Interactive     0.26     0.36     0.00
## 4859                   Take-Two Interactive     0.36     0.23     0.00
## 4860                   Take-Two Interactive     0.24     0.25     0.00
## 4861                  Acclaim Entertainment     0.03     0.02     0.00
## 4862                  Acclaim Entertainment     0.02     0.00     0.00
## 4863                  Acclaim Entertainment     0.02     0.00     0.00
## 4864                                Ubisoft     0.28     0.22     0.00
## 4865                                Ubisoft     0.16     0.08     0.00
## 4866                                Ubisoft     0.07     0.02     0.00
## 4867                             Tecmo Koei     0.00     0.00     0.08
## 4868                             Tecmo Koei     0.00     0.00     0.07
## 4869                             Tecmo Koei     0.00     0.00     0.05
## 4870                              505 Games     3.50     2.64     0.00
## 4871                              505 Games     1.74     0.48     0.00
## 4872                              505 Games     0.28     0.21     0.00
## 4873                             Activision     0.48     0.25     0.00
## 4874                             Activision     0.36     0.28     0.00
## 4875                             Activision     0.07     0.02     0.00
## 4876                        Electronic Arts     1.13     0.38     0.02
## 4877                        Electronic Arts     0.51     0.35     0.00
## 4878                                    5pb     0.00     0.00     0.02
## 4879                                    5pb     0.00     0.00     0.02
## 4880                  Acclaim Entertainment     0.20     0.15     0.00
## 4881                  Acclaim Entertainment     0.09     0.02     0.00
## 4882                                Ubisoft     0.07     0.06     0.00
## 4883                                Ubisoft     0.05     0.01     0.00
## 4884                                   Sega     0.40     0.11     0.00
## 4885                                Ubisoft     0.09     0.01     0.00
## 4886                        Electronic Arts     0.15     0.39     0.01
## 4887                        Electronic Arts     0.14     0.28     0.00
## 4888                      Eidos Interactive     0.35     0.01     0.00
## 4889                      Eidos Interactive     0.12     0.04     0.00
## 4890                     Namco Bandai Games     0.00     0.00     0.23
## 4891                     Namco Bandai Games     0.00     0.00     0.19
## 4892                     Namco Bandai Games     0.00     0.00     0.19
## 4893                     Namco Bandai Games     0.00     0.00     0.15
## 4894                Gathering of Developers     0.18     0.05     0.00
## 4895                          Vivendi Games     0.11     0.03     0.00
## 4896                                    THQ     0.12     0.07     0.00
## 4897                                    THQ     0.10     0.06     0.01
## 4898                              Destineer     0.52     0.00     0.00
## 4899                     Avanquest Software     0.00     0.02     0.00
## 4900                         Telltale Games     0.03     0.07     0.00
## 4901                         Telltale Games     0.02     0.02     0.00
## 4902                                 Funsta     0.10     0.01     0.00
## 4903                            Mumbo Jumbo     0.07     0.00     0.00
## 4904            Sony Computer Entertainment     1.96     0.72     0.00
## 4905                             Activision     0.49     0.13     0.00
## 4906                           Bandai Namco     0.00     0.00     0.01
## 4907                     Namco Bandai Games     0.00     0.00     0.40
## 4908                     Bethesda Softworks     0.85     0.00     0.00
## 4909                          Vir2L Studios     0.06     0.00     0.00
## 4910                 Zoo Digital Publishing     0.21     0.00     0.00
## 4911                       Storm City Games     0.10     0.00     0.00
## 4912                  Acclaim Entertainment     0.58     0.39     0.00
## 4913                           Liquid Games     0.18     0.07     0.00
## 4914                                 Asgard     0.00     0.00     0.02
## 4915                               Quinrose     0.00     0.00     0.01
## 4916                     Namco Bandai Games     0.00     0.00     0.03
## 4917                     Namco Bandai Games     0.00     0.00     0.03
## 4918                     Namco Bandai Games     0.00     0.00     0.02
## 4919                     Namco Bandai Games     0.00     0.00     0.01
## 4920                     Namco Bandai Games     0.30     0.16     0.22
## 4921                     Namco Bandai Games     0.30     0.12     0.03
## 4922                             Activision     0.25     0.19     0.00
## 4923                             Activision     0.03     0.01     0.00
## 4924                           Little Orbit     0.01     0.00     0.00
## 4925                           Little Orbit     0.01     0.00     0.00
## 4926                           Little Orbit     0.00     0.08     0.00
## 4927                           Little Orbit     0.00     0.07     0.00
## 4928                                    THQ     0.02     0.02     0.00
## 4929                                    THQ     0.01     0.00     0.00
## 4930                                  Atari     0.16     0.05     0.00
## 4931                                  Atari     0.12     0.05     0.00
## 4932                     JoWood Productions     0.08     0.01     0.00
## 4933                               Microids     0.00     0.02     0.00
## 4934           Konami Digital Entertainment     0.14     0.04     0.00
## 4935           Konami Digital Entertainment     0.02     0.01     0.00
## 4936                                    5pb     0.00     0.00     0.01
## 4937                                    5pb     0.00     0.00     0.01
## 4938                 Microsoft Game Studios     0.66     0.51     0.05
## 4939                           Nordic Games     0.00     0.06     0.00
## 4940                  Acclaim Entertainment     0.05     0.04     0.00
## 4941                  Acclaim Entertainment     0.04     0.01     0.00
## 4942             Disney Interactive Studios     0.27     0.21     0.00
## 4943             Disney Interactive Studios     0.27     0.18     0.00
## 4944                 Zoo Digital Publishing     0.05     0.04     0.00
## 4945                       O3 Entertainment     0.07     0.02     0.00
## 4946                                   Sega     0.07     0.00     0.00
## 4947                                   Sega     0.06     0.00     0.00
## 4948                 Playlogic Game Factory     0.07     0.00     0.00
## 4949                 Playlogic Game Factory     0.05     0.00     0.00
## 4950                        Electronic Arts     0.09     0.07     0.00
## 4951                        Electronic Arts     0.06     0.02     0.00
## 4952                     Namco Bandai Games     0.00     0.00     0.10
## 4953                     Namco Bandai Games     0.00     0.00     0.06
## 4954                                    THQ     0.43     0.29     0.00
## 4955                                    THQ     0.26     0.00     0.00
## 4956                   Take-Two Interactive     0.24     0.00     0.00
## 4957                   Take-Two Interactive     0.14     0.00     0.00
## 4958                  Acclaim Entertainment     0.27     0.21     0.00
## 4959                  Acclaim Entertainment     0.17     0.04     0.00
## 4960                                Unknown     0.11     0.03     0.00
## 4961                                Unknown     0.16     0.12     0.00
## 4962                                    THQ     0.06     0.05     0.00
## 4963                                    THQ     0.04     0.01     0.00
## 4964                  Majesco Entertainment     0.28     0.00     0.00
## 4965                  Majesco Entertainment     0.09     0.00     0.00
## 4966                      Eidos Interactive     0.10     0.00     0.00
## 4967                    Crave Entertainment     0.08     0.00     0.00
## 4968                 Zoo Digital Publishing     0.35     0.01     0.00
## 4969                 Zoo Digital Publishing     0.11     0.03     0.00
## 4970                            Codemasters     0.27     0.21     0.00
## 4971                            Codemasters     0.15     0.06     0.00
## 4972                           Idea Factory     0.00     0.00     0.05
## 4973                           Idea Factory     0.00     0.00     0.01
## 4974                                   Sega     0.10     0.03     0.06
## 4975                                   Sega     0.11     0.02     0.02
## 4976                                Ubisoft     0.13     0.10     0.00
## 4977                                Ubisoft     0.06     0.02     0.00
## 4978                             Activision     0.10     0.00     0.00
## 4979                             Activision     0.09     0.00     0.00
## 4980                     Empire Interactive     0.02     0.02     0.00
## 4981                     Empire Interactive     0.01     0.00     0.00
## 4982            Sony Computer Entertainment     0.71     0.48     0.32
## 4983            Sony Computer Entertainment     0.00     0.03     0.00
## 4984                                Unknown     0.01     0.00     0.00
## 4985                         TDK Mediactive     0.01     0.00     0.00
## 4986                             Tecmo Koei     0.05     0.04     0.06
## 4987                             Tecmo Koei     0.00     0.00     0.04
## 4988                              Prototype     0.00     0.00     0.02
## 4989                               Quinrose     0.00     0.00     0.01
## 4990                 Ignition Entertainment     0.03     0.02     0.00
## 4991                 Ignition Entertainment     0.02     0.01     0.00
## 4992                 Zoo Digital Publishing     0.13     0.00     0.00
## 4993                 Zoo Digital Publishing     0.04     0.00     0.00
## 4994                           Midway Games     0.17     0.14     0.00
## 4995                           Midway Games     0.09     0.02     0.00
## 4996                               Nintendo     0.20     0.00     0.00
## 4997                                    THQ     0.08     0.00     0.00
## 4998                                    THQ     0.51     0.00     0.00
## 4999                                    THQ     0.36     0.00     0.00
## 5000                        Electronic Arts     0.28     0.22     0.00
## 5001                        Electronic Arts     0.11     0.03     0.00
## 5002                              505 Games     0.19     0.01     0.03
## 5003                              505 Games     0.09     0.00     0.09
## 5004                     Namco Bandai Games     0.09     0.04     0.24
## 5005                     Namco Bandai Games     0.13     0.03     0.04
## 5006                                Ubisoft     0.06     0.02     0.10
## 5007                                Ubisoft     0.06     0.01     0.07
## 5008                  Acclaim Entertainment     0.21     0.05     0.00
## 5009                  Acclaim Entertainment     0.05     0.03     0.00
## 5010                                    3DO     0.06     0.05     0.00
## 5011                                    3DO     0.04     0.02     0.00
## 5012                                    3DO     0.05     0.04     0.00
## 5013                            Global Star     0.05     0.01     0.00
## 5014                                    3DO     0.68     0.12     0.00
## 5015                                    3DO     0.31     0.21     0.00
## 5016                            Global Star     0.12     0.03     0.00
## 5017                            Global Star     0.09     0.02     0.00
## 5018                              Zoo Games     0.12     0.00     0.00
## 5019                              Zoo Games     0.11     0.00     0.00
## 5020                        Electronic Arts     1.09     0.38     0.02
## 5021                        Electronic Arts     0.74     0.26     0.02
## 5022                        Electronic Arts     0.11     0.11     0.01
## 5023                        Electronic Arts     0.16     0.07     0.00
## 5024                                  PlayV     0.00     0.14     0.00
## 5025                        Hip Interactive     0.03     0.01     0.00
## 5026                              505 Games     0.00     0.04     0.00
## 5027                              505 Games     0.00     0.01     0.00
## 5028                                  Atari     4.00     0.26     0.00
## 5029                                Success     0.64     0.43     0.00
## 5030                                 Capcom     0.18     0.12     0.06
## 5031                                 Capcom     0.15     0.06     0.01
## 5032                                  Atari     0.33     0.01     0.00
## 5033                                  Atari     0.19     0.05     0.00
## 5034                             Tecmo Koei     0.06     0.04     0.14
## 5035                             Tecmo Koei     0.00     0.00     0.05
## 5036                             Tecmo Koei     0.06     0.04     0.10
## 5037                             Tecmo Koei     0.00     0.00     0.04
## 5038                   Nippon Ichi Software     0.05     0.00     0.18
## 5039                                   Gust     0.00     0.00     0.06
## 5040                   Nippon Ichi Software     0.22     0.12     0.11
## 5041                   Nippon Ichi Software     0.00     0.00     0.05
## 5042                   Nippon Ichi Software     0.12     0.07     0.21
## 5043                                   Gust     0.00     0.00     0.09
## 5044                  Majesco Entertainment     0.10     0.00     0.00
## 5045                  Majesco Entertainment     0.04     0.00     0.00
## 5046                                 Capcom     0.19     0.15     0.00
## 5047                                 Capcom     0.02     0.01     0.00
## 5048                                Unknown     0.16     0.00     0.00
## 5049                                Unknown     0.17     0.00     0.00
## 5050                                  Atari     0.14     0.05     0.00
## 5051                                  Atari     0.07     0.00     0.00
## 5052                                  Atari     0.29     0.22     0.00
## 5053                                  Atari     0.07     0.00     0.00
## 5054                                  Atari     0.10     0.08     0.00
## 5055                                  Atari     0.02     0.01     0.00
## 5056                      Eidos Interactive     0.14     0.11     0.00
## 5057                      Eidos Interactive     0.09     0.03     0.00
## 5058                      Eidos Interactive     0.30     0.23     0.00
## 5059                      Eidos Interactive     0.13     0.04     0.00
## 5060                                    THQ     0.10     0.08     0.00
## 5061                                    THQ     0.12     0.06     0.00
## 5062                  Marvelous Interactive     0.00     0.00     0.02
## 5063                  Marvelous Interactive     0.00     0.00     0.01
## 5064                              Interplay     0.34     0.26     0.00
## 5065                  Acclaim Entertainment     0.19     0.06     0.00
## 5066                        UFO Interactive     0.13     0.00     0.00
## 5067                              505 Games     0.04     0.00     0.00
## 5068                 Zoo Digital Publishing     0.02     0.00     0.00
## 5069                 Zoo Digital Publishing     0.02     0.00     0.00
## 5070                               Nintendo     1.87     1.13     0.55
## 5071                 Microsoft Game Studios     0.00     0.01     0.00
## 5072                  Universal Interactive     0.24     0.19     0.00
## 5073                          Vivendi Games     0.05     0.01     0.00
## 5074                             Activision     0.21     0.00     0.00
## 5075                             Activision     0.12     0.00     0.00
## 5076                                    THQ     0.26     0.14     0.00
## 5077                                    THQ     0.19     0.02     0.00
## 5078                                    THQ     0.37     0.05     0.00
## 5079                                    THQ     0.23     0.01     0.00
## 5080                      Rising Star Games     0.05     0.04     0.02
## 5081                      Rising Star Games     0.07     0.00     0.00
## 5082                               Nintendo     0.73     0.10     2.35
## 5083                               Nintendo     0.66     0.27     0.65
## 5084                               XS Games     0.23     0.00     0.00
## 5085                  Griffin International     0.08     0.00     0.00
## 5086                               XS Games     0.45     0.00     0.00
## 5087                               XS Games     0.20     0.00     0.00
## 5088                                Ubisoft     0.09     0.06     0.00
## 5089                                Ubisoft     0.07     0.02     0.00
## 5090                         Telltale Games     0.01     0.02     0.00
## 5091                         Telltale Games     0.00     0.01     0.00
## 5092 Warner Bros. Interactive Entertainment     0.20     0.20     0.00
## 5093 Warner Bros. Interactive Entertainment     0.16     0.09     0.00
## 5094                                  Kemco     0.08     0.02     0.00
## 5095                                  Kemco     0.06     0.02     0.00
## 5096 Warner Bros. Interactive Entertainment     0.24     0.04     0.00
## 5097 Warner Bros. Interactive Entertainment     0.22     0.06     0.00
## 5098                                  Atari     0.02     0.01     0.00
## 5099                                  Atari     0.01     0.00     0.00
## 5100                              505 Games     0.07     0.00     0.01
## 5101                              505 Games     0.00     0.00     0.01
## 5102                     Namco Bandai Games     0.00     0.00     0.15
## 5103                     Namco Bandai Games     0.00     0.00     0.09
## 5104                        Electronic Arts     0.81     0.46     0.04
## 5105                        Electronic Arts     0.76     0.36     0.05
## 5106                          Vivendi Games     0.08     0.06     0.00
## 5107                          Vivendi Games     0.06     0.02     0.00
## 5108                      Eidos Interactive     0.21     0.02     0.00
## 5109                      Eidos Interactive     0.00     0.01     0.00
## 5110                      Eidos Interactive     0.17     0.12     0.01
## 5111                      Eidos Interactive     0.00     0.02     0.00
## 5112                                  Atari     0.58     0.03     0.00
## 5113                                  Atari     0.02     0.00     0.00
## 5114                                   Sega     0.44     0.41     0.21
## 5115                                   Sega     0.51     0.26     0.09
## 5116           Konami Digital Entertainment     0.00     0.00     1.07
## 5117           Konami Digital Entertainment     0.03     0.03     0.00
## 5118                                   Sega     0.14     0.54     0.01
## 5119                                   Sega     0.15     0.38     0.00
## 5120                           PopCap Games     0.00     0.09     0.00
## 5121                           PopCap Games     0.01     0.04     0.00
## 5122                     Namco Bandai Games     0.00     0.02     0.00
## 5123                     Namco Bandai Games     0.00     0.01     0.00
## 5124                    Crave Entertainment     0.01     0.01     0.00
## 5125                    Crave Entertainment     0.01     0.00     0.00
## 5126                             Activision     0.18     0.02     0.00
## 5127                             Activision     0.09     0.01     0.00
## 5128                             Activision     0.10     0.00     0.00
## 5129                             Activision     0.09     0.00     0.00
## 5130                                Xplosiv     0.10     0.07     0.00
## 5131                     Empire Interactive     0.05     0.02     0.00
## 5132                 Zoo Digital Publishing     0.30     0.00     0.00
## 5133                 Zoo Digital Publishing     0.14     0.00     0.00
## 5134                           Game Factory     0.03     0.02     0.00
## 5135                           Game Factory     0.03     0.00     0.00
## 5136                                   Sega     0.09     0.08     0.14
## 5137                                   Sega     0.09     0.07     0.02
## 5138                         GT Interactive     0.11     0.03     0.00
## 5139                         GT Interactive     0.07     0.05     0.00
## 5140                   Take-Two Interactive     0.05     0.11     0.01
## 5141                   Take-Two Interactive     0.03     0.04     0.00
## 5142                                 Capcom     0.00     0.00     0.18
## 5143                                 Capcom     0.00     0.00     0.03
## 5144                                 Capcom     0.12     0.17     0.01
## 5145                                 Capcom     0.12     0.12     0.01
## 5146           Konami Digital Entertainment     0.10     0.09     0.02
## 5147           Konami Digital Entertainment     0.11     0.04     0.00
## 5148                        Electronic Arts     1.01     0.04     0.03
## 5149                        Electronic Arts     0.31     0.09     0.00
## 5150                          Vivendi Games     0.08     0.06     0.00
## 5151                          Vivendi Games     0.04     0.01     0.00
## 5152                           Midway Games     0.29     0.23     0.00
## 5153                           Midway Games     0.07     0.01     0.00
## 5154                                   Sega     0.00     0.00     0.02
## 5155                                   Sega     0.00     0.00     0.02
## 5156                             Activision     0.15     0.12     0.00
## 5157                             Activision     0.10     0.03     0.00
## 5158           Konami Digital Entertainment     0.07     0.03     0.00
## 5159           Konami Digital Entertainment     0.04     0.03     0.01
## 5160                             Tecmo Koei     0.10     0.03     0.14
## 5161                             Tecmo Koei     0.08     0.01     0.00
## 5162                       Arc System Works     0.13     0.00     0.14
## 5163                       Arc System Works     0.06     0.00     0.03
## 5164                                  PQube     0.21     0.08     0.09
## 5165                                  PQube     0.23     0.04     0.02
## 5166                                  PQube     0.03     0.02     0.07
## 5167                                  PQube     0.05     0.01     0.04
## 5168                                Ubisoft     0.10     0.03     0.00
## 5169                                Ubisoft     0.11     0.02     0.00
## 5170                           Midway Games     0.11     0.03     0.00
## 5171                           Midway Games     0.08     0.01     0.00
## 5172                 Focus Home Interactive     0.13     0.03     0.00
## 5173                 Focus Home Interactive     0.01     0.02     0.00
## 5174                             Activision     0.09     0.01     0.00
## 5175                             Activision     0.07     0.00     0.00
## 5176                                    THQ     0.13     0.10     0.00
## 5177                                    THQ     0.11     0.03     0.00
## 5178                 Zoo Digital Publishing     0.11     0.09     0.00
## 5179                 Zoo Digital Publishing     0.04     0.01     0.00
## 5180                            Codemasters     0.05     0.06     0.00
## 5181                            Codemasters     0.07     0.03     0.00
## 5182                           PopCap Games     0.31     0.01     0.00
## 5183                                Unknown     0.02     0.01     0.00
## 5184                   Take-Two Interactive     0.36     0.32     0.03
## 5185                   Take-Two Interactive     0.24     0.13     0.00
## 5186           Konami Digital Entertainment     0.37     0.00     0.00
## 5187           Konami Digital Entertainment     0.08     0.05     0.00
## 5188                 Focus Home Interactive     0.07     0.08     0.00
## 5189                    Focus Entertainment     0.00     0.01     0.00
## 5190                             Activision     0.72     0.04     0.00
## 5191        Midas Interactive Entertainment     0.04     0.03     0.00
## 5192                           Game Factory     0.16     0.00     0.00
## 5193                           Game Factory     0.03     0.00     0.00
## 5194                                    THQ     0.24     0.18     0.00
## 5195                                    THQ     0.24     0.01     0.00
## 5196                        SouthPeak Games     0.05     0.00     0.00
## 5197                        SouthPeak Games     0.05     0.01     0.00
## 5198             Disney Interactive Studios     0.00     0.02     0.00
## 5199             Disney Interactive Studios     0.00     0.02     0.00
## 5200                                 Laguna     0.00     0.00     0.36
## 5201                                Ubisoft     0.14     0.05     0.00
## 5202                                 Capcom     0.29     0.19     0.46
## 5203                                 Capcom     0.00     0.03     0.00
## 5204                                    THQ     0.12     0.09     0.00
## 5205                                    THQ     0.15     0.06     0.00
## 5206                    Revolution Software     0.00     0.06     0.00
## 5207                    Revolution Software     0.00     0.01     0.00
## 5208                                Ubisoft     0.38     0.01     0.00
## 5209                                Ubisoft     0.23     0.07     0.00
## 5210                                Ubisoft     0.49     0.14     0.00
## 5211                                Ubisoft     0.38     0.01     0.00
## 5212                                Ubisoft     0.01     0.00     0.00
## 5213                                Ubisoft     0.01     0.05     0.00
## 5214                              505 Games     0.03     0.08     0.00
## 5215                              505 Games     0.03     0.01     0.00
## 5216                                    THQ     0.10     0.07     0.00
## 5217                                    THQ     0.05     0.01     0.00
## 5218                        Electronic Arts     0.62     0.27     0.00
## 5219                        Electronic Arts     0.54     0.28     0.00
## 5220                              Destineer     0.15     0.00     0.00
## 5221                              Destineer     0.14     0.00     0.00
## 5222                        Electronic Arts     1.23     1.11     0.00
## 5223                        Electronic Arts     0.84     0.43     0.00
## 5224                        Electronic Arts     0.70     0.06     0.00
## 5225                        Electronic Arts     0.15     0.02     0.00
## 5226                        Electronic Arts     1.01     0.64     0.02
## 5227                        Electronic Arts     0.63     0.58     0.01
## 5228                  Acclaim Entertainment     0.18     0.12     0.00
## 5229                  Acclaim Entertainment     0.05     0.01     0.00
## 5230                  Acclaim Entertainment     0.11     0.07     0.00
## 5231                  Acclaim Entertainment     0.06     0.02     0.00
## 5232                           Little Orbit     0.08     0.00     0.00
## 5233                           Little Orbit     0.06     0.00     0.00
## 5234                     Oxygen Interactive     0.02     0.00     0.00
## 5235                     Oxygen Interactive     0.02     0.00     0.00
## 5236                                Ubisoft     0.13     0.13     0.00
## 5237                                Ubisoft     0.10     0.08     0.00
## 5238                                Ubisoft     0.36     0.43     0.00
## 5239                                Ubisoft     0.07     0.02     0.00
## 5240                       Activision Value     0.13     0.00     0.00
## 5241                       Activision Value     0.04     0.00     0.00
## 5242                                Unknown     0.01     0.01     0.00
## 5243                             Activision     0.12     0.00     0.00
## 5244                             Activision     0.70     0.54     0.00
## 5245                       Activision Value     0.07     0.02     0.00
## 5246                 Zoo Digital Publishing     0.57     0.45     0.00
## 5247                 Zoo Digital Publishing     0.26     0.08     0.00
## 5248                             Activision     0.18     0.14     0.00
## 5249                             Activision     0.09     0.02     0.00
## 5250                       Activision Value     0.37     0.29     0.00
## 5251                       Activision Value     0.16     0.05     0.00
## 5252                 Zoo Digital Publishing     0.08     0.02     0.00
## 5253                             Activision     0.03     0.01     0.00
## 5254                              Destineer     0.03     0.00     0.00
## 5255                              Destineer     0.01     0.01     0.00
## 5256                             Activision     1.81     0.05     0.01
## 5257                             Activision     0.00     0.05     0.00
## 5258                             Activision     0.00     0.01     0.00
## 5259                             Activision     0.01     0.01     0.00
## 5260                                Ubisoft     0.14     0.02     0.00
## 5261                                Ubisoft     0.00     0.01     0.00
## 5262                              Destineer     0.14     0.00     0.00
## 5263                              Destineer     0.04     0.00     0.00
## 5264                                 Capcom     0.22     0.17     0.05
## 5265                                 Capcom     0.11     0.03     0.00
## 5266                                 Capcom     0.10     0.08     0.00
## 5267                                 Capcom     0.03     0.01     0.00
## 5268                                 Capcom     0.09     0.02     0.00
## 5269                                 Capcom     0.08     0.02     0.00
## 5270                   Take-Two Interactive     2.13     1.50     0.05
## 5271                   Take-Two Interactive     1.23     0.64     0.00
## 5272                                Xplosiv     0.00     0.23     0.00
## 5273                                Xplosiv     0.05     0.00     0.00
## 5274                              Interplay     0.46     0.31     0.00
## 5275                               Microids     0.01     0.00     0.00
## 5276               Blast! Entertainment Ltd     0.02     0.00     0.00
## 5277               Blast! Entertainment Ltd     0.02     0.00     0.00
## 5278                         TDK Mediactive     0.07     0.05     0.00
## 5279                         TDK Mediactive     0.02     0.00     0.00
## 5280           Konami Digital Entertainment     0.54     0.06     0.62
## 5281           Konami Digital Entertainment     0.44     0.10     0.04
## 5282           Konami Digital Entertainment     0.18     0.14     0.05
## 5283           Konami Digital Entertainment     0.09     0.03     0.00
## 5284           Konami Digital Entertainment     0.50     0.37     0.10
## 5285           Konami Digital Entertainment     0.42     0.18     0.01
## 5286           Konami Digital Entertainment     0.02     0.01     0.00
## 5287           Konami Digital Entertainment     0.02     0.00     0.00
## 5288                     Oxygen Interactive     0.08     0.01     0.00
## 5289                     Oxygen Interactive     0.07     0.00     0.00
## 5290                            Deep Silver     0.30     0.15     0.20
## 5291                            Deep Silver     0.20     0.06     0.03
## 5292                                Ubisoft     0.49     0.02     0.00
## 5293                                Ubisoft     0.18     0.06     0.00
## 5294                        Electronic Arts     0.09     0.03     0.00
## 5295                        Electronic Arts     0.05     0.01     0.00
## 5296                                  Atari     1.26     0.08     0.00
## 5297                                  Atari     0.36     0.25     0.00
## 5298                                  Atari     0.06     0.00     0.00
## 5299                                  Atari     0.04     0.00     0.00
## 5300                                O-Games     0.05     0.04     0.00
## 5301                                O-Games     0.00     0.06     0.00
## 5302                                    5pb     0.00     0.00     0.04
## 5303                                    5pb     0.00     0.00     0.03
## 5304                                Ubisoft     0.12     0.03     0.00
## 5305                                Ubisoft     0.11     0.00     0.00
## 5306                       Storm City Games     0.06     0.00     0.00
## 5307                       Storm City Games     0.02     0.00     0.00
## 5308                            Zushi Games     0.31     0.00     0.00
## 5309                            Zushi Games     0.04     0.00     0.00
## 5310                                Ubisoft     0.28     0.12     0.00
## 5311                                Ubisoft     0.09     0.10     0.00
## 5312                                Ubisoft     0.00     0.07     0.02
## 5313                                Ubisoft     0.00     0.01     0.04
## 5314                             SquareSoft     0.28     0.00     2.02
## 5315                            Square Enix     0.69     0.20     0.49
## 5316                              Zoo Games     0.06     0.00     0.00
## 5317                              Zoo Games     0.02     0.00     0.00
## 5318                        UFO Interactive     0.17     0.00     0.00
## 5319                        UFO Interactive     0.16     0.00     0.00
## 5320                                Level 5     0.00     0.00     0.47
## 5321                                Unknown     0.00     0.03     0.00
## 5322                     Namco Bandai Games     0.09     0.16     0.01
## 5323                     Namco Bandai Games     0.08     0.06     0.00
## 5324                     Victor Interactive     0.00     0.00     0.11
## 5325                     Victor Interactive     0.00     0.00     0.07
## 5326                              Prototype     0.00     0.00     0.02
## 5327                               Quinrose     0.00     0.00     0.02
## 5328               Conspiracy Entertainment     0.06     0.00     0.00
## 5329                    Big Ben Interactive     0.04     0.00     0.00
## 5330                     Namco Bandai Games     0.00     0.00     0.07
## 5331                     Namco Bandai Games     0.00     0.00     0.06
## 5332                           Game Factory     0.07     0.02     0.00
## 5333                           Game Factory     0.03     0.00     0.00
## 5334                                Ubisoft     0.06     0.04     0.00
## 5335                                Ubisoft     0.05     0.01     0.00
## 5336                            Codemasters     0.02     0.80     0.02
## 5337                            Codemasters     0.02     0.01     0.00
## 5338                            Codemasters     0.04     0.01     0.00
## 5339                            Codemasters     0.00     0.01     0.00
## 5340                            Codemasters     0.03     1.05     0.02
## 5341                            Codemasters     0.03     0.01     0.00
## 5342                   Take-Two Interactive     0.20     0.00     0.00
## 5343                   Take-Two Interactive     0.16     0.00     0.00
## 5344                                Unknown     0.02     0.01     0.00
## 5345                                Unknown     0.03     0.02     0.00
## 5346                     Virgin Interactive     0.22     0.15     0.00
## 5347                               Nintendo     0.22     0.05     0.00
## 5348                        Electronic Arts     0.16     0.06     0.00
## 5349                        Electronic Arts     0.00     0.01     0.00
## 5350                        Electronic Arts     0.35     0.05     0.00
## 5351                        Electronic Arts     0.00     0.06     0.00
## 5352                     Virgin Interactive     1.37     1.34     0.00
## 5353                     Virgin Interactive     0.23     0.16     0.00
## 5354                        Electronic Arts     0.01     0.64     0.00
## 5355                        Electronic Arts     0.18     0.23     0.00
## 5356                                 Capcom     0.71     0.16     0.25
## 5357                             Activision     0.44     0.02     0.00
## 5358                      Eidos Interactive     0.09     0.07     0.00
## 5359                      Eidos Interactive     0.05     0.02     0.00
## 5360                      Eidos Interactive     0.03     0.02     0.00
## 5361                      Eidos Interactive     0.02     0.00     0.00
## 5362                                    THQ     0.13     0.15     0.00
## 5363                                    THQ     0.16     0.02     0.00
## 5364                             Screenlife     0.13     0.00     0.04
## 5365                             Screenlife     0.09     0.00     0.03
## 5366                                   Sega     0.38     0.19     0.00
## 5367                                   Sega     0.17     0.16     0.00
## 5368                      Eidos Interactive     0.09     0.07     0.00
## 5369                                    SCi     0.08     0.02     0.00
## 5370                                    SCi     0.26     0.20     0.00
## 5371                                    SCi     0.17     0.05     0.00
## 5372                                    SCi     0.05     0.04     0.00
## 5373                                    SCi     0.04     0.01     0.00
## 5374            Sony Computer Entertainment     0.23     0.16     0.00
## 5375            Sony Computer Entertainment     0.16     0.13     0.00
## 5376                                    5pb     0.00     0.00     0.05
## 5377                                    5pb     0.00     0.00     0.04
## 5378                              Mindscape     0.00     0.14     0.00
## 5379                              Mindscape     0.00     0.05     0.00
## 5380                      Eidos Interactive     0.11     0.08     0.00
## 5381                      Eidos Interactive     0.07     0.02     0.00
## 5382                          Vivendi Games     0.32     0.25     0.00
## 5383                          Vivendi Games     0.11     0.03     0.00
## 5384                      DTP Entertainment     0.00     0.03     0.00
## 5385                      DTP Entertainment     0.01     0.01     0.00
## 5386                   Nippon Ichi Software     0.04     0.02     0.04
## 5387                   Nippon Ichi Software     0.00     0.00     0.08
## 5388                               Nintendo     0.00     0.00     0.16
## 5389                                   Sega     0.01     0.01     0.00
## 5390                               Nintendo     0.29     0.07     0.00
## 5391                               Nintendo     0.00     0.00     0.29
## 5392                        Electronic Arts     0.33     0.22     0.00
## 5393                        Electronic Arts     0.05     0.01     0.00
## 5394              Sony Online Entertainment     0.35     0.12     0.00
## 5395              Sony Online Entertainment     0.16     0.06     0.00
## 5396                  Acclaim Entertainment     0.02     0.01     0.00
## 5397                  Acclaim Entertainment     0.02     0.00     0.00
## 5398                                Ubisoft     0.27     0.66     0.00
## 5399                                Ubisoft     0.05     0.03     0.00
## 5400                      DTP Entertainment     0.00     0.01     0.00
## 5401                      DTP Entertainment     0.00     0.02     0.00
## 5402                             Activision     0.22     0.00     0.00
## 5403                             Activision     0.08     0.06     0.00
## 5404                             Ghostlight     0.00     0.09     0.00
## 5405                             Ghostlight     0.00     0.02     0.00
## 5406                             Activision     0.36     0.00     0.00
## 5407                             Activision     0.36     0.00     0.00
## 5408                   Nippon Ichi Software     0.13     0.07     0.00
## 5409                                  Spike     0.00     0.00     0.19
## 5410                   Nippon Ichi Software     0.14     0.07     0.15
## 5411                                Unknown     0.00     0.00     0.24
## 5412                            D3Publisher     0.22     0.20     0.01
## 5413                            D3Publisher     0.23     0.16     0.01
## 5414                                Ubisoft     0.16     0.12     0.00
## 5415                                Ubisoft     0.16     0.05     0.00
## 5416                     Oxygen Interactive     0.06     0.00     0.00
## 5417                              505 Games     0.06     0.00     0.00
## 5418                            Deep Silver     0.02     0.07     0.01
## 5419                            Deep Silver     0.02     0.02     0.00
## 5420                                 Capcom     1.16     0.65     0.08
## 5421                                 Capcom     0.01     0.00     0.00
## 5422            Sony Computer Entertainment     0.09     0.06     0.10
## 5423                             Tecmo Koei     0.00     0.00     0.18
## 5424                             Tecmo Koei     0.30     0.24     0.38
## 5425                  Acclaim Entertainment     0.00     0.00     0.14
## 5426                        Electronic Arts     0.10     0.08     0.00
## 5427                        Electronic Arts     0.08     0.02     0.00
## 5428                     Namco Bandai Games     0.10     0.12     0.02
## 5429                     Namco Bandai Games     0.11     0.08     0.00
## 5430       Cloud Imperium Games Corporation     0.04     0.00     0.00
## 5431       Cloud Imperium Games Corporation     0.04     0.00     0.00
## 5432                      Rising Star Games     0.18     0.06     0.00
## 5433                      Rising Star Games     0.08     0.05     0.00
## 5434                             Tecmo Koei     0.03     0.03     0.07
## 5435                             Tecmo Koei     0.02     0.02     0.06
## 5436                                    THQ     0.11     0.01     0.00
## 5437                                    THQ     0.07     0.05     0.00
## 5438                    Big Ben Interactive     0.67     0.04     0.00
## 5439                                Mastiff     0.41     0.00     0.00
## 5440                        Electronic Arts     0.16     0.19     0.00
## 5441                        Electronic Arts     0.30     0.01     0.00
## 5442                        Electronic Arts     0.95     0.74     0.00
## 5443                        Electronic Arts     0.19     0.05     0.00
## 5444                            Zushi Games     0.05     0.00     0.00
## 5445                            Zushi Games     0.02     0.00     0.00
## 5446                              NovaLogic     0.22     0.17     0.00
## 5447                              NovaLogic     0.25     0.07     0.00
## 5448                                   Sega     0.08     0.00     0.07
## 5449                                   Sega     0.05     0.00     0.09
## 5450                    ASCII Entertainment     0.00     0.00     1.96
## 5451                    ASCII Entertainment     0.00     0.00     0.09
## 5452                             Activision     0.01     0.04     0.00
## 5453                             Activision     0.01     0.02     0.00
## 5454                                    THQ     0.78     0.03     0.00
## 5455                                    THQ     0.34     0.11     0.00
## 5456                                    THQ     0.08     0.04     0.00
## 5457                                    THQ     0.00     0.08     0.00
## 5458           Konami Digital Entertainment     0.00     0.00     0.13
## 5459           Konami Digital Entertainment     0.00     0.00     0.08
## 5460                     Namco Bandai Games     0.00     0.00     0.05
## 5461                     Namco Bandai Games     0.00     0.00     0.04
## 5462                                 Capcom     0.42     0.21     0.11
## 5463                                 Capcom     0.28     0.11     0.01
## 5464                            Codemasters     0.08     0.14     0.00
## 5465                            Codemasters     0.02     0.13     0.00
## 5466                             Activision     0.01     1.58     0.00
## 5467                        Electronic Arts     0.29     0.19     0.07
## 5468                           Idea Factory     0.00     0.00     0.03
## 5469                           Idea Factory     0.00     0.00     0.02
## 5470                                  Atari     1.52     0.10     0.00
## 5471                     Namco Bandai Games     0.00     0.00     0.41
## 5472                     Namco Bandai Games     0.06     0.03     0.00
## 5473                     Namco Bandai Games     0.04     0.01     0.00
## 5474                     Namco Bandai Games     0.00     0.00     0.17
## 5475                     Namco Bandai Games     0.00     0.09     0.00
## 5476                      Eidos Interactive     0.34     0.03     0.00
## 5477                      Eidos Interactive     0.11     0.00     0.00
## 5478                                Unknown     0.01     0.00     0.00
## 5479                         TDK Mediactive     0.01     0.00     0.00
## 5480                   Nippon Ichi Software     0.27     0.11     0.14
## 5481                   Nippon Ichi Software     0.04     0.04     0.08
## 5482             Disney Interactive Studios     1.24     0.04     0.00
## 5483             Disney Interactive Studios     0.11     0.09     0.00
## 5484                                    THQ     0.26     0.11     0.00
## 5485                                    THQ     0.08     0.04     0.00
## 5486             Disney Interactive Studios     0.39     0.18     0.00
## 5487             Disney Interactive Studios     0.11     0.04     0.00
## 5488             Disney Interactive Studios     0.50     0.11     0.00
## 5489             Disney Interactive Studios     0.10     0.01     0.00
## 5490                                Unknown     0.01     0.01     0.00
## 5491           Konami Digital Entertainment     0.01     0.00     0.00
## 5492           Konami Digital Entertainment     0.05     0.02     0.00
## 5493           Konami Digital Entertainment     0.05     0.01     0.00
## 5494           Konami Digital Entertainment     0.03     0.01     0.00
## 5495           Konami Digital Entertainment     0.02     0.01     0.00
## 5496             Disney Interactive Studios     0.37     0.16     0.01
## 5497             Disney Interactive Studios     0.08     0.06     0.00
## 5498             Disney Interactive Studios     0.58     0.37     0.00
## 5499             Disney Interactive Studios     0.47     0.17     0.00
## 5500                                 Capcom     0.94     0.34     0.21
## 5501                                 Capcom     0.02     0.01     0.00
## 5502            Sony Computer Entertainment     0.10     0.07     0.00
## 5503                                    THQ     0.09     0.03     0.00
## 5504             Disney Interactive Studios     0.10     0.00     0.00
## 5505             Disney Interactive Studios     0.06     0.00     0.00
## 5506                                 Capcom     0.91     0.30     0.42
## 5507                                 Capcom     0.82     0.23     0.35
## 5508                                Ubisoft     0.06     0.05     0.00
## 5509                                Ubisoft     0.04     0.01     0.00
## 5510                   Hudson Entertainment     0.05     0.02     0.00
## 5511                        Electronic Arts     0.04     0.01     0.00
## 5512                                Ubisoft     0.20     0.16     0.00
## 5513                                Ubisoft     0.14     0.04     0.00
## 5514                     Virgin Interactive     1.26     0.39     0.08
## 5515                     Virgin Interactive     0.97     0.37     0.03
## 5516            Sony Computer Entertainment     0.16     0.13     0.00
## 5517                                Ubisoft     0.20     0.07     0.00
## 5518                              505 Games     0.07     0.01     0.00
## 5519                              505 Games     0.05     0.00     0.00
## 5520                      DTP Entertainment     0.18     0.04     0.00
## 5521                      DTP Entertainment     0.01     0.05     0.00
## 5522                            Zushi Games     0.11     0.00     0.00
## 5523                            Zushi Games     0.03     0.00     0.00
## 5524                                Ubisoft     0.45     0.17     0.00
## 5525                                Ubisoft     0.51     0.02     0.00
## 5526                                  Sting     0.12     0.00     0.00
## 5527                                  Sting     0.05     0.04     0.02
## 5528                   Take-Two Interactive     0.14     0.10     0.00
## 5529                   Take-Two Interactive     0.06     0.01     0.00
## 5530                               Nintendo     3.25     1.84     1.03
## 5531                               Nintendo     0.73     0.62     0.40
## 5532                               Nintendo     0.84     0.22     0.24
## 5533                               Nintendo     0.00     0.01     0.00
## 5534                             Activision     0.85     0.43     0.00
## 5535                             Activision     0.05     0.04     0.00
## 5536                     Virgin Interactive     2.05     1.40     0.00
## 5537                             Activision     0.03     0.01     0.00
## 5538                   Take-Two Interactive     0.24     0.01     0.00
## 5539                   Take-Two Interactive     0.05     0.04     0.00
## 5540                   Take-Two Interactive     0.97     0.01     0.00
## 5541                   Take-Two Interactive     0.06     0.05     0.00
## 5542                            Global Star     0.12     0.09     0.00
## 5543                            Global Star     0.09     0.02     0.00
## 5544                               Nintendo     2.18     0.96     2.00
## 5545                               Nintendo     2.62     0.60     1.52
## 5546                          Vivendi Games     0.27     0.21     0.00
## 5547                          Vivendi Games     0.08     0.02     0.00
## 5548                                  Atari     2.17     0.28     0.55
## 5549                                  Atari     0.53     0.14     0.00
## 5550                                  Atari     1.63     0.22     0.51
## 5551                                  Atari     0.21     0.06     0.00
## 5552                                  Atari     0.66     0.02     0.00
## 5553                                  Atari     0.24     0.03     0.00
## 5554                                  Atari     1.15     0.00     0.76
## 5555                                  Atari     0.33     0.37     0.26
## 5556                                  Atari     0.22     0.34     0.18
## 5557                                  Atari     0.24     0.18     0.03
## 5558                     Namco Bandai Games     0.00     0.00     0.18
## 5559                     Namco Bandai Games     0.00     0.00     0.15
## 5560                     Namco Bandai Games     0.27     0.18     0.09
## 5561                     Namco Bandai Games     0.39     0.10     0.01
## 5562                     Namco Bandai Games     0.37     0.19     0.11
## 5563                     Namco Bandai Games     0.36     0.09     0.02
## 5564                     Namco Bandai Games     0.42     0.20     0.11
## 5565                     Namco Bandai Games     0.49     0.09     0.01
## 5566                            Square Enix     0.16     0.13     0.37
## 5567                            Square Enix     0.00     0.00     0.49
## 5568                       Enix Corporation     0.00     0.00     1.56
## 5569                            Square Enix     0.00     0.00     0.79
## 5570                       Enix Corporation     0.00     0.00     2.78
## 5571                       Enix Corporation     0.00     0.00     1.65
## 5572                       Enix Corporation     0.20     0.14     4.10
## 5573                            Square Enix     0.07     0.04     1.30
## 5574                            Square Enix     0.65     0.75     3.61
## 5575                            Square Enix     0.00     0.00     0.86
## 5576                                   Sega     0.00     0.00     0.08
## 5577                                  Epoch     0.00     0.00     0.07
## 5578                       Enix Corporation     0.10     0.00     3.77
## 5579                       Enix Corporation     0.00     0.00     0.81
## 5580                   Nippon Ichi Software     0.25     0.07     0.17
## 5581                   Nippon Ichi Software     0.16     0.05     0.12
## 5582                                 Capcom     0.41     0.46     0.72
## 5583                                 Capcom     0.42     0.24     0.07
## 5584                                 Capcom     0.00     0.00     0.08
## 5585                                 Capcom     0.00     0.00     0.03
## 5586                                Ubisoft     0.04     0.01     0.00
## 5587                                    THQ     0.03     0.01     0.00
## 5588                                    THQ     0.29     0.39     0.00
## 5589                                    THQ     0.45     0.14     0.00
## 5590                            D3Publisher     0.00     0.00     0.07
## 5591                            D3Publisher     0.00     0.00     0.02
## 5592                        SouthPeak Games     0.10     0.03     0.00
## 5593                        SouthPeak Games     0.03     0.00     0.00
## 5594                 Zoo Digital Publishing     0.18     0.00     0.00
## 5595                              Zoo Games     0.05     0.00     0.00
## 5596                                    5pb     0.00     0.00     0.02
## 5597                                    5pb     0.00     0.00     0.02
## 5598                      Rising Star Games     0.05     0.00     0.00
## 5599                      Rising Star Games     0.01     0.00     0.00
## 5600                                  Atlus     0.07     0.03     0.05
## 5601                              Aqua Plus     0.00     0.00     0.08
## 5602                             Tecmo Koei     0.18     0.01     0.30
## 5603                             Tecmo Koei     0.09     0.06     0.11
## 5604                                    THQ     0.53     0.16     1.07
## 5605                                    THQ     0.06     0.02     0.00
## 5606                             Tecmo Koei     0.63     0.21     1.13
## 5607                             Tecmo Koei     0.12     0.03     0.00
## 5608                             Tecmo Koei     0.24     0.18     0.91
## 5609                             Tecmo Koei     0.04     0.01     0.00
## 5610                             Tecmo Koei     0.11     0.09     0.12
## 5611                             Tecmo Koei     0.11     0.01     0.00
## 5612                             Tecmo Koei     0.14     0.03     0.15
## 5613                             Tecmo Koei     0.16     0.02     0.04
## 5614                             Tecmo Koei     0.25     0.14     0.46
## 5615                             Tecmo Koei     0.16     0.07     0.00
## 5616                             Tecmo Koei     0.12     0.11     0.34
## 5617                             Tecmo Koei     0.09     0.05     0.00
## 5618                             Tecmo Koei     0.14     0.01     0.31
## 5619                     Namco Bandai Games     0.15     0.01     0.02
## 5620                             Tecmo Koei     0.11     0.05     0.36
## 5621                             Tecmo Koei     0.11     0.04     0.02
## 5622                             Tecmo Koei     0.00     0.00     0.23
## 5623                     Namco Bandai Games     0.00     0.00     0.13
## 5624                                 Capcom     0.00     0.00     0.07
## 5625                                 Capcom     0.00     0.00     0.05
## 5626                        Electronic Arts     0.69     0.48     0.00
## 5627                        Electronic Arts     0.29     0.01     0.00
## 5628                        Electronic Arts     0.16     0.15     0.01
## 5629                        Electronic Arts     0.23     0.10     0.00
## 5630                        Electronic Arts     0.46     0.40     0.01
## 5631                        Electronic Arts     0.30     0.12     0.00
## 5632                        Electronic Arts     0.28     0.47     0.00
## 5633                        Electronic Arts     0.23     0.14     0.00
## 5634                  Acclaim Entertainment     0.27     0.18     0.00
## 5635                  Acclaim Entertainment     0.18     0.04     0.00
## 5636                                   Sega     0.41     0.32     0.00
## 5637                                   Sega     0.29     0.08     0.00
## 5638           Konami Digital Entertainment     0.03     0.02     0.00
## 5639           Konami Digital Entertainment     0.04     0.01     0.00
## 5640                                   Sega     0.10     0.08     0.00
## 5641                                   Sega     0.10     0.03     0.00
## 5642           Konami Digital Entertainment     0.02     0.00     0.00
## 5643           Konami Digital Entertainment     0.01     0.00     0.00
## 5644                            Global Star     1.26     0.12     0.00
## 5645                            Global Star     0.88     0.04     0.00
## 5646           Konami Digital Entertainment     0.02     0.01     0.00
## 5647           Konami Digital Entertainment     0.01     0.00     0.00
## 5648                                   Sega     0.26     0.21     0.00
## 5649                                   Sega     0.20     0.06     0.00
## 5650                                   Sega     2.15     0.12     0.00
## 5651                                   Sega     1.54     0.02     0.00
## 5652                                   Sega     0.27     0.21     0.00
## 5653                                   Sega     0.27     0.08     0.00
## 5654           Konami Digital Entertainment     0.04     0.03     0.00
## 5655           Konami Digital Entertainment     0.01     0.00     0.00
## 5656                            Global Star     0.43     0.33     0.00
## 5657                            Global Star     0.32     0.09     0.00
## 5658                                   Sega     0.11     0.09     0.00
## 5659                                   Sega     0.08     0.02     0.00
## 5660           Konami Digital Entertainment     0.10     0.08     0.00
## 5661           Konami Digital Entertainment     0.02     0.01     0.00
## 5662           Konami Digital Entertainment     0.18     0.14     0.00
## 5663           Konami Digital Entertainment     0.13     0.05     0.00
## 5664                            D3Publisher     0.04     0.03     0.27
## 5665                            D3Publisher     0.06     0.04     0.05
## 5666                            D3Publisher     0.00     0.00     0.14
## 5667                            Xseed Games     0.04     0.01     0.04
## 5668                            D3Publisher     0.06     0.04     0.08
## 5669                            D3Publisher     0.10     0.05     0.03
## 5670                            D3Publisher     0.09     0.02     0.00
## 5671                            D3Publisher     0.10     0.01     0.00
## 5672                 Ignition Entertainment     0.11     0.07     0.08
## 5673                 Ignition Entertainment     0.07     0.05     0.03
## 5674                 Ignition Entertainment     0.02     0.01     0.00
## 5675                 Ignition Entertainment     0.02     0.00     0.00
## 5676                            Deep Silver     0.01     0.04     0.00
## 5677                             Rondomedia     0.00     0.02     0.00
## 5678                                Ubisoft     0.17     0.01     0.00
## 5679                                Ubisoft     0.16     0.02     0.00
## 5680                                Ubisoft     0.00     0.00     0.04
## 5681                                Ubisoft     0.00     0.00     0.02
## 5682                       City Interactive     0.01     0.05     0.00
## 5683                     Namco Bandai Games     0.02     0.03     0.00
## 5684                     Namco Bandai Games     0.24     0.24     0.01
## 5685                     Namco Bandai Games     0.30     0.19     0.00
## 5686                            Deep Silver     0.03     0.05     0.00
## 5687                            Deep Silver     0.03     0.04     0.00
## 5688                               Astragon     0.05     0.12     0.00
## 5689                  Majesco Entertainment     0.11     0.01     0.00
## 5690                                  Atari     0.19     0.13     0.07
## 5691                                  Atari     0.19     0.04     0.08
## 5692                                  Atlus     0.10     0.00     0.16
## 5693                                  Atlus     0.00     0.00     0.10
## 5694                     Namco Bandai Games     0.00     0.00     0.06
## 5695                     Namco Bandai Games     0.00     0.00     0.03
## 5696                                    THQ     0.19     0.15     0.00
## 5697                                    THQ     0.07     0.02     0.00
## 5698                                    THQ     0.10     0.08     0.00
## 5699                                    THQ     0.06     0.02     0.00
## 5700           Konami Digital Entertainment     0.13     0.10     0.00
## 5701           Konami Digital Entertainment     0.03     0.01     0.00
## 5702                            Aksys Games     0.00     0.00     0.04
## 5703                            Aksys Games     0.00     0.00     0.03
## 5704                                  FuRyu     0.00     0.00     0.03
## 5705                                  FuRyu     0.00     0.00     0.01
## 5706            Sony Computer Entertainment     0.35     0.52     0.04
## 5707            Sony Computer Entertainment     0.02     0.17     0.00
## 5708                          Vivendi Games     0.18     0.27     0.00
## 5709                          Vivendi Games     0.28     0.03     0.00
## 5710                        Electronic Arts     0.07     0.06     0.00
## 5711                        Electronic Arts     0.05     0.01     0.00
## 5712                            Codemasters     0.15     0.63     0.00
## 5713                            Codemasters     0.08     0.29     0.00
## 5714                            Codemasters     0.01     0.45     0.03
## 5715                            Codemasters     0.01     0.28     0.00
## 5716                        Electronic Arts     0.17     0.34     0.02
## 5717                        Electronic Arts     0.11     0.00     0.00
## 5718                             Tecmo Koei     0.00     0.00     0.08
## 5719                             Tecmo Koei     0.00     0.00     0.03
## 5720                 Microsoft Game Studios     1.99     0.58     0.00
## 5721                 Microsoft Game Studios     0.25     0.19     0.01
## 5722                 Microsoft Game Studios     3.59     1.11     0.05
## 5723                 Microsoft Game Studios     0.09     0.17     0.00
## 5724                        Electronic Arts     0.15     0.02     0.00
## 5725                        Electronic Arts     0.13     0.03     0.00
## 5726                 Playlogic Game Factory     0.11     0.04     0.00
## 5727                 Playlogic Game Factory     0.14     0.02     0.00
## 5728                     Avalon Interactive     0.03     0.03     0.00
## 5729                     Avalon Interactive     0.04     0.01     0.00
## 5730                                Ubisoft     0.59     0.00     0.00
## 5731                                Ubisoft     0.25     0.00     0.00
## 5732                                Ubisoft     0.19     0.00     0.00
## 5733                                Ubisoft     0.10     0.00     0.00
## 5734                              Mindscape     0.00     0.12     0.00
## 5735                              Mindscape     0.00     0.04     0.00
## 5736                             Activision     0.12     0.12     0.00
## 5737                             Activision     0.14     0.09     0.00
## 5738             Disney Interactive Studios     0.11     0.03     0.00
## 5739             Disney Interactive Studios     0.05     0.01     0.00
## 5740                            Hudson Soft     0.00     0.00     0.17
## 5741                            Hudson Soft     0.00     0.00     0.01
## 5742                   Alawar Entertainment     0.00     0.03     0.00
## 5743                                Unknown     0.00     0.02     0.00
## 5744                             Activision     0.00     0.04     0.00
## 5745                             Activision     0.00     0.03     0.00
## 5746                                Nobilis     0.13     0.00     0.00
## 5747                                Nobilis     0.06     0.00     0.00
## 5748                                Wanadoo     0.07     0.06     0.00
## 5749                             Tecmo Koei     0.04     0.01     0.00
## 5750                        Kadokawa Shoten     0.00     0.00     0.17
## 5751                        Kadokawa Shoten     0.00     0.00     0.06
## 5752               System 3 Arcade Software     0.06     0.05     0.00
## 5753               System 3 Arcade Software     0.00     0.03     0.00
## 5754                          Vivendi Games     0.09     0.07     0.00
## 5755                          Vivendi Games     0.08     0.02     0.00
## 5756                        Electronic Arts     1.08     0.20     0.00
## 5757                        Electronic Arts     0.51     0.15     0.00
## 5758                        Electronic Arts     0.45     0.51     0.00
## 5759                        Electronic Arts     0.40     0.33     0.00
## 5760                        Electronic Arts     0.92     0.41     0.00
## 5761                        Electronic Arts     0.95     0.34     0.00
## 5762                             SquareSoft     0.32     0.00     0.52
## 5763                             SquareSoft     0.00     0.00     0.51
## 5764                            Square Enix     0.12     0.06     0.27
## 5765                            Square Enix     0.13     0.06     0.05
## 5766                            Square Enix     0.54     0.05     0.62
## 5767                             SquareSoft     0.00     0.00     0.29
## 5768                             SquareSoft     0.00     0.00     2.43
## 5769                             SquareSoft     0.00     0.00     0.16
## 5770                            Square Enix     0.43     0.40     0.32
## 5771                            Square Enix     0.21     0.31     0.28
## 5772                            Square Enix     0.17     0.01     0.00
## 5773                                Unknown     0.08     0.06     0.15
## 5774                            Square Enix     0.13     0.00     0.01
## 5775                            Square Enix     0.03     0.03     0.01
## 5776                            Square Enix     0.35     0.27     0.09
## 5777                            Square Enix     0.25     0.00     0.02
## 5778                            Square Enix     1.74     1.24     1.87
## 5779                            Square Enix     1.27     0.68     0.01
## 5780                            Square Enix     0.78     0.75     0.89
## 5781                            Square Enix     0.36     0.30     0.02
## 5782                                 Capcom     0.03     0.02     0.00
## 5783                                 Capcom     0.01     0.00     0.00
## 5784                         Ubisoft Annecy     0.06     0.03     0.55
## 5785                         Ubisoft Annecy     0.07     0.02     0.06
## 5786                                Ubisoft     0.12     0.00     0.00
## 5787                                Ubisoft     0.11     0.00     0.00
## 5788                     Empire Interactive     0.19     0.15     0.00
## 5789                     Empire Interactive     0.12     0.04     0.00
## 5790                     Empire Interactive     0.08     0.06     0.00
## 5791                     Empire Interactive     0.03     0.01     0.00
## 5792                     Empire Interactive     0.07     0.03     0.00
## 5793                     Empire Interactive     0.00     0.01     0.00
## 5794                            D3Publisher     0.12     0.03     0.00
## 5795                            D3Publisher     0.09     0.00     0.00
## 5796                                   Sega     0.02     1.16     0.00
## 5797                                   Sega     0.00     0.10     0.00
## 5798                                   Sega     0.00     0.60     0.00
## 5799                                   Sega     0.00     0.10     0.00
## 5800                   Take-Two Interactive     0.14     0.11     0.00
## 5801                   Take-Two Interactive     0.07     0.02     0.00
## 5802                     Empire Interactive     0.49     0.38     0.00
## 5803                     Empire Interactive     0.11     0.03     0.00
## 5804                            Global Star     0.11     0.09     0.00
## 5805                            Global Star     0.06     0.02     0.00
## 5806                                  Atari     0.10     0.08     0.00
## 5807                                  Atari     0.06     0.02     0.00
## 5808                 Microsoft Game Studios     0.50     0.78     0.01
## 5809                 Microsoft Game Studios     0.35     0.43     0.00
## 5810                              LucasArts     0.15     0.14     0.00
## 5811                              LucasArts     0.11     0.04     0.00
## 5812                     Hasbro Interactive     3.79     0.27     0.00
## 5813                           Parker Bros.     2.06     0.12     0.00
## 5814           Konami Digital Entertainment     0.10     0.03     0.00
## 5815           Konami Digital Entertainment     0.06     0.02     0.00
## 5816           Konami Digital Entertainment     0.16     0.12     0.00
## 5817           Konami Digital Entertainment     0.12     0.03     0.00
## 5818           Konami Digital Entertainment     0.10     0.00     0.00
## 5819           Konami Digital Entertainment     0.06     0.00     0.00
## 5820                     Namco Bandai Games     0.00     0.00     0.32
## 5821                     Namco Bandai Games     0.00     0.00     0.20
## 5822                             SquareSoft     0.00     0.00     0.60
## 5823                            Square Enix     0.01     0.00     0.03
## 5824                                    THQ     0.34     0.15     0.01
## 5825                                    THQ     0.00     0.02     0.00
## 5826             Disney Interactive Studios     0.28     0.35     0.00
## 5827             Disney Interactive Studios     0.27     0.26     0.00
## 5828                                   Sega     0.14     0.02     0.00
## 5829                                   Sega     0.00     0.01     0.00
## 5830                                    THQ     0.54     0.16     0.00
## 5831                                    THQ     0.15     0.11     0.00
## 5832                                    THQ     0.03     0.02     0.00
## 5833                                    THQ     0.03     0.01     0.00
## 5834                        Electronic Arts     0.08     0.04     0.00
## 5835                        Electronic Arts     0.06     0.04     0.00
## 5836                                    SCi     0.04     0.03     0.00
## 5837                                    SCi     0.03     0.01     0.00
## 5838                           Midway Games     0.43     0.10     0.00
## 5839                           Midway Games     0.26     0.18     0.00
## 5840                           Midway Games     0.20     0.15     0.00
## 5841                           Midway Games     0.14     0.04     0.00
## 5842                 Microsoft Game Studios     3.54     1.90     0.07
## 5843                 Microsoft Game Studios     0.00     0.01     0.00
## 5844                    Crave Entertainment     0.05     0.00     0.00
## 5845                    Crave Entertainment     0.04     0.00     0.00
## 5846                          Vivendi Games     0.13     0.00     0.00
## 5847                          Vivendi Games     0.11     0.00     0.00
## 5848                 Ignition Entertainment     0.05     0.00     0.00
## 5849                 Ignition Entertainment     0.02     0.00     0.00
## 5850                               7G//AMES     0.00     0.02     0.00
## 5851                               7G//AMES     0.00     0.01     0.00
## 5852                                O-Games     0.06     0.04     0.00
## 5853                                O-Games     0.03     0.01     0.00
## 5854                      Eidos Interactive     0.30     0.20     0.00
## 5855                    Crave Entertainment     0.17     0.04     0.00
## 5856                     Namco Bandai Games     0.08     0.06     0.00
## 5857                                  Atari     0.06     0.00     0.00
## 5858                             Activision     0.02     0.00     0.00
## 5859                             Activision     0.02     0.00     0.00
## 5860                  Acclaim Entertainment     0.06     0.05     0.00
## 5861                  Acclaim Entertainment     0.04     0.01     0.00
## 5862                     Hasbro Interactive     0.72     0.17     0.00
## 5863                                  Atari     0.09     0.06     0.00
## 5864                   Take-Two Interactive     0.53     0.02     0.00
## 5865                   Take-Two Interactive     0.44     0.01     0.00
## 5866                     Namco Bandai Games     0.00     0.00     0.45
## 5867                     Namco Bandai Games     0.00     0.00     0.24
## 5868                     Namco Bandai Games     0.00     0.01     0.37
## 5869                     Namco Bandai Games     0.00     0.01     0.09
## 5870                     Namco Bandai Games     0.00     0.00     0.19
## 5871                     Namco Bandai Games     0.00     0.00     0.08
## 5872            Sony Computer Entertainment     1.70     0.46     0.06
## 5873            Sony Computer Entertainment     0.14     0.10     0.01
## 5874            Sony Computer Entertainment     2.74     1.36     0.12
## 5875            Sony Computer Entertainment     0.23     0.29     0.01
## 5876                                  Atari     0.55     0.14     0.00
## 5877                                Unknown     0.09     0.03     0.00
## 5878                                  Atari     0.23     0.18     0.00
## 5879                                  Atari     0.10     0.03     0.00
## 5880                                   Sega     0.19     0.11     0.00
## 5881                                   Sega     0.13     0.14     0.00
## 5882                             Activision     0.85     0.71     0.13
## 5883                             Activision     0.11     0.03     0.00
## 5884                             Activision     0.33     0.35     0.00
## 5885                             Activision     0.25     0.21     0.00
## 5886                               Nintendo     1.22     0.28     2.46
## 5887                               Nintendo     0.83     0.33     0.92
## 5888           Konami Digital Entertainment     0.05     0.00     0.00
## 5889           Konami Digital Entertainment     0.04     0.00     0.00
## 5890                     Namco Bandai Games     0.00     0.00     0.12
## 5891                     Namco Bandai Games     0.00     0.00     0.03
## 5892                          Kalypso Media     0.00     0.05     0.01
## 5893                          Kalypso Media     0.00     0.04     0.00
## 5894                   Nippon Ichi Software     0.01     0.02     0.04
## 5895                   Nippon Ichi Software     0.02     0.00     0.03
## 5896                        Electronic Arts     0.09     0.11     0.00
## 5897                        Electronic Arts     0.10     0.07     0.00
## 5898                   Take-Two Interactive     0.79     1.35     0.04
## 5899                   Take-Two Interactive     0.17     0.06     0.00
## 5900                   Take-Two Interactive     6.99     4.51     0.30
## 5901                   Take-Two Interactive     0.00     0.01     0.00
## 5902                   Take-Two Interactive     0.59     0.57     0.05
## 5903                   Take-Two Interactive     0.28     0.50     0.03
## 5904                   Take-Two Interactive     2.90     2.83     0.24
## 5905                   Take-Two Interactive     1.56     1.40     0.07
## 5906                   Take-Two Interactive     8.41     5.49     0.47
## 5907                   Take-Two Interactive     0.00     0.03     0.00
## 5908                   Take-Two Interactive     1.70     2.02     0.16
## 5909                   Take-Two Interactive     0.78     0.03     0.03
## 5910                                    ESP     0.00     0.00     0.42
## 5911                                Ubisoft     0.14     0.09     0.00
## 5912                                Ubisoft     0.14     0.11     0.00
## 5913                                Ubisoft     0.00     0.00     0.20
## 5914                      DTP Entertainment     0.02     0.05     0.00
## 5915                      DTP Entertainment     0.00     0.04     0.00
## 5916                              505 Games     0.27     0.25     0.00
## 5917                              505 Games     0.10     0.00     0.00
## 5918                              505 Games     0.11     0.03     0.00
## 5919                              505 Games     0.05     0.02     0.00
## 5920            Sony Computer Entertainment     0.13     0.00     0.00
## 5921            Sony Computer Entertainment     0.07     0.05     0.00
## 5922                                 Encore     0.01     0.00     0.00
## 5923                                 Encore     0.01     0.00     0.00
## 5924                                Unknown     0.00     0.00     0.04
## 5925                              505 Games     0.03     0.00     0.00
## 5926                                  PQube     0.02     0.00     0.05
## 5927                                  PQube     0.01     0.02     0.02
## 5928                       Arc System Works     0.09     0.00     0.07
## 5929                       Arc System Works     0.10     0.00     0.04
## 5930 Warner Bros. Interactive Entertainment     0.46     0.47     0.00
## 5931 Warner Bros. Interactive Entertainment     0.47     0.01     0.00
## 5932                              RedOctane     3.81     0.63     0.00
## 5933                             Activision     2.01     0.02     0.00
## 5934                       Storm City Games     0.04     0.00     0.00
## 5935                                Unknown     0.04     0.00     0.00
## 5936                     Namco Bandai Games     0.00     0.00     0.26
## 5937                     Namco Bandai Games     0.00     0.00     0.09
## 5938                     Namco Bandai Games     0.00     0.00     0.15
## 5939                     Namco Bandai Games     0.00     0.00     0.14
## 5940                     Namco Bandai Games     0.00     0.00     0.12
## 5941                     Namco Bandai Games     0.00     0.00     0.09
## 5942                               Gamecock     0.05     0.00     0.00
## 5943                               Gamecock     0.05     0.00     0.00
## 5944                          Vivendi Games     4.03     0.00     0.09
## 5945                          Vivendi Games     0.29     0.23     0.00
## 5946                          Vivendi Games     2.28     0.02     0.08
## 5947                        Electronic Arts     0.37     0.21     0.00
## 5948                 Microsoft Game Studios     6.82     1.53     0.05
## 5949                 Microsoft Game Studios     0.01     0.06     0.00
## 5950                 Microsoft Game Studios     4.98     1.30     0.08
## 5951                 Microsoft Game Studios     0.01     0.02     0.00
## 5952             Disney Interactive Studios     0.87     0.38     0.00
## 5953             Disney Interactive Studios     0.12     0.02     0.00
## 5954                       Black Bean Games     0.03     0.03     0.00
## 5955                       Black Bean Games     0.03     0.00     0.00
## 5956                             Tecmo Koei     0.00     0.00     0.03
## 5957                             Tecmo Koei     0.00     0.00     0.02
## 5958                      Rising Star Games     0.25     0.04     0.00
## 5959                                Ubisoft     0.19     0.05     0.00
## 5960                                Natsume     0.27     0.06     0.22
## 5961                                Unknown     0.28     0.00     0.00
## 5962                        Electronic Arts     0.11     0.00     0.00
## 5963                        Electronic Arts     0.06     0.00     0.00
## 5964                                   Sega     0.13     0.06     0.16
## 5965                                   Sega     0.09     0.04     0.10
## 5966                                   Sega     0.01     0.00     0.10
## 5967                                   Sega     0.01     0.00     0.02
## 5968                                   Sega     0.08     0.00     0.19
## 5969                                   Sega     0.00     0.00     0.23
## 5970                                   Sega     0.02     0.01     0.00
## 5971                                   Sega     0.02     0.00     0.00
## 5972                              Prototype     0.00     0.00     0.01
## 5973                              Prototype     0.00     0.00     0.01
## 5974                            Codemasters     0.08     0.00     0.00
## 5975                            Codemasters     0.04     0.00     0.00
## 5976                                Ubisoft     0.34     0.01     0.00
## 5977                                Ubisoft     0.30     0.00     0.00
## 5978                     Empire Interactive     0.06     0.02     0.00
## 5979                     Empire Interactive     0.00     0.03     0.00
## 5980                                Ubisoft     0.12     0.02     0.00
## 5981                                Ubisoft     0.10     0.03     0.00
## 5982                                    GSP     0.12     0.33     0.00
## 5983                                    GSP     0.12     0.07     0.00
## 5984                                    3DO     0.18     0.14     0.00
## 5985                                    3DO     0.06     0.02     0.00
## 5986                   Mud Duck Productions     0.20     0.16     0.00
## 5987                   Mud Duck Productions     0.10     0.03     0.00
## 5988             Disney Interactive Studios     0.47     0.08     0.00
## 5989             Disney Interactive Studios     1.16     0.45     0.00
## 5990                            Kaga Create     0.00     0.00     0.03
## 5991                            Kaga Create     0.00     0.00     0.01
## 5992                             Activision     0.07     0.06     0.00
## 5993                             Activision     0.12     0.00     0.00
## 5994                            Square Enix     0.00     0.04     0.00
## 5995                            Square Enix     0.00     0.01     0.00
## 5996                      Eidos Interactive     0.39     0.31     0.00
## 5997                      Eidos Interactive     0.26     0.07     0.00
## 5998                            Square Enix     0.07     0.10     0.00
## 5999                            Square Enix     0.07     0.09     0.00
## 6000                       Storm City Games     0.04     0.00     0.00
## 6001                       Storm City Games     0.01     0.00     0.00
## 6002                        SouthPeak Games     0.01     0.15     0.00
## 6003                        SouthPeak Games     0.00     0.02     0.00
## 6004                            Deep Silver     0.13     0.01     0.00
## 6005                            Deep Silver     0.08     0.01     0.00
## 6006            Sony Computer Entertainment     0.19     0.11     0.25
## 6007            Sony Computer Entertainment     0.00     0.00     0.28
## 6008                        Electronic Arts     0.59     0.40     0.00
## 6009                        Electronic Arts     0.25     0.06     0.00
## 6010                                    THQ     0.21     0.16     0.00
## 6011                                    THQ     0.13     0.03     0.00
## 6012                             Activision     0.17     0.00     0.00
## 6013                             Activision     0.13     0.02     0.00
## 6014                                    THQ     0.18     0.08     0.00
## 6015                                    THQ     0.15     0.04     0.00
## 6016                              505 Games     0.22     0.00     0.00
## 6017                              505 Games     0.04     0.00     0.00
## 6018                            Global Star     0.02     0.02     0.00
## 6019                            Global Star     0.01     0.00     0.00
## 6020                              Interplay     0.28     0.08     0.00
## 6021                     Virgin Interactive     0.08     0.02     0.00
## 6022                           Midway Games     0.26     0.17     0.00
## 6023                           Midway Games     0.13     0.03     0.00
## 6024                             Tecmo Koei     0.22     0.11     0.07
## 6025                          Compile Heart     0.09     0.00     0.07
## 6026                          Compile Heart     0.05     0.03     0.06
## 6027                          Compile Heart     0.00     0.00     0.07
## 6028                          Compile Heart     0.00     0.00     0.04
## 6029                   Nippon Ichi Software     0.00     0.01     0.00
## 6030                               Nintendo     0.61     0.42     0.13
## 6031                               Nintendo     0.16     0.12     0.11
## 6032                     Oxygen Interactive     0.10     0.00     0.00
## 6033                     Oxygen Interactive     0.05     0.00     0.00
## 6034                     Namco Bandai Games     0.00     0.00     0.08
## 6035                     Namco Bandai Games     0.00     0.00     0.06
## 6036                              Mindscape     0.00     0.16     0.00
## 6037                              Mindscape     0.00     0.04     0.00
## 6038            Sony Computer Entertainment     0.23     0.18     0.00
## 6039            Sony Computer Entertainment     0.00     0.00     0.06
## 6040                     Bethesda Softworks     0.04     0.03     0.00
## 6041                     Bethesda Softworks     0.01     0.00     0.00
## 6042                     Bethesda Softworks     0.09     0.07     0.00
## 6043                     Bethesda Softworks     0.04     0.01     0.00
## 6044                               Nintendo     1.27     0.32     0.78
## 6045                             Activision     0.46     0.03     0.00
## 6046             CDV Software Entertainment     0.09     0.00     0.00
## 6047                     Legacy Interactive     0.04     0.00     0.00
## 6048                                Ubisoft     1.32     1.19     0.00
## 6049                                Ubisoft     0.10     0.02     0.00
## 6050               System 3 Arcade Software     0.12     0.00     0.00
## 6051               System 3 Arcade Software     0.00     0.04     0.00
## 6052                                Level 5     0.00     0.00     0.93
## 6053                               Nintendo     0.00     0.08     0.00
## 6054                              Destineer     0.12     0.00     0.00
## 6055                              Destineer     0.08     0.00     0.00
## 6056                            Codemasters     0.06     0.05     0.00
## 6057                            Codemasters     0.04     0.01     0.00
## 6058                                    5pb     0.00     0.00     0.03
## 6059                                    5pb     0.00     0.00     0.03
## 6060                            Codemasters     0.00     0.15     0.00
## 6061                            Codemasters     0.00     0.12     0.00
## 6062                              Destineer     0.18     0.00     0.00
## 6063                              Destineer     0.16     0.00     0.00
## 6064                      Rising Star Games     0.04     0.02     0.00
## 6065                      Rising Star Games     0.04     0.00     0.00
## 6066                     Empire Interactive     0.14     0.11     0.00
## 6067                     Empire Interactive     0.09     0.08     0.00
## 6068            Sony Computer Entertainment     0.18     0.27     0.00
## 6069            Sony Computer Entertainment     0.22     0.17     0.00
## 6070                                   Sega     0.07     0.01     0.00
## 6071                                   Sega     0.01     0.00     0.00
## 6072                  Universal Interactive     0.08     0.07     0.00
## 6073                          Vivendi Games     0.05     0.02     0.00
## 6074                                    THQ     0.50     0.02     0.00
## 6075                                    THQ     0.11     0.03     0.00
## 6076                  Majesco Entertainment     0.11     0.00     0.00
## 6077                  Majesco Entertainment     0.09     0.00     0.00
## 6078                                  Atari     0.09     0.00     0.00
## 6079                                  Atari     0.05     0.00     0.00
## 6080                  Acclaim Entertainment     0.40     0.27     0.00
## 6081                  Acclaim Entertainment     0.23     0.06     0.00
## 6082                  Acclaim Entertainment     0.11     0.09     0.00
## 6083                  Acclaim Entertainment     0.09     0.02     0.00
## 6084                      Rising Star Games     0.00     0.04     0.00
## 6085                      Rising Star Games     0.00     0.02     0.00
## 6086                               Astragon     0.01     0.02     0.00
## 6087                            Licensed 4U     0.00     0.02     0.00
## 6088           Konami Digital Entertainment     0.00     0.00     0.22
## 6089           Konami Digital Entertainment     0.00     0.00     0.04
## 6090           Konami Digital Entertainment     0.00     0.00     0.08
## 6091           Konami Digital Entertainment     0.00     0.00     0.04
## 6092           Konami Digital Entertainment     0.00     0.00     0.51
## 6093           Konami Digital Entertainment     0.00     0.00     0.10
## 6094           Konami Digital Entertainment     0.00     0.00     0.42
## 6095           Konami Digital Entertainment     0.00     0.00     0.09
## 6096           Konami Digital Entertainment     0.00     0.00     0.45
## 6097           Konami Digital Entertainment     0.00     0.00     0.08
## 6098           Konami Digital Entertainment     0.00     0.00     0.11
## 6099           Konami Digital Entertainment     0.00     0.00     0.02
## 6100           Konami Digital Entertainment     0.00     0.00     0.24
## 6101           Konami Digital Entertainment     0.00     0.00     0.08
## 6102           Konami Digital Entertainment     0.00     0.00     0.27
## 6103           Konami Digital Entertainment     0.00     0.00     0.20
## 6104           Konami Digital Entertainment     0.00     0.00     0.26
## 6105           Konami Digital Entertainment     0.00     0.00     0.20
## 6106           Konami Digital Entertainment     0.00     0.00     0.13
## 6107           Konami Digital Entertainment     0.00     0.00     0.07
## 6108           Konami Digital Entertainment     0.00     0.00     0.17
## 6109           Konami Digital Entertainment     0.00     0.00     0.12
## 6110           Konami Digital Entertainment     0.00     0.00     0.44
## 6111           Konami Digital Entertainment     0.00     0.00     0.11
## 6112                  Majesco Entertainment     0.52     0.01     0.00
## 6113                  Majesco Entertainment     0.07     0.00     0.00
## 6114                     Namco Bandai Games     0.05     0.02     0.50
## 6115                   Take-Two Interactive     0.06     0.00     0.00
## 6116                     Namco Bandai Games     0.00     0.00     0.03
## 6117                     Namco Bandai Games     0.00     0.00     0.03
## 6118                                O-Games     0.09     0.02     0.00
## 6119                                O-Games     0.01     0.00     0.00
## 6120                     BAM! Entertainment     0.01     0.01     0.00
## 6121                          Vivendi Games     0.01     0.00     0.00
## 6122                                    THQ     0.26     0.20     0.00
## 6123                                    THQ     0.13     0.04     0.00
## 6124                                Ubisoft     0.13     0.02     0.00
## 6125                                Ubisoft     0.01     0.10     0.00
## 6126                      Eidos Interactive     0.20     0.01     0.00
## 6127                      Eidos Interactive     0.08     0.00     0.00
## 6128                     Namco Bandai Games     0.00     0.00     0.10
## 6129                     Namco Bandai Games     0.00     0.00     0.02
## 6130                            D3Publisher     0.06     0.00     0.00
## 6131                            D3Publisher     0.05     0.00     0.00
## 6132                      Eidos Interactive     0.36     0.31     0.01
## 6133                      Eidos Interactive     0.29     0.32     0.01
## 6134                     JoWood Productions     0.01     0.00     0.00
## 6135                     JoWood Productions     0.01     0.01     0.00
## 6136           Konami Digital Entertainment     0.24     0.04     0.00
## 6137           Konami Digital Entertainment     0.13     0.00     0.00
## 6138                  Marvelous Interactive     0.00     0.00     0.02
## 6139                  Marvelous Interactive     0.00     0.00     0.01
## 6140                                Acquire     0.00     0.00     0.13
## 6141                                Acquire     0.00     0.00     0.07
## 6142                     Namco Bandai Games     0.00     0.00     0.07
## 6143                     Namco Bandai Games     0.00     0.00     0.07
## 6144                            Deep Silver     0.12     0.04     0.05
## 6145                            Deep Silver     0.08     0.02     0.01
## 6146                                 Capcom     0.12     0.03     0.00
## 6147                                 Capcom     0.04     0.03     0.00
## 6148            Sony Computer Entertainment     3.64     1.20     1.49
## 6149                            Square Enix     0.90     0.37     0.25
## 6150                            Square Enix     2.20     0.58     1.38
## 6151                            Square Enix     0.52     0.43     0.18
## 6152                     Namco Bandai Games     0.04     0.03     0.00
## 6153                     Namco Bandai Games     0.05     0.03     0.00
## 6154                                  Sting     0.06     0.00     0.02
## 6155                                  Atlus     0.06     0.00     0.02
## 6156                        Electronic Arts     1.02     0.34     0.00
## 6157                        Electronic Arts     0.63     0.27     0.00
## 6158                        Electronic Arts     0.28     0.21     0.00
## 6159                        Electronic Arts     0.23     0.15     0.00
## 6160                        Electronic Arts     0.45     0.35     0.00
## 6161                        Electronic Arts     0.20     0.06     0.00
## 6162                             Activision     0.07     0.00     0.00
## 6163                             Activision     0.02     0.00     0.00
## 6164                     Namco Bandai Games     0.00     0.00     0.11
## 6165                     Namco Bandai Games     0.00     0.00     0.10
## 6166                               ChunSoft     0.00     0.00     0.03
## 6167                               ChunSoft     0.00     0.00     0.03
## 6168                   Take-Two Interactive     1.27     1.33     0.12
## 6169                   Take-Two Interactive     1.52     0.94     0.02
## 6170                           Midway Games     0.23     0.18     0.00
## 6171                           Midway Games     0.11     0.03     0.00
## 6172                               Nintendo     0.51     0.75     0.07
## 6173                               Nintendo     0.47     0.40     0.13
## 6174 Warner Bros. Interactive Entertainment     0.03     0.16     0.00
## 6175 Warner Bros. Interactive Entertainment     0.05     0.10     0.04
## 6176                             LEGO Media     0.51     0.18     0.00
## 6177                             LEGO Media     0.20     0.14     0.00
## 6178                        Electronic Arts     0.04     0.03     0.00
## 6179                        Electronic Arts     0.06     0.02     0.00
## 6180                            Square Enix     0.00     0.07     0.00
## 6181                            Square Enix     0.00     0.02     0.00
## 6182                            D3Publisher     0.00     0.00     0.03
## 6183                            D3Publisher     0.00     0.00     0.01
## 6184                        Electronic Arts     2.66     0.50     0.05
## 6185                        Electronic Arts     0.00     0.02     0.00
## 6186                        Electronic Arts     2.67     0.89     0.05
## 6187                         Valve Software     0.00     0.32     0.00
## 6188                           Nordic Games     0.00     0.02     0.00
## 6189                           Nordic Games     0.00     0.01     0.00
## 6190                           Game Factory     0.06     0.00     0.00
## 6191                           Game Factory     0.03     0.00     0.00
## 6192                                    THQ     0.30     0.17     0.00
## 6193                                    THQ     0.20     0.16     0.00
## 6194                            Codemasters     0.14     0.01     0.00
## 6195                            Codemasters     0.06     0.03     0.00
## 6196                          Vivendi Games     0.17     0.13     0.00
## 6197                          Vivendi Games     0.12     0.04     0.00
## 6198                            Deep Silver     0.13     0.00     0.00
## 6199                            Deep Silver     0.02     0.00     0.00
## 6200                            Deep Silver     0.11     0.00     0.00
## 6201                            Deep Silver     0.02     0.00     0.00
## 6202                            Square Enix     0.31     0.22     0.45
## 6203                            Square Enix     0.15     0.10     0.01
## 6204                            Deep Silver     0.07     0.00     0.00
## 6205                            Deep Silver     0.02     0.00     0.00
## 6206                             Activision     0.09     0.00     0.00
## 6207                             Activision     0.06     0.00     0.00
## 6208                             Activision     0.15     0.00     0.00
## 6209                             Activision     0.13     0.00     0.00
## 6210                             Activision     0.09     0.00     0.00
## 6211                             Activision     0.07     0.00     0.00
## 6212                             Activision     0.08     0.00     0.00
## 6213                             Activision     0.08     0.00     0.00
## 6214            Sony Computer Entertainment     2.80     2.05     0.17
## 6215            Sony Computer Entertainment     0.64     1.24     0.01
## 6216            Sony Computer Entertainment     0.64     0.92     0.01
## 6217            Sony Computer Entertainment     0.20     0.43     0.01
## 6218                        Electronic Arts     0.34     0.04     0.00
## 6219                        Electronic Arts     0.00     0.02     0.00
## 6220                            Hudson Soft     0.00     0.00     1.10
## 6221                   Hudson Entertainment     0.00     0.00     0.02
## 6222 Warner Bros. Interactive Entertainment     0.26     0.21     0.11
## 6223 Warner Bros. Interactive Entertainment     0.31     0.13     0.02
## 6224                                   Sega     0.06     0.50     0.00
## 6225                                   Sega     0.07     0.46     0.00
## 6226                            Square Enix     0.00     0.00     0.10
## 6227                            Square Enix     0.00     0.00     0.10
## 6228                   Nippon Ichi Software     0.07     0.03     0.02
## 6229                   Nippon Ichi Software     0.05     0.01     0.00
## 6230                     Namco Bandai Games     0.00     0.00     0.09
## 6231                     Namco Bandai Games     0.00     0.00     0.07
## 6232                                 Capcom     1.09     0.04     0.10
## 6233                                 Capcom     0.31     0.17     0.07
## 6234           Konami Digital Entertainment     0.10     0.00     0.00
## 6235           Konami Digital Entertainment     0.05     0.00     0.00
## 6236                        Kadokawa Shoten     0.27     0.18     0.06
## 6237                        Kadokawa Shoten     0.00     0.00     0.21
## 6238                                 Funsta     0.01     0.03     0.00
## 6239                                 Funsta     0.00     0.01     0.00
## 6240                 Zoo Digital Publishing     0.22     0.00     0.00
## 6241                 Zoo Digital Publishing     0.11     0.00     0.00
## 6242            Sony Computer Entertainment     0.78     0.03     0.00
## 6243            Sony Computer Entertainment     0.32     0.00     0.00
## 6244            Sony Computer Entertainment     0.86     0.00     0.00
## 6245            Sony Computer Entertainment     0.18     0.00     0.00
## 6246            Sony Computer Entertainment     0.66     0.00     0.00
## 6247            Sony Computer Entertainment     0.11     0.00     0.00
## 6248            Sony Computer Entertainment     0.68     0.00     0.00
## 6249            Sony Computer Entertainment     0.13     0.00     0.00
## 6250                   Take-Two Interactive     0.07     0.00     0.00
## 6251                   Take-Two Interactive     0.06     0.00     0.00
## 6252           Konami Digital Entertainment     0.23     0.00     0.04
## 6253           Konami Digital Entertainment     0.00     0.00     0.11
## 6254                           Midway Games     0.15     0.04     0.00
## 6255                           Midway Games     0.11     0.03     0.00
## 6256                           Midway Games     0.13     0.10     0.00
## 6257                           Midway Games     0.04     0.01     0.00
## 6258                           Midway Games     0.14     0.11     0.00
## 6259                           Midway Games     0.07     0.02     0.00
## 6260                           Gotham Games     0.37     0.29     0.00
## 6261                           Gotham Games     0.16     0.05     0.00
## 6262                            Codemasters     0.07     0.05     0.00
## 6263                            Codemasters     0.06     0.02     0.00
## 6264                        Electronic Arts     0.62     0.02     0.00
## 6265                        Electronic Arts     0.25     0.07     0.00
## 6266                        Electronic Arts     0.51     0.40     0.00
## 6267                        Electronic Arts     0.15     0.04     0.00
## 6268                                    THQ     0.94     0.73     0.00
## 6269                                    THQ     0.34     0.08     0.00
## 6270                                Play It     0.08     0.07     0.00
## 6271                    Crave Entertainment     0.03     0.01     0.00
## 6272                           Nordic Games     0.03     0.05     0.00
## 6273                           Nordic Games     0.02     0.01     0.00
## 6274                           Nordic Games     0.00     0.05     0.00
## 6275                           Nordic Games     0.02     0.00     0.00
## 6276                                    THQ     0.86     0.03     0.00
## 6277                                    THQ     0.32     0.07     0.00
## 6278                                    THQ     0.37     0.14     0.00
## 6279                                    THQ     0.24     0.15     0.00
## 6280                        Electronic Arts     0.09     0.07     0.00
## 6281                        Electronic Arts     0.08     0.02     0.00
## 6282 Warner Bros. Interactive Entertainment     0.32     0.58     0.04
## 6283 Warner Bros. Interactive Entertainment     0.26     0.16     0.00
## 6284                        Electronic Arts     1.68     0.04     0.00
## 6285                        Electronic Arts     0.58     0.02     0.00
## 6286                        Electronic Arts     1.66     0.04     0.00
## 6287                        Electronic Arts     0.84     0.05     0.00
## 6288                                Unknown     0.03     0.00     0.00
## 6289                    Paradox Interactive     0.01     0.00     0.00
## 6290                     Namco Bandai Games     0.09     0.14     0.01
## 6291                     Namco Bandai Games     0.14     0.03     0.00
## 6292                   Take-Two Interactive     0.44     0.00     0.00
## 6293                   Take-Two Interactive     0.14     0.00     0.00
## 6294                   Take-Two Interactive     0.72     0.56     0.00
## 6295                   Take-Two Interactive     0.52     0.02     0.00
## 6296                     Namco Bandai Games     0.00     0.00     0.15
## 6297                     Namco Bandai Games     0.00     0.00     0.12
## 6298                          Evolved Games     0.01     0.01     0.00
## 6299                          Evolved Games     0.01     0.00     0.00
## 6300                   Take-Two Interactive     0.63     0.49     0.00
## 6301                   Take-Two Interactive     0.14     0.04     0.00
## 6302                 Zoo Digital Publishing     0.12     0.00     0.00
## 6303                              Zoo Games     0.07     0.00     0.00
## 6304                                   Sega     1.14     1.91     0.27
## 6305                                   Sega     0.18     0.64     0.27
## 6306                                   Sega     2.58     3.90     0.66
## 6307                                   Sega     1.64     2.48     0.44
## 6308                                   Sega     1.89     1.99     0.22
## 6309                                   Sega     1.22     1.66     0.27
## 6310                               Nintendo     0.04     0.16     0.24
## 6311                               Nintendo     0.03     0.11     0.10
## 6312                               Nintendo     0.51     0.12     1.63
## 6313                                  Atari     1.48     0.09     0.00
## 6314                               Nintendo     0.62     0.18     0.65
## 6315                               Nintendo     0.00     0.00     0.31
## 6316                               Nintendo     0.00     0.00     0.06
## 6317                               Nintendo     0.00     0.00     0.01
## 6318                                Ubisoft     0.07     0.04     0.00
## 6319                                Ubisoft     0.02     0.00     0.00
## 6320                     Virgin Interactive     0.19     0.13     0.00
## 6321                                 Capcom     0.00     0.00     0.06
## 6322                                 Capcom     0.81     0.29     0.11
## 6323                                 Capcom     0.79     0.18     0.03
## 6324                                 Capcom     0.43     0.30     0.00
## 6325                                 Capcom     0.00     0.00     0.10
## 6326                  Acclaim Entertainment     0.17     0.04     0.00
## 6327                  Acclaim Entertainment     0.11     0.08     0.00
## 6328                 Microsoft Game Studios     1.83     0.80     0.03
## 6329                        Electronic Arts     0.00     0.59     0.00
## 6330                             Activision     0.30     0.20     0.00
## 6331                             Activision     0.19     0.07     0.00
## 6332                                Unknown     0.00     0.06     0.00
## 6333                                Unknown     0.00     0.04     0.00
## 6334                          Evolved Games     0.06     0.00     0.00
## 6335                          Evolved Games     0.05     0.00     0.00
## 6336                     Namco Bandai Games     0.00     0.00     0.12
## 6337                     Namco Bandai Games     0.00     0.00     0.05
## 6338                        Electronic Arts     0.50     0.39     0.02
## 6339                        Electronic Arts     0.34     0.04     0.01
## 6340                        Electronic Arts     0.54     0.37     0.00
## 6341                 Zoo Digital Publishing     0.05     0.02     0.00
## 6342                        Electronic Arts     0.06     0.03     0.00
## 6343                        Electronic Arts     0.00     0.00     0.03
## 6344                                 Capcom     0.44     0.30     0.09
## 6345                                 Capcom     0.00     0.00     0.06
## 6346                                 Capcom     0.13     0.00     0.05
## 6347                                 Capcom     0.06     0.00     0.00
## 6348                                 Capcom     0.10     0.03     0.00
## 6349                                Unknown     0.12     0.09     0.00
## 6350                     Virgin Interactive     0.45     0.30     0.22
## 6351                                 Capcom     0.00     0.00     0.07
## 6352                                 Capcom     0.09     0.07     0.00
## 6353                                 Capcom     0.10     0.02     0.00
## 6354                                    THQ     0.19     0.05     0.00
## 6355                                    THQ     0.08     0.03     0.00
## 6356                                    THQ     0.07     0.06     0.00
## 6357                                    THQ     0.07     0.04     0.00
## 6358                             Infogrames     0.24     0.19     0.00
## 6359                             Infogrames     0.01     0.00     0.00
## 6360                              LucasArts     0.64     0.02     0.00
## 6361                              LucasArts     0.54     0.11     0.00
## 6362                                    THQ     0.11     0.00     0.00
## 6363                               ValuSoft     0.03     0.00     0.00
## 6364           Konami Digital Entertainment     0.45     0.40     0.44
## 6365           Konami Digital Entertainment     0.29     0.16     0.00
## 6366           Konami Digital Entertainment     3.18     1.83     0.78
## 6367           Konami Digital Entertainment     0.00     0.00     0.07
## 6368           Konami Digital Entertainment     0.18     0.14     0.16
## 6369           Konami Digital Entertainment     0.38     0.22     0.00
## 6370                           SNK Playmore     0.05     0.04     0.00
## 6371                           SNK Playmore     0.03     0.01     0.00
## 6372                                    THQ     0.22     0.24     0.03
## 6373                                    THQ     0.00     0.19     0.00
## 6374                            Codemasters     0.01     0.00     0.00
## 6375                            Codemasters     0.01     0.00     0.00
## 6376                   Take-Two Interactive     1.65     1.22     0.00
## 6377                   Take-Two Interactive     0.61     0.10     0.00
## 6378                   Take-Two Interactive     0.97     0.04     0.00
## 6379                   Take-Two Interactive     0.15     0.04     0.00
## 6380                   Take-Two Interactive     1.25     0.29     0.00
## 6381                   Take-Two Interactive     0.42     0.06     0.00
## 6382                   Take-Two Interactive     1.55     0.54     0.05
## 6383                   Take-Two Interactive     1.68     0.46     0.01
## 6384                   Take-Two Interactive     2.00     0.47     0.02
## 6385                              Rebellion     0.34     0.13     0.00
## 6386                    Foreign Media Games     0.08     0.04     0.00
## 6387                                    GSP     0.00     0.03     0.00
## 6388                    Slitherine Software     0.00     0.01     0.00
## 6389                    Slitherine Software     0.00     0.01     0.00
## 6390                            Square Enix     0.07     0.08     0.00
## 6391                            Square Enix     0.07     0.02     0.00
## 6392                                  Atari     2.56     0.17     0.00
## 6393                                  Atari     0.25     0.17     0.00
## 6394                                  Ocean     0.74     0.38     0.02
## 6395                             Infogrames     0.29     0.20     0.00
## 6396                     Namco Bandai Games     0.00     0.00     0.42
## 6397                     Namco Bandai Games     0.00     0.00     0.41
## 6398            Sony Computer Entertainment     0.50     0.41     0.06
## 6399            Sony Computer Entertainment     0.11     0.27     0.02
## 6400                              Mindscape     0.07     0.05     0.00
## 6401               DreamCatcher Interactive     0.02     0.01     0.00
## 6402                            Hudson Soft     0.00     0.00     0.46
## 6403                            Hudson Soft     0.00     0.00     0.07
## 6404                            Hudson Soft     0.00     0.00     0.21
## 6405                            Hudson Soft     0.00     0.00     0.10
## 6406                                Ubisoft     0.14     0.11     0.00
## 6407                                Ubisoft     0.04     0.01     0.00
## 6408                           Little Orbit     0.02     0.00     0.00
## 6409                           Little Orbit     0.00     0.02     0.00
## 6410                                    THQ     0.72     0.17     0.00
## 6411                                    THQ     0.44     0.08     0.00
## 6412                                 Capcom     0.37     0.27     1.75
## 6413                                 Capcom     0.00     0.00     0.50
## 6414                                 Capcom     0.00     0.00     0.05
## 6415                                 Capcom     0.00     0.00     0.13
## 6416                                 Capcom     0.00     0.00     0.25
## 6417                                 Capcom     0.00     0.00     0.23
## 6418                            Zushi Games     0.02     0.00     0.00
## 6419                            Zushi Games     0.02     0.00     0.00
## 6420                                    THQ     0.59     0.95     0.03
## 6421            Sony Computer Entertainment     0.15     0.12     0.00
## 6422                    ASCII Entertainment     0.00     0.00     0.17
## 6423                                Mastiff     0.04     0.00     0.00
## 6424                         GT Interactive     0.81     0.55     0.00
## 6425                         GT Interactive     0.55     0.17     0.00
## 6426                         GT Interactive     0.38     0.26     0.00
## 6427                           Midway Games     0.32     0.07     0.00
## 6428                         GT Interactive     1.98     0.70     0.00
## 6429                         GT Interactive     0.72     0.22     0.00
## 6430                           Midway Games     1.48     0.30     0.00
## 6431                           Midway Games     1.53     0.24     0.00
## 6432                           Midway Games     0.88     0.04     0.00
## 6433                           Midway Games     0.21     0.02     0.00
## 6434                           Midway Games     0.58     0.02     0.00
## 6435                           Midway Games     0.23     0.07     0.00
## 6436                             Activision     0.00     0.13     0.00
## 6437                             Activision     0.03     0.04     0.00
## 6438                             Activision     0.03     0.37     0.00
## 6439                             Activision     0.13     0.13     0.00
## 6440                                Ubisoft     0.14     0.10     0.00
## 6441                                Ubisoft     0.08     0.06     0.00
## 6442                                 Capcom     0.05     0.13     0.00
## 6443                                 Capcom     0.07     0.09     0.00
## 6444                                 Capcom     0.04     0.10     0.00
## 6445                                 Capcom     0.00     0.05     0.00
## 6446                   Take-Two Interactive     0.05     0.04     0.00
## 6447                   Take-Two Interactive     0.01     0.00     0.00
## 6448            Sony Computer Entertainment     0.16     0.58     0.00
## 6449            Sony Computer Entertainment     0.07     0.03     0.00
## 6450                 Zoo Digital Publishing     0.40     0.15     0.00
## 6451                     Namco Bandai Games     0.25     0.17     0.00
## 6452                         TDK Mediactive     0.03     0.02     0.00
## 6453                         TDK Mediactive     0.02     0.00     0.00
## 6454                      Rising Star Games     0.33     0.13     0.11
## 6455                Marvelous Entertainment     0.13     0.00     0.10
## 6456                        SouthPeak Games     0.28     0.03     0.00
## 6457                        SouthPeak Games     0.12     0.00     0.00
## 6458                              505 Games     0.02     0.00     0.00
## 6459                              505 Games     0.01     0.00     0.00
## 6460                                Ubisoft     0.00     0.10     0.00
## 6461                                Ubisoft     0.00     0.05     0.00
## 6462                                  Atari     0.33     0.00     0.00
## 6463                                  Atari     0.27     0.02     0.00
## 6464                                  Atari     0.05     0.01     0.00
## 6465                                  Atari     0.04     0.02     0.00
## 6466                                Ubisoft     0.40     0.01     0.00
## 6467                                Ubisoft     0.12     0.00     0.00
## 6468                                Ubisoft     0.37     0.90     0.00
## 6469                                Ubisoft     0.46     0.02     0.00
## 6470                        Electronic Arts     0.55     0.43     0.00
## 6471                        Electronic Arts     0.62     0.32     0.00
## 6472                        Electronic Arts     0.81     0.60     0.01
## 6473                        Electronic Arts     0.71     0.65     0.01
## 6474                        Electronic Arts     0.15     0.12     0.00
## 6475                        Electronic Arts     0.18     0.03     0.00
## 6476                        Electronic Arts     0.26     0.29     0.00
## 6477                        Electronic Arts     0.19     0.23     0.00
## 6478                                Ubisoft     0.14     0.11     0.00
## 6479                                Ubisoft     0.04     0.01     0.00
## 6480                                Ubisoft     0.04     0.01     0.00
## 6481                                Ubisoft     0.01     0.00     0.00
## 6482                                   Sega     0.18     0.00     0.33
## 6483                               ChunSoft     0.00     0.00     0.40
## 6484                             Tecmo Koei     0.03     0.01     0.04
## 6485                             Tecmo Koei     0.03     0.02     0.00
## 6486                                  Atari     0.06     0.00     0.00
## 6487                                  Atari     0.03     0.00     0.00
## 6488                           Midway Games     0.18     0.14     0.00
## 6489                           Midway Games     0.14     0.04     0.00
## 6490                            Deep Silver     0.15     0.00     0.00
## 6491                            Deep Silver     0.09     0.00     0.00
## 6492                        Electronic Arts     0.53     0.02     0.00
## 6493                        Electronic Arts     0.20     0.06     0.00
## 6494                        Electronic Arts     0.06     0.04     0.00
## 6495                        Electronic Arts     0.03     0.01     0.00
## 6496                        Electronic Arts     0.88     0.60     0.00
## 6497                        Electronic Arts     0.49     0.03     0.00
## 6498                        Electronic Arts     0.45     0.31     0.00
## 6499                        Electronic Arts     0.34     0.27     0.00
## 6500                        Electronic Arts     1.45     0.04     0.00
## 6501                        Electronic Arts     0.94     0.04     0.00
## 6502               Dusenberry Martin Racing     0.03     0.00     0.00
## 6503               Dusenberry Martin Racing     0.02     0.00     0.00
## 6504                             Activision     0.09     0.00     0.00
## 6505                             Activision     0.07     0.00     0.00
## 6506                        Electronic Arts     0.53     0.41     0.00
## 6507                        Electronic Arts     0.18     0.05     0.00
## 6508                             Infogrames     0.07     0.02     0.00
## 6509                                Unknown     0.28     0.22     0.00
## 6510            Sony Computer Entertainment     0.26     0.20     0.00
## 6511            Sony Computer Entertainment     0.20     0.00     0.00
## 6512                           Midway Games     0.81     0.63     0.00
## 6513                           Midway Games     0.37     0.11     0.00
## 6514                           Midway Games     0.17     0.00     0.00
## 6515                           Midway Games     0.12     0.00     0.00
## 6516                           Midway Games     0.23     0.18     0.00
## 6517                           Midway Games     0.09     0.03     0.00
## 6518                         GT Interactive     0.48     0.08     0.00
## 6519                           Midway Games     0.03     0.02     0.00
## 6520                           Midway Games     0.09     0.07     0.00
## 6521                           Midway Games     0.07     0.05     0.00
## 6522                        Electronic Arts     0.14     0.05     0.00
## 6523                        Electronic Arts     0.16     0.02     0.00
## 6524                        Electronic Arts     0.15     0.04     0.00
## 6525                        Electronic Arts     0.17     0.02     0.00
## 6526                        Electronic Arts     0.10     0.04     0.00
## 6527                        Electronic Arts     0.08     0.01     0.00
## 6528                        Electronic Arts     1.43     0.05     0.00
## 6529                        Electronic Arts     0.42     0.02     0.00
## 6530                        Electronic Arts     0.70     0.47     0.00
## 6531                        Electronic Arts     0.52     0.40     0.04
## 6532                        Electronic Arts     1.13     0.05     0.00
## 6533                        Electronic Arts     0.45     0.02     0.00
## 6534            Sony Computer Entertainment     0.15     0.10     0.00
## 6535            Sony Computer Entertainment     0.07     0.06     0.00
## 6536                           Midway Games     0.31     0.21     0.00
## 6537                           Midway Games     0.23     0.02     0.00
## 6538                                Unknown     0.09     0.07     0.00
## 6539           Konami Digital Entertainment     0.02     0.01     0.00
## 6540                        Electronic Arts     2.19     0.22     0.00
## 6541                        Electronic Arts     0.33     0.09     0.00
## 6542                        Electronic Arts     0.45     0.01     0.00
## 6543                        Electronic Arts     0.12     0.02     0.00
## 6544           Konami Digital Entertainment     0.12     0.08     0.00
## 6545           Konami Digital Entertainment     0.04     0.00     0.00
## 6546                        Electronic Arts     0.31     0.00     0.00
## 6547                        Electronic Arts     0.30     0.00     0.00
## 6548                                   Sega     0.12     0.09     0.00
## 6549                                   Sega     0.11     0.03     0.00
## 6550            Sony Computer Entertainment     0.09     0.07     0.00
## 6551            Sony Computer Entertainment     0.09     0.06     0.00
## 6552                        Electronic Arts     1.53     0.05     0.00
## 6553                        Electronic Arts     0.73     0.21     0.00
## 6554                        Electronic Arts     0.94     0.00     0.00
## 6555                        Electronic Arts     0.78     0.00     0.00
## 6556                        Electronic Arts     1.02     0.00     0.00
## 6557                        Electronic Arts     0.82     0.00     0.00
## 6558                        Electronic Arts     1.01     0.00     0.00
## 6559                        Electronic Arts     0.75     0.00     0.00
## 6560            Sony Computer Entertainment     0.18     0.12     0.00
## 6561            Sony Computer Entertainment     0.07     0.06     0.00
## 6562                        Electronic Arts     0.45     0.02     0.00
## 6563                        Electronic Arts     0.15     0.04     0.00
## 6564                        Electronic Arts     0.28     0.22     0.00
## 6565                        Electronic Arts     0.19     0.00     0.00
## 6566                        Electronic Arts     0.50     0.39     0.00
## 6567                        Electronic Arts     0.18     0.05     0.00
## 6568                        Electronic Arts     0.44     0.02     0.00
## 6569                        Electronic Arts     0.21     0.06     0.00
## 6570                                   Sega     0.44     0.34     0.00
## 6571                                   Sega     0.13     0.04     0.00
## 6572                           Midway Games     1.41     0.05     0.00
## 6573                           Midway Games     1.02     0.04     0.00
## 6574                           Midway Games     0.60     0.41     0.00
## 6575                           Midway Games     0.55     0.02     0.00
## 6576                           Midway Games     0.33     0.22     0.00
## 6577                           Midway Games     0.34     0.07     0.00
## 6578            Sony Computer Entertainment     0.56     0.38     0.00
## 6579            Sony Computer Entertainment     0.18     0.14     0.00
## 6580            Sony Computer Entertainment     0.23     0.15     0.00
## 6581            Sony Computer Entertainment     0.19     0.15     0.00
## 6582                        Electronic Arts     0.38     0.01     0.00
## 6583                        Electronic Arts     0.09     0.03     0.00
## 6584                        Electronic Arts     0.13     0.00     0.00
## 6585                        Electronic Arts     0.11     0.00     0.00
## 6586                  Acclaim Entertainment     0.11     0.08     0.00
## 6587                  Acclaim Entertainment     0.04     0.01     0.00
## 6588                        Electronic Arts     0.10     0.01     0.00
## 6589                        Electronic Arts     0.09     0.00     0.00
## 6590                        Electronic Arts     0.16     0.06     0.00
## 6591                        Electronic Arts     0.22     0.01     0.00
## 6592                        Electronic Arts     0.51     0.10     0.00
## 6593                        Electronic Arts     0.38     0.12     0.00
## 6594                        Electronic Arts     0.61     0.07     0.00
## 6595                        Electronic Arts     0.40     0.13     0.00
## 6596                        Electronic Arts     0.55     0.10     0.00
## 6597                        Electronic Arts     0.36     0.16     0.00
## 6598                        Electronic Arts     0.51     0.11     0.00
## 6599                        Electronic Arts     0.33     0.22     0.00
## 6600                        Electronic Arts     0.28     0.19     0.00
## 6601                        Electronic Arts     0.40     0.10     0.00
## 6602                        Electronic Arts     0.13     0.04     0.00
## 6603                        Electronic Arts     0.13     0.01     0.00
## 6604                        Electronic Arts     0.47     0.37     0.00
## 6605                        Electronic Arts     0.35     0.24     0.00
## 6606                   Take-Two Interactive     0.11     0.01     0.00
## 6607                   Take-Two Interactive     0.08     0.01     0.00
## 6608                        Electronic Arts     0.59     0.40     0.00
## 6609                        Electronic Arts     0.38     0.01     0.00
## 6610                  Acclaim Entertainment     0.30     0.02     0.00
## 6611                  Acclaim Entertainment     0.08     0.05     0.00
## 6612            Sony Computer Entertainment     0.13     0.09     0.00
## 6613            Sony Computer Entertainment     0.10     0.07     0.00
## 6614                        Electronic Arts     0.05     0.00     0.00
## 6615                        Electronic Arts     0.03     0.00     0.00
## 6616                                    THQ     0.02     0.01     0.00
## 6617                                    THQ     0.03     0.00     0.00
## 6618                     Bethesda Softworks     0.07     0.05     0.00
## 6619                     Bethesda Softworks     0.04     0.01     0.00
## 6620                    Crave Entertainment     0.03     0.00     0.00
## 6621                    Crave Entertainment     0.02     0.00     0.00
## 6622                     Namco Bandai Games     0.42     0.47     0.15
## 6623                     Namco Bandai Games     0.43     0.27     0.01
## 6624                     Namco Bandai Games     0.32     0.33     0.15
## 6625                     Namco Bandai Games     0.29     0.17     0.01
## 6626                     Namco Bandai Games     0.39     0.41     0.10
## 6627                     Namco Bandai Games     0.19     0.06     0.00
## 6628                     Namco Bandai Games     0.27     0.25     0.14
## 6629                     Namco Bandai Games     0.26     0.14     0.01
## 6630                     Namco Bandai Games     0.15     0.16     0.09
## 6631                     Namco Bandai Games     0.13     0.08     0.00
## 6632                            D3Publisher     0.00     0.00     0.02
## 6633                            D3Publisher     0.00     0.00     0.02
## 6634                              505 Games     0.18     0.18     0.00
## 6635                              505 Games     0.21     0.16     0.00
## 6636                        Electronic Arts     0.87     0.98     0.00
## 6637                        Electronic Arts     0.17     0.02     0.00
## 6638                        Electronic Arts     0.46     0.31     0.00
## 6639                        Electronic Arts     0.22     0.13     0.00
## 6640                        Electronic Arts     0.43     0.29     0.00
## 6641                 Zoo Digital Publishing     0.35     0.13     0.00
## 6642                                   Sega     0.00     0.00     0.44
## 6643                     Namco Bandai Games     0.00     0.00     0.06
## 6644                                 Capcom     0.26     0.00     0.00
## 6645                                 Capcom     0.19     0.02     0.00
## 6646           Konami Digital Entertainment     0.06     0.04     0.01
## 6647           Konami Digital Entertainment     0.06     0.03     0.00
## 6648                   Take-Two Interactive     0.35     0.21     0.00
## 6649                   Take-Two Interactive     0.16     0.05     0.00
## 6650                   Take-Two Interactive     0.18     0.00     0.00
## 6651                   Take-Two Interactive     0.04     0.03     0.00
## 6652                                   Sega     0.00     0.00     0.43
## 6653                                   Sega     0.00     0.00     0.01
## 6654                             Infogrames     0.19     0.07     0.00
## 6655                     Hasbro Interactive     0.09     0.06     0.00
## 6656                   Take-Two Interactive     0.23     0.01     0.00
## 6657                   Take-Two Interactive     0.08     0.02     0.00
## 6658                                  Atari     0.19     0.05     0.00
## 6659                             Infogrames     0.16     0.05     0.00
## 6660                                    THQ     0.28     0.00     0.00
## 6661                                Unknown     0.22     0.06     0.00
## 6662                            Square Enix     0.17     0.20     0.20
## 6663                            Square Enix     0.13     0.10     0.04
## 6664            Sony Computer Entertainment     0.35     0.24     0.00
## 6665                             Activision     0.21     0.05     0.00
## 6666                      Eidos Interactive     0.57     0.33     0.09
## 6667                             Tecmo Koei     0.13     0.06     0.04
## 6668                         Ubisoft Annecy     0.52     0.16     0.08
## 6669                             Tecmo Koei     0.00     0.00     0.01
## 6670                        Electronic Arts     0.11     0.01     0.00
## 6671                        Electronic Arts     0.09     0.00     0.00
## 6672                  Marvelous Interactive     0.01     0.00     0.02
## 6673                              Nitroplus     0.00     0.00     0.01
## 6674           Konami Digital Entertainment     0.10     0.04     0.04
## 6675                  Marvelous Interactive     0.00     0.00     0.02
## 6676                             Tecmo Koei     0.00     0.00     0.19
## 6677                             Tecmo Koei     0.00     0.00     0.06
## 6678                             Tecmo Koei     0.00     0.00     0.17
## 6679                             Tecmo Koei     0.00     0.00     0.11
## 6680                             Tecmo Koei     0.00     0.00     0.05
## 6681                             Tecmo Koei     0.03     0.00     0.00
## 6682                     Namco Bandai Games     0.00     0.00     0.10
## 6683                              Banpresto     0.00     0.00     0.01
## 6684                               Microids     0.03     0.03     0.00
## 6685                      MC2 Entertainment     0.03     0.01     0.00
## 6686                 Playlogic Game Factory     0.12     0.00     0.00
## 6687                 Playlogic Game Factory     0.05     0.03     0.00
## 6688                                  Atari     0.54     0.16     0.00
## 6689                                    THQ     0.04     0.02     0.00
## 6690                            Media Works     0.00     0.00     0.06
## 6691                            Media Works     0.00     0.00     0.03
## 6692           Konami Digital Entertainment     0.52     0.46     0.00
## 6693           Konami Digital Entertainment     0.42     0.23     0.00
## 6694                     Namco Bandai Games     0.00     0.20     0.42
## 6695                     Namco Bandai Games     0.00     0.00     0.12
## 6696                     Namco Bandai Games     0.00     0.00     0.32
## 6697                     Namco Bandai Games     0.00     0.00     0.08
## 6698                            D3Publisher     0.00     0.00     0.03
## 6699                            D3Publisher     0.00     0.00     0.03
## 6700                           Funbox Media     0.04     0.01     0.00
## 6701                           Funbox Media     0.00     0.01     0.00
## 6702                                   Sega     0.02     0.01     0.01
## 6703                                   Sega     0.03     0.01     0.00
## 6704                         TDK Mediactive     0.22     0.06     0.00
## 6705                         TDK Mediactive     0.06     0.02     0.00
## 6706                            Global Star     0.17     0.14     0.00
## 6707                            Global Star     0.15     0.04     0.00
## 6708                            Global Star     0.04     0.03     0.00
## 6709                            Global Star     0.03     0.01     0.00
## 6710                             Activision     0.12     0.00     0.00
## 6711                             Activision     0.05     0.00     0.00
## 6712                            Codemasters     0.34     0.03     0.01
## 6713                            Codemasters     0.00     0.02     0.00
## 6714                    Crave Entertainment     0.10     0.08     0.00
## 6715                    Crave Entertainment     0.12     0.00     0.00
## 6716            Sony Computer Entertainment     0.26     0.16     1.46
## 6717            Sony Computer Entertainment     0.10     0.00     0.02
## 6718                                  Atari     7.28     0.45     0.00
## 6719                     Namco Bandai Games     0.27     0.08     0.85
## 6720            Sony Computer Entertainment     0.25     0.20     0.00
## 6721                                Unknown     0.21     0.06     0.00
## 6722                           Nordic Games     0.02     0.02     0.00
## 6723                           Nordic Games     0.00     0.01     0.00
## 6724           Konami Digital Entertainment     0.00     0.00     0.31
## 6725           Konami Digital Entertainment     0.00     0.00     0.16
## 6726                                    THQ     0.60     0.00     0.00
## 6727                                    THQ     0.09     0.00     0.00
## 6728            Sony Computer Entertainment     0.00     0.00     0.23
## 6729                                    THQ     0.05     0.01     0.00
## 6730                                Ubisoft     0.00     0.58     0.00
## 6731                                Ubisoft     0.00     0.12     0.00
## 6732                               Pinnacle     0.00     0.82     0.00
## 6733                               Pinnacle     0.00     0.35     0.00
## 6734                                  Atlus     0.03     0.02     0.28
## 6735                                  Atlus     0.00     0.00     0.05
## 6736                                  Atlus     0.30     0.12     0.24
## 6737                                  Atlus     0.08     0.02     0.03
## 6738                                  Atlus     0.00     0.01     0.13
## 6739                                  Atlus     0.06     0.01     0.00
## 6740                                  Atlus     0.00     0.00     0.34
## 6741                                Unknown     0.00     0.00     0.10
## 6742                                Ubisoft     0.35     0.00     0.00
## 6743                                Ubisoft     0.21     0.00     0.00
## 6744                                Ubisoft     0.48     0.00     0.00
## 6745                                Ubisoft     0.01     0.00     0.00
## 6746                                   Sega     0.00     0.00     0.03
## 6747                                   Sega     0.00     0.00     0.01
## 6748                             Infogrames     0.23     0.06     0.16
## 6749                                   Sega     0.11     0.03     0.00
## 6750                                   Sega     0.00     0.00     0.19
## 6751                                   Sega     0.09     0.02     0.00
## 6752                        Kadokawa Shoten     0.00     0.00     0.09
## 6753                        Kadokawa Shoten     0.00     0.00     0.07
## 6754                                    THQ     0.61     0.19     0.00
## 6755                                    THQ     0.10     0.07     0.00
## 6756                                    THQ     0.15     0.06     0.00
## 6757                                    THQ     0.16     0.05     0.00
## 6758                             Activision     0.10     0.00     0.00
## 6759                             Activision     0.10     0.01     0.00
## 6760                             Activision     0.04     0.03     0.00
## 6761                             Activision     0.03     0.00     0.00
## 6762                        Electronic Arts     0.07     0.05     0.00
## 6763                        Electronic Arts     0.05     0.01     0.00
## 6764            Sony Computer Entertainment     0.50     0.28     0.04
## 6765            Sony Computer Entertainment     0.26     0.15     0.01
## 6766                                Ubisoft     0.10     0.08     0.00
## 6767                                Ubisoft     0.07     0.02     0.00
## 6768                     Virgin Interactive     0.06     0.04     0.12
## 6769                                 Capcom     0.00     0.00     0.03
## 6770                  Vatical Entertainment     0.09     0.06     0.00
## 6771                  Vatical Entertainment     0.05     0.01     0.00
## 6772                           Midway Games     0.03     0.03     0.00
## 6773                               XS Games     0.02     0.01     0.00
## 6774                               Nintendo     0.51     0.12     0.45
## 6775                           Parker Bros.     0.50     0.03     0.00
## 6776                          Kalypso Media     0.06     0.00     0.00
## 6777                          Kalypso Media     0.06     0.00     0.00
## 6778                                Unknown     0.13     0.00     0.00
## 6779                                Unknown     0.11     0.00     0.00
## 6780                     Namco Bandai Games     0.29     0.03     0.00
## 6781                     Namco Bandai Games     0.27     0.04     0.00
## 6782             Disney Interactive Studios     0.07     0.06     0.00
## 6783             Disney Interactive Studios     0.08     0.03     0.00
## 6784                                    THQ     0.18     0.12     0.00
## 6785                                    THQ     0.14     0.05     0.00
## 6786                          Evolved Games     0.03     0.02     0.00
## 6787                          Evolved Games     0.01     0.00     0.00
## 6788                          Vivendi Games     0.10     0.07     0.00
## 6789                          Vivendi Games     0.07     0.02     0.00
## 6790                                Ubisoft     0.33     0.00     0.00
## 6791                                Ubisoft     0.19     0.00     0.00
## 6792                   Take-Two Interactive     0.27     0.03     0.00
## 6793                   Take-Two Interactive     0.00     0.03     0.00
## 6794                                Ubisoft     0.47     0.41     0.03
## 6795                                Ubisoft     0.54     0.35     0.02
## 6796                                Ubisoft     0.24     0.03     0.00
## 6797                                Ubisoft     0.08     0.02     0.00
## 6798                                    GSP     0.05     0.03     0.00
## 6799                              Destineer     0.02     0.00     0.00
## 6800                            Deep Silver     0.05     0.16     0.00
## 6801                            Deep Silver     0.07     0.12     0.00
## 6802           Konami Digital Entertainment     0.00     0.00     0.15
## 6803           Konami Digital Entertainment     0.00     0.00     0.13
## 6804                 Focus Home Interactive     0.00     0.04     0.00
## 6805                 Focus Home Interactive     0.00     0.03     0.00
## 6806                            Codemasters     0.13     0.10     0.00
## 6807                            Codemasters     0.03     0.01     0.00
## 6808           Konami Digital Entertainment     0.00     0.00     0.19
## 6809           Konami Digital Entertainment     0.00     0.00     0.07
## 6810           Konami Digital Entertainment     0.00     0.00     0.18
## 6811           Konami Digital Entertainment     0.00     0.00     0.11
## 6812           Konami Digital Entertainment     0.00     0.00     0.15
## 6813           Konami Digital Entertainment     0.00     0.00     0.13
## 6814                     Namco Bandai Games     0.15     0.00     2.05
## 6815                     Namco Bandai Games     0.00     0.00     0.03
## 6816           Konami Digital Entertainment     0.00     0.00     0.05
## 6817           Konami Digital Entertainment     0.00     0.00     0.03
## 6818                                   Sega     0.00     0.00     0.23
## 6819                                   Sega     0.00     0.00     0.11
## 6820                     Namco Bandai Games     0.00     0.01     0.00
## 6821                     Namco Bandai Games     0.00     0.01     0.00
## 6822                            Deep Silver     0.04     0.12     0.00
## 6823                            Deep Silver     0.04     0.00     0.00
## 6824                            Square Enix     0.00     0.00     0.06
## 6825                            Square Enix     0.00     0.00     0.05
## 6826                      Eidos Interactive     0.10     0.08     0.00
## 6827                      Eidos Interactive     0.08     0.02     0.00
## 6828                           Midway Games     0.14     0.11     0.00
## 6829                           Midway Games     0.13     0.04     0.00
## 6830                   Nippon Ichi Software     0.02     0.00     0.00
## 6831                   Nippon Ichi Software     0.00     0.01     0.01
## 6832                                    THQ     0.09     0.03     0.00
## 6833                  Majesco Entertainment     0.05     0.04     0.00
## 6834                                Mastiff     0.03     0.02     0.00
## 6835                                Mastiff     0.01     0.00     0.00
## 6836             Disney Interactive Studios     1.38     0.85     0.00
## 6837             Disney Interactive Studios     0.42     0.33     0.00
## 6838                                Ubisoft     0.06     0.13     0.00
## 6839                                Ubisoft     0.08     0.09     0.00
## 6840                                    THQ     0.18     0.36     0.00
## 6841                            Deep Silver     0.27     0.00     0.00
## 6842                 Ignition Entertainment     0.00     0.00     0.04
## 6843                                   Sega     0.01     0.00     0.00
## 6844                                   Sega     0.00     0.00     0.28
## 6845                                   Sega     0.00     0.00     0.02
## 6846                                   Sega     0.00     0.00     0.14
## 6847                                   Sega     0.00     0.00     0.13
## 6848           Konami Digital Entertainment     0.07     0.00     0.00
## 6849           Konami Digital Entertainment     0.01     0.00     0.00
## 6850                 Zoo Digital Publishing     0.12     0.00     0.00
## 6851                 Zoo Digital Publishing     0.11     0.00     0.00
## 6852                                Ubisoft     0.17     0.78     0.00
## 6853                                Ubisoft     0.05     0.01     0.00
## 6854                                  Atari     0.46     0.32     0.00
## 6855                           Parker Bros.     0.55     0.03     0.00
## 6856                             Activision     0.32     0.03     0.00
## 6857                             Activision     0.00     0.02     0.00
## 6858                             Activision     0.23     0.16     0.00
## 6859                             Activision     0.24     0.06     0.00
## 6860                             Tecmo Koei     0.05     0.09     0.02
## 6861                             Tecmo Koei     0.06     0.02     0.00
## 6862                     Virgin Interactive     0.05     0.04     0.00
## 6863                     Avalon Interactive     0.03     0.01     0.00
## 6864                                Ubisoft     0.26     0.75     0.00
## 6865                                Ubisoft     0.35     0.30     0.00
## 6866                                Ubisoft     0.00     0.01     0.00
## 6867                                Ubisoft     0.00     0.01     0.00
## 6868                                Ubisoft     0.11     0.17     0.00
## 6869                                Ubisoft     0.14     0.09     0.00
## 6870                                 GungHo     0.22     0.01     0.16
## 6871                                 GungHo     0.03     0.01     0.00
## 6872                             Activision     0.06     0.05     0.00
## 6873                             Activision     0.04     0.01     0.00
## 6874                         GT Interactive     0.13     0.09     0.00
## 6875                         GT Interactive     0.18     0.04     0.00
## 6876                         GT Interactive     0.47     0.32     0.00
## 6877                         GT Interactive     0.36     0.08     0.00
## 6878                             Activision     0.16     0.00     0.00
## 6879                             Activision     0.04     0.00     0.00
## 6880                             Activision     0.51     0.00     0.00
## 6881                             Activision     0.03     0.00     0.00
## 6882                              Mindscape     0.03     0.02     0.00
## 6883                              Mindscape     0.02     0.00     0.00
## 6884            Sony Computer Entertainment     0.47     0.14     0.02
## 6885            Sony Computer Entertainment     0.00     0.05     0.00
## 6886            Sony Computer Entertainment     0.19     0.01     0.00
## 6887            Sony Computer Entertainment     0.01     0.00     0.00
## 6888            Sony Computer Entertainment     1.40     1.40     0.10
## 6889            Sony Computer Entertainment     0.13     0.10     0.03
## 6890                          Evolved Games     0.08     0.01     0.00
## 6891                          Evolved Games     0.01     0.00     0.00
## 6892                                Ubisoft     0.40     0.22     0.00
## 6893                                Ubisoft     0.18     0.12     0.00
## 6894                                Ubisoft     0.83     0.82     0.00
## 6895                                Ubisoft     0.73     0.01     0.00
## 6896                                Ubisoft     0.73     1.09     0.00
## 6897                                Ubisoft     0.44     0.01     0.00
## 6898                                Ubisoft     0.26     0.17     0.00
## 6899                                Ubisoft     0.01     0.00     0.00
## 6900                  Acclaim Entertainment     0.11     0.07     0.00
## 6901                  Acclaim Entertainment     0.14     0.04     0.00
## 6902                           Nordic Games     0.25     0.00     0.00
## 6903                               Graffiti     0.12     0.00     0.00
## 6904                           Midway Games     0.60     0.41     0.00
## 6905                           Midway Games     0.47     0.11     0.00
## 6906                           Valcon Games     0.05     0.04     0.00
## 6907                               Mad Catz     0.02     0.01     0.00
## 6908                              Destineer     0.35     0.00     0.00
## 6909                              Destineer     0.07     0.00     0.00
## 6910                          Compile Heart     0.18     0.00     0.01
## 6911                             Ghostlight     0.00     0.03     0.03
## 6912                             Ghostlight     0.09     0.00     0.03
## 6913                          Compile Heart     0.09     0.00     0.00
## 6914                   Take-Two Interactive     2.79     2.61     0.17
## 6915                   Take-Two Interactive     3.70     1.97     0.09
## 6916                   Take-Two Interactive     0.44     0.46     0.06
## 6917                   Take-Two Interactive     0.57     0.39     0.02
## 6918                   Take-Two Interactive     0.71     0.55     0.00
## 6919                   Take-Two Interactive     0.40     0.12     0.00
## 6920                          Vivendi Games     0.02     0.02     0.00
## 6921                          Vivendi Games     0.01     0.00     0.00
## 6922                                 Capcom     1.08     0.70     0.34
## 6923                                 Capcom     0.05     0.01     0.00
## 6924                      Eidos Interactive     1.30     0.77     1.54
## 6925                                 Capcom     0.06     0.02     0.00
## 6926                                 Capcom     0.03     0.00     0.00
## 6927                                 Capcom     0.01     0.00     0.00
## 6928                     Virgin Interactive     1.82     1.24     0.47
## 6929                                 Capcom     0.00     0.00     0.04
## 6930                                   Sega     0.20     0.22     0.24
## 6931                                   Sega     0.12     0.13     0.06
## 6932                   Nippon Ichi Software     0.05     0.00     0.00
## 6933                   Nippon Ichi Software     0.02     0.01     0.00
## 6934                               Nintendo     0.58     0.51     1.93
## 6935                                Unknown     0.13     0.00     0.77
## 6936                                  Atari     0.05     0.04     0.00
## 6937                                  Atari     0.04     0.01     0.00
## 6938                            Deep Silver     0.04     0.01     0.00
## 6939                            Deep Silver     0.02     0.02     0.00
## 6940                            Deep Silver     0.07     0.11     0.00
## 6941                            Deep Silver     0.00     0.11     0.00
## 6942                                Red Orb     1.52     0.82     0.00
## 6943                  Acclaim Entertainment     0.18     0.12     0.00
## 6944                                  Sting     0.07     0.03     0.00
## 6945                              505 Games     0.07     0.00     0.02
## 6946                        Electronic Arts     0.22     0.15     0.00
## 6947                 Zoo Digital Publishing     0.07     0.03     0.00
## 6948                          Vivendi Games     0.18     0.14     0.00
## 6949                          Vivendi Games     0.26     0.14     0.00
## 6950                                 Capcom     0.09     0.07     0.00
## 6951                                 Capcom     0.02     0.01     0.00
## 6952                            Global Star     0.05     0.04     0.00
## 6953                            Global Star     0.04     0.01     0.00
## 6954                 Harmonix Music Systems     0.35     0.04     0.00
## 6955                 Harmonix Music Systems     0.25     0.05     0.00
## 6956                              MTV Games     0.17     0.05     0.00
## 6957                              MTV Games     0.06     0.05     0.00
## 6958                        UFO Interactive     0.06     0.00     0.00
## 6959                        UFO Interactive     0.02     0.00     0.00
## 6960               Conspiracy Entertainment     0.04     0.00     0.00
## 6961               Conspiracy Entertainment     0.04     0.00     0.00
## 6962                   Take-Two Interactive     1.84     0.56     0.00
## 6963                   Take-Two Interactive     0.85     0.66     0.00
## 6964                   Take-Two Interactive     0.39     0.73     0.00
## 6965                   Take-Two Interactive     0.28     0.39     0.00
## 6966                                Ubisoft     0.13     0.10     0.00
## 6967                                Ubisoft     0.07     0.02     0.00
## 6968                   Nippon Ichi Software     0.08     0.02     0.01
## 6969                   Nippon Ichi Software     0.03     0.00     0.00
## 6970                      Eidos Interactive     0.02     0.02     0.00
## 6971                      Eidos Interactive     0.01     0.00     0.00
## 6972                     Bethesda Softworks     0.11     0.02     0.00
## 6973                     Bethesda Softworks     0.09     0.01     0.00
## 6974                             Microprose     0.02     0.02     0.00
## 6975                                  Atari     0.10     0.03     0.00
## 6976                             Tecmo Koei     0.01     0.00     0.05
## 6977                             Tecmo Koei     0.00     0.00     0.04
## 6978                             Tecmo Koei     0.00     0.00     0.25
## 6979                             Tecmo Koei     0.00     0.00     0.03
## 6980                             Tecmo Koei     0.00     0.00     0.53
## 6981                             Tecmo Koei     0.05     0.03     0.04
## 6982                             Tecmo Koei     0.00     0.00     0.09
## 6983                             Tecmo Koei     0.00     0.00     0.02
## 6984                             SquareSoft     0.00     0.00     0.97
## 6985                            Square Enix     0.06     0.04     0.47
## 6986                               Nintendo     0.10     0.41     0.01
## 6987                            Hudson Soft     0.06     0.00     0.00
## 6988                        Electronic Arts     0.18     0.24     0.00
## 6989                        Electronic Arts     0.15     0.09     0.00
## 6990                           Game Factory     0.13     0.01     0.00
## 6991                           Game Factory     0.10     0.01     0.00
## 6992                    Crave Entertainment     0.15     0.00     0.00
## 6993                    Crave Entertainment     0.15     0.00     0.00
## 6994                        Electronic Arts     0.02     0.02     0.00
## 6995                        Electronic Arts     0.01     0.00     0.00
## 6996                        Electronic Arts     0.04     0.03     0.00
## 6997                        Electronic Arts     0.04     0.01     0.00
## 6998           Home Entertainment Suppliers     0.00     0.02     0.00
## 6999           Home Entertainment Suppliers     0.00     0.02     0.00
## 7000                              505 Games     0.00     0.25     0.00
## 7001                              505 Games     0.03     0.21     0.00
## 7002                                    THQ     1.96     1.33     0.00
## 7003                                    THQ     0.40     0.09     0.00
## 7004                                    THQ     0.17     0.13     0.00
## 7005                                    THQ     0.13     0.03     0.00
## 7006                 Focus Home Interactive     0.00     0.02     0.00
## 7007                 Focus Home Interactive     0.00     0.04     0.00
## 7008                  Marvelous Interactive     0.14     0.00     0.07
## 7009                  Marvelous Interactive     0.14     0.00     0.06
## 7010                                Ubisoft     0.05     0.03     0.00
## 7011                                Ubisoft     0.05     0.01     0.00
## 7012                       Black Bean Games     0.05     0.13     0.00
## 7013                       Black Bean Games     0.10     0.07     0.00
## 7014                     Namco Bandai Games     0.00     0.00     0.31
## 7015                     Namco Bandai Games     0.00     0.00     0.06
## 7016                     Namco Bandai Games     0.00     0.00     0.34
## 7017                     Namco Bandai Games     0.00     0.00     0.05
## 7018                     Namco Bandai Games     0.00     0.00     0.07
## 7019                     Namco Bandai Games     0.00     0.00     0.03
## 7020                                   Sega     0.53     0.58     0.00
## 7021                                   Sega     0.00     0.02     0.00
## 7022                          Vivendi Games     0.16     0.12     0.00
## 7023                          Vivendi Games     0.13     0.04     0.00
## 7024                  Acclaim Entertainment     0.03     0.01     0.00
## 7025                  Acclaim Entertainment     0.03     0.01     0.00
## 7026                                    THQ     0.29     0.06     0.00
## 7027                                    THQ     0.19     0.13     0.00
## 7028                     Neko Entertainment     0.03     0.00     0.00
## 7029                     Neko Entertainment     0.03     0.00     0.00
## 7030                  The Adventure Company     0.07     0.06     0.00
## 7031                  The Adventure Company     0.07     0.01     0.00
## 7032                     Namco Bandai Games     0.00     0.09     0.04
## 7033                     Namco Bandai Games     0.00     0.00     0.04
## 7034                                   Sega     0.00     0.00     0.55
## 7035                                   Sega     0.00     0.00     0.11
## 7036                                   Sega     0.07     0.05     0.15
## 7037                            Ackkstudios     0.06     0.04     0.00
## 7038                         Kadokawa Games     0.00     0.00     0.01
## 7039                         Kadokawa Games     0.00     0.00     0.01
## 7040                      Eidos Interactive     0.07     0.05     0.00
## 7041                                Ubisoft     0.04     0.02     0.00
## 7042                                   Sega     0.03     0.02     0.00
## 7043                                   Sega     0.01     0.00     0.00
## 7044                                 Takara     0.00     0.00     0.40
## 7045                                    SNK     0.00     0.00     0.07
## 7046                        Electronic Arts     0.22     0.05     1.06
## 7047                             Tecmo Koei     0.05     0.02     0.00
## 7048                             Tecmo Koei     0.00     0.00     0.19
## 7049                             Tecmo Koei     0.03     0.00     0.01
## 7050                             Tecmo Koei     0.00     0.00     0.08
## 7051                             Tecmo Koei     0.00     0.00     0.06
## 7052                         GT Interactive     0.63     0.11     0.00
## 7053                         GT Interactive     0.21     0.15     0.00
## 7054                              Prototype     0.00     0.00     0.04
## 7055                              Prototype     0.00     0.00     0.01
## 7056                    Crave Entertainment     0.07     0.00     0.00
## 7057                    Crave Entertainment     0.06     0.00     0.00
## 7058                              Destineer     0.06     0.00     0.00
## 7059                              Destineer     0.01     0.00     0.00
## 7060           Konami Digital Entertainment     0.10     0.07     0.00
## 7061           Konami Digital Entertainment     0.10     0.04     0.00
## 7062           Konami Digital Entertainment     0.16     0.08     0.00
## 7063           Konami Digital Entertainment     0.11     0.07     0.00
## 7064                     Namco Bandai Games     0.00     0.17     0.00
## 7065                     Namco Bandai Games     0.00     0.02     0.00
## 7066                             Activision     0.12     0.01     0.00
## 7067                             Activision     0.09     0.01     0.00
## 7068                                    THQ     0.08     0.01     0.00
## 7069                                    THQ     0.07     0.01     0.00
## 7070 Warner Bros. Interactive Entertainment     0.10     0.00     0.00
## 7071 Warner Bros. Interactive Entertainment     0.09     0.00     0.00
## 7072 Warner Bros. Interactive Entertainment     0.55     0.01     0.00
## 7073 Warner Bros. Interactive Entertainment     0.26     0.09     0.00
## 7074                            Zushi Games     0.04     0.00     0.00
## 7075                              DSI Games     0.01     0.00     0.00
## 7076            Sony Computer Entertainment     0.13     0.18     0.00
## 7077            Sony Computer Entertainment     0.04     0.03     0.04
## 7078                              LucasArts     0.24     0.18     0.00
## 7079                              LucasArts     0.19     0.05     0.00
## 7080                        SouthPeak Games     0.15     0.09     0.00
## 7081                        SouthPeak Games     0.01     0.01     0.00
## 7082                                   Sega     0.46     0.01     0.00
## 7083                                   Sega     0.00     0.00     0.09
## 7084                                 Capcom     0.00     0.00     0.20
## 7085                                 Capcom     0.00     0.00     0.01
## 7086                                 Capcom     0.00     0.00     0.22
## 7087                                 Capcom     0.00     0.00     0.13
## 7088                                 Capcom     0.00     0.00     0.09
## 7089                                 Capcom     0.00     0.00     0.05
## 7090                                 Capcom     0.17     0.04     0.40
## 7091                                 Capcom     0.08     0.02     0.20
## 7092                                 Capcom     0.00     0.00     0.03
## 7093                                 Capcom     0.00     0.00     0.02
## 7094                                   Yeti     0.00     0.00     0.02
## 7095                                   Yeti     0.00     0.00     0.01
## 7096                  Marvelous Interactive     0.06     0.05     0.09
## 7097                  Marvelous Interactive     0.07     0.00     0.08
## 7098                           Mastertronic     0.00     0.02     0.00
## 7099                       Devolver Digital     0.00     0.02     0.00
## 7100                   Take-Two Interactive     0.05     0.01     0.00
## 7101                   Take-Two Interactive     0.00     0.01     0.00
## 7102                            Global Star     0.04     0.03     0.00
## 7103                            Global Star     0.02     0.00     0.00
## 7104                               NewKidCo     0.17     0.12     0.00
## 7105                               NewKidCo     0.14     0.04     0.00
## 7106                               NewKidCo     0.13     0.09     0.00
## 7107                               NewKidCo     0.15     0.04     0.00
## 7108 Warner Bros. Interactive Entertainment     0.10     0.00     0.00
## 7109 Warner Bros. Interactive Entertainment     0.08     0.00     0.00
## 7110                  Acclaim Entertainment     0.18     0.08     0.00
## 7111                  Acclaim Entertainment     0.14     0.09     0.00
## 7112           Konami Digital Entertainment     0.09     0.07     0.03
## 7113           Konami Digital Entertainment     0.07     0.00     0.00
## 7114            Sony Computer Entertainment     0.78     0.03     0.20
## 7115            Sony Computer Entertainment     0.00     0.00     0.04
## 7116                        Electronic Arts     0.11     0.09     0.04
## 7117                        Electronic Arts     0.10     0.06     0.01
## 7118                            Codemasters     0.36     0.28     0.00
## 7119                             Activision     0.26     0.10     0.00
## 7120                      Eidos Interactive     0.05     0.03     0.00
## 7121                      Eidos Interactive     0.04     0.03     0.00
## 7122                 Microsoft Game Studios     0.22     0.08     0.00
## 7123                                   Sega     0.00     0.00     0.15
## 7124                   Nippon Ichi Software     0.00     0.00     0.05
## 7125                   Nippon Ichi Software     0.00     0.00     0.04
## 7126                                    THQ     0.00     0.00     0.11
## 7127                               ChunSoft     0.00     0.00     0.05
## 7128                             Ghostlight     0.17     0.01     0.12
## 7129                                  Atlus     0.00     0.03     0.09
## 7130            Sony Computer Entertainment     0.36     0.28     0.22
## 7131                                   Sega     0.14     0.07     0.00
## 7132                 Gainax Network Systems     0.00     0.00     0.11
## 7133                                   Sega     0.00     0.00     0.11
## 7134                                  Spike     0.00     0.00     0.13
## 7135                                  Spike     0.00     0.00     0.04
## 7136                     Namco Bandai Games     0.03     0.01     0.00
## 7137                     Namco Bandai Games     0.01     0.01     0.00
## 7138                                  Atari     0.07     0.05     0.00
## 7139                     Namco Bandai Games     0.05     0.01     0.00
## 7140                  Acclaim Entertainment     0.15     0.11     0.00
## 7141                  Acclaim Entertainment     0.09     0.03     0.00
## 7142                 Zoo Digital Publishing     0.06     0.00     0.00
## 7143                 Zoo Digital Publishing     0.06     0.00     0.00
## 7144                             Activision     0.10     0.03     0.00
## 7145                             Activision     0.08     0.00     0.00
## 7146           Konami Digital Entertainment     0.25     0.19     0.00
## 7147           Konami Digital Entertainment     0.14     0.04     0.00
## 7148           Konami Digital Entertainment     0.15     0.11     0.03
## 7149           Konami Digital Entertainment     0.11     0.06     0.01
## 7150           Konami Digital Entertainment     0.21     0.16     0.04
## 7151           Konami Digital Entertainment     0.22     0.08     0.00
## 7152           Konami Digital Entertainment     0.18     0.15     0.00
## 7153           Konami Digital Entertainment     0.25     0.16     0.00
## 7154           Konami Digital Entertainment     0.22     0.16     0.04
## 7155           Konami Digital Entertainment     0.03     0.03     0.00
## 7156           Konami Digital Entertainment     0.19     0.15     0.00
## 7157           Konami Digital Entertainment     0.02     0.01     0.00
## 7158                        Electronic Arts     2.04     0.04     0.00
## 7159                        Electronic Arts     0.35     0.24     0.00
## 7160                        Electronic Arts     0.26     0.21     0.00
## 7161                        Electronic Arts     0.15     0.14     0.00
## 7162                        Electronic Arts     0.10     0.01     0.00
## 7163                        Electronic Arts     0.08     0.02     0.00
## 7164                               Nintendo     0.93     0.27     0.75
## 7165                                  Maxis     0.00     0.02     0.00
## 7166                        Electronic Arts     0.37     0.03     0.04
## 7167                        Electronic Arts     0.30     0.03     0.00
## 7168            Sony Computer Entertainment     0.00     1.37     0.00
## 7169            Sony Computer Entertainment     0.45     0.58     0.00
## 7170            Sony Computer Entertainment     0.23     0.04     0.00
## 7171            Sony Computer Entertainment     0.27     0.51     0.00
## 7172            Sony Computer Entertainment     0.07     0.05     0.00
## 7173            Sony Computer Entertainment     0.11     0.00     0.00
## 7174            Sony Computer Entertainment     0.00     0.06     0.00
## 7175            Sony Computer Entertainment     0.00     0.16     0.00
## 7176            Sony Computer Entertainment     0.08     0.12     0.00
## 7177            Sony Computer Entertainment     0.11     0.26     0.00
## 7178            Sony Computer Entertainment     0.00     0.06     0.00
## 7179            Sony Computer Entertainment     0.00     0.30     0.00
## 7180     Sony Computer Entertainment Europe     0.00     0.16     0.00
## 7181     Sony Computer Entertainment Europe     0.00     0.12     0.00
## 7182                              LSP Games     0.03     0.02     0.00
## 7183                              LSP Games     0.02     0.01     0.00
## 7184                                Ubisoft     0.28     0.10     0.00
## 7185                    Brash Entertainment     0.17     0.00     0.00
## 7186                        Electronic Arts     0.62     0.04     0.00
## 7187                        Electronic Arts     0.29     0.05     0.00
## 7188                        Electronic Arts     0.82     0.17     0.01
## 7189                        Electronic Arts     0.46     0.26     0.01
## 7190                        Electronic Arts     1.46     0.98     0.00
## 7191                        Electronic Arts     0.79     0.94     0.00
## 7192                        Electronic Arts     0.51     0.04     0.00
## 7193                        Electronic Arts     0.14     0.02     0.00
## 7194                        Electronic Arts     0.90     0.61     0.00
## 7195                        Electronic Arts     0.22     0.17     0.00
## 7196            Sony Computer Entertainment     0.88     0.69     0.00
## 7197            Sony Computer Entertainment     0.00     0.05     0.00
## 7198     Sony Computer Entertainment Europe     0.35     0.13     0.00
## 7199     Sony Computer Entertainment Europe     0.16     0.06     0.00
## 7200                                  Atari     0.08     0.02     0.00
## 7201                     Namco Bandai Games     0.01     0.01     0.01
## 7202                   Take-Two Interactive     0.77     0.60     0.00
## 7203                              Rebellion     0.01     0.00     0.00
## 7204                 Zoo Digital Publishing     0.09     0.00     0.00
## 7205                 Zoo Digital Publishing     0.01     0.00     0.00
## 7206                                   Sega     0.00     0.00     0.13
## 7207                                   Sega     0.00     0.00     0.07
## 7208                             Activision     0.18     0.01     0.00
## 7209                             Activision     0.12     0.02     0.00
## 7210                                   Sega     0.96     0.61     0.01
## 7211                                   Sega     0.74     0.50     0.01
## 7212                                   Sega     0.24     0.15     0.07
## 7213                                   Sega     0.24     0.12     0.01
## 7214                                   Sega     1.54     1.14     0.00
## 7215                                   Sega     0.61     0.26     0.00
## 7216                                   Sega     0.50     0.32     0.02
## 7217                                   Sega     0.09     0.07     0.00
## 7218                                   Sega     1.34     0.62     0.00
## 7219                                   Sega     0.85     0.46     0.00
## 7220                                Ubisoft     0.92     0.44     0.07
## 7221                                Ubisoft     0.72     0.41     0.14
## 7222                     Namco Bandai Games     0.35     0.24     0.07
## 7223                     Namco Bandai Games     0.39     0.14     0.02
## 7224                  Acclaim Entertainment     0.90     0.23     0.00
## 7225                  Acclaim Entertainment     0.39     0.27     0.00
## 7226                  Acclaim Entertainment     0.20     0.13     0.00
## 7227                  Acclaim Entertainment     0.16     0.04     0.00
## 7228                  Acclaim Entertainment     0.17     0.12     0.00
## 7229                  Acclaim Entertainment     0.19     0.05     0.00
## 7230                             Activision     0.14     0.00     0.00
## 7231                             Activision     0.12     0.00     0.00
## 7232                            Square Enix     0.12     0.01     0.01
## 7233                            Square Enix     0.06     0.01     0.01
## 7234                              505 Games     0.54     0.00     0.00
## 7235                    Crave Entertainment     0.24     0.00     0.00
## 7236                                Wanadoo     0.01     0.00     0.00
## 7237                                Wanadoo     0.01     0.00     0.00
## 7238                                  Atari     0.34     0.27     0.00
## 7239                                  Atari     0.09     0.02     0.00
## 7240                     Namco Bandai Games     0.14     0.03     0.00
## 7241                     Namco Bandai Games     0.13     0.02     0.00
## 7242                                    THQ     1.12     0.58     0.00
## 7243                                    THQ     0.39     0.15     0.00
## 7244                                    THQ     0.55     0.21     0.00
## 7245                                    THQ     0.32     0.00     0.00
## 7246                                    THQ     0.25     0.07     0.00
## 7247                                    THQ     0.14     0.01     0.00
## 7248                                    THQ     0.15     0.03     0.00
## 7249                                    THQ     0.11     0.02     0.00
## 7250                           Midway Games     0.24     0.19     0.00
## 7251                           Midway Games     0.10     0.03     0.00
## 7252                  Universal Interactive     0.74     0.95     0.00
## 7253                  Universal Interactive     0.55     0.14     0.00
## 7254          Performance Designed Products     0.18     0.00     0.00
## 7255          Performance Designed Products     0.16     0.00     0.00
## 7256                            Square Enix     0.06     0.07     0.14
## 7257                            Square Enix     0.00     0.00     0.04
## 7258                     Bethesda Softworks     0.06     0.04     0.00
## 7259                     Bethesda Softworks     0.11     0.01     0.00
## 7260                                Ubisoft     0.14     0.03     0.00
## 7261                                Ubisoft     0.00     0.01     0.00
## 7262                            Global Star     0.05     0.04     0.00
## 7263                            Global Star     0.03     0.01     0.00
## 7264                                Ubisoft     0.05     0.01     0.00
## 7265                                Ubisoft     0.02     0.01     0.00
## 7266                              LucasArts     0.38     0.24     0.00
## 7267                              LucasArts     0.44     0.04     0.00
## 7268                             Activision     0.18     0.05     0.00
## 7269                             Activision     0.23     0.07     0.00
## 7270                             Activision     0.34     0.10     0.00
## 7271                             Activision     0.00     0.03     0.00
## 7272                             Activision     0.99     0.33     0.00
## 7273                              LucasArts     0.01     0.04     0.00
## 7274                              LucasArts     0.53     0.42     0.00
## 7275                              LucasArts     0.20     0.05     0.00
## 7276                              LucasArts     1.09     0.77     0.00
## 7277                              LucasArts     0.31     0.21     0.00
## 7278                             Activision     0.24     0.19     0.00
## 7279                             Activision     0.35     0.07     0.00
## 7280                             Activision     1.68     0.44     0.00
## 7281                              LucasArts     0.01     0.10     0.00
## 7282                                Ubisoft     0.11     0.01     0.00
## 7283                                Ubisoft     0.08     0.01     0.00
## 7284                             Activision     0.48     0.17     0.00
## 7285                              LucasArts     0.00     0.04     0.00
## 7286                   Take-Two Interactive     0.86     0.67     0.00
## 7287                   Take-Two Interactive     0.13     0.04     0.00
## 7288                                    5pb     0.00     0.00     0.06
## 7289                                    5pb     0.00     0.00     0.02
## 7290                           Midway Games     0.40     0.33     0.01
## 7291                           Midway Games     0.24     0.03     0.00
## 7292                     Virgin Interactive     0.38     0.12     0.51
## 7293                                 Capcom     0.11     0.04     0.00
## 7294                     Virgin Interactive     0.17     0.11     0.43
## 7295                                 Capcom     0.00     0.00     0.35
## 7296                                 Capcom     0.32     0.25     0.00
## 7297                                 Capcom     0.11     0.03     0.00
## 7298                                 Capcom     0.00     0.00     0.11
## 7299                                 Capcom     0.00     0.00     0.09
## 7300                                 Capcom     0.35     0.26     0.08
## 7301                                 Capcom     0.00     0.05     0.00
## 7302                        Kadokawa Shoten     0.00     0.00     0.02
## 7303                             CyberFront     0.00     0.00     0.02
## 7304        Midas Interactive Entertainment     0.07     0.05     0.00
## 7305                                  Atlus     0.00     0.00     0.05
## 7306                                  Atari     0.76     0.59     0.00
## 7307                                  Atari     0.03     0.01     0.00
## 7308                 Playlogic Game Factory     0.06     0.00     0.00
## 7309                 Playlogic Game Factory     0.02     0.01     0.00
## 7310                      DTP Entertainment     0.00     0.00     0.00
## 7311                      DTP Entertainment     0.02     0.01     0.00
## 7312                                  PQube     0.00     0.03     0.00
## 7313                                  PQube     0.00     0.01     0.00
## 7314                              Banpresto     0.00     0.00     0.24
## 7315                     Namco Bandai Games     0.00     0.00     0.12
## 7316                              Banpresto     0.00     0.00     0.18
## 7317                     Namco Bandai Games     0.00     0.00     0.07
## 7318                     Namco Bandai Games     0.00     0.00     0.06
## 7319                     Namco Bandai Games     0.00     0.00     0.03
## 7320                                 Jaleco     0.04     0.01     0.00
## 7321                                 Jaleco     0.01     0.00     0.00
## 7322                  Acclaim Entertainment     0.17     0.13     0.00
## 7323                                Ubisoft     0.03     0.01     0.00
## 7324                                 Capcom     0.50     0.14     0.52
## 7325                                 Capcom     0.05     0.02     0.00
## 7326                     Namco Bandai Games     0.00     0.00     0.04
## 7327                     Namco Bandai Games     0.00     0.00     0.03
## 7328                     Namco Bandai Games     0.00     0.00     0.05
## 7329                     Namco Bandai Games     0.00     0.00     0.03
## 7330                               Nintendo     6.91     2.85     1.91
## 7331                               Nintendo     5.08     3.11     1.25
## 7332                               Nintendo    29.08     3.58     6.81
## 7333                               Nintendo     3.40     1.30     0.15
## 7334                               Nintendo     9.54     3.44     3.84
## 7335                               Nintendo     2.93     1.25     0.83
## 7336                               Nintendo    12.78     3.75     3.54
## 7337                               Nintendo     3.21     1.11     0.95
## 7338                               Nintendo     1.65     0.61     1.76
## 7339                               Nintendo     1.75     0.45     0.62
## 7340                                   Sega     0.12     0.09     0.00
## 7341                                   Sega     0.11     0.03     0.00
## 7342                               XS Games     0.01     0.01     0.00
## 7343                               XS Games     0.01     0.00     0.00
## 7344                              Banpresto     0.00     0.00     0.55
## 7345                              Banpresto     0.00     0.00     0.21
## 7346                     Namco Bandai Games     0.00     0.00     0.07
## 7347                     Namco Bandai Games     0.00     0.00     0.03
## 7348                     Namco Bandai Games     0.00     0.00     0.09
## 7349                     Namco Bandai Games     0.00     0.00     0.06
## 7350                               Nintendo     3.24     1.35     2.42
## 7351                               Nintendo     2.59     1.06     0.80
## 7352                               Nintendo     0.52     0.16     1.29
## 7353                                 Capcom     0.00     0.00     0.15
## 7354                        Electronic Arts     0.23     0.02     0.00
## 7355                        Electronic Arts     0.07     0.00     0.00
## 7356                                  Atari     0.21     0.16     0.00
## 7357                                  Atari     0.06     0.02     0.00
## 7358                       Black Bean Games     0.00     0.02     0.00
## 7359                       Black Bean Games     0.00     0.01     0.00
## 7360                              505 Games     0.07     0.01     0.00
## 7361                                    THQ     0.00     0.04     0.00
## 7362                            Square Enix     0.23     0.10     0.00
## 7363                            Square Enix     0.00     0.15     0.00
## 7364                   Asylum Entertainment     0.05     0.00     0.00
## 7365                   Asylum Entertainment     0.04     0.00     0.00
## 7366                     Namco Bandai Games     0.00     0.00     0.04
## 7367                     Namco Bandai Games     0.00     0.00     0.03
## 7368                     Namco Bandai Games     0.00     0.00     0.30
## 7369                     Namco Bandai Games     0.00     0.10     0.00
## 7370                                Ubisoft     0.02     0.01     0.00
## 7371                      MC2 Entertainment     0.00     0.01     0.00
## 7372            Sony Computer Entertainment     0.26     0.01     0.00
## 7373            Sony Computer Entertainment     0.14     0.11     0.00
## 7374            Sony Computer Entertainment     0.25     0.12     0.00
## 7375            Sony Computer Entertainment     0.03     0.02     0.00
## 7376               System 3 Arcade Software     0.07     0.40     0.00
## 7377               System 3 Arcade Software     0.03     0.01     0.00
## 7378                        Milestone S.r.l     0.00     0.04     0.00
## 7379                        Milestone S.r.l     0.00     0.01     0.00
## 7380           Konami Digital Entertainment     0.06     0.01     0.00
## 7381           Konami Digital Entertainment     0.01     0.00     0.00
## 7382                        SouthPeak Games     0.05     0.00     0.00
## 7383                        SouthPeak Games     0.05     0.00     0.00
## 7384                                  Quest     0.00     0.00     0.71
## 7385                            Square Enix     0.15     0.07     0.27
## 7386                     Empire Interactive     0.06     0.04     0.00
## 7387                     Empire Interactive     0.04     0.01     0.00
## 7388                                    THQ     0.14     0.11     0.00
## 7389                                    THQ     0.15     0.00     0.00
## 7390                     Namco Bandai Games     0.00     0.00     0.22
## 7391                     Namco Bandai Games     0.00     0.00     0.11
## 7392                     Namco Bandai Games     0.09     0.06     0.83
## 7393                     Namco Bandai Games     0.00     0.00     0.52
## 7394                     Namco Bandai Games     0.00     0.00     0.80
## 7395                     Namco Bandai Games     0.00     0.00     0.12
## 7396                     Namco Bandai Games     0.15     0.13     0.09
## 7397                     Namco Bandai Games     0.00     0.00     0.24
## 7398                     Namco Bandai Games     0.00     0.00     0.59
## 7399                     Namco Bandai Games     0.00     0.00     0.07
## 7400                               Nintendo     0.54     0.21     0.31
## 7401                     Namco Bandai Games     0.21     0.13     0.13
## 7402                                  Atari     0.32     0.18     0.19
## 7403                     Namco Bandai Games     0.00     0.00     0.45
## 7404                     Namco Bandai Games     0.05     0.09     0.42
## 7405                     Namco Bandai Games     0.16     0.15     0.02
## 7406                     Namco Bandai Games     0.42     0.19     0.14
## 7407                     Namco Bandai Games     0.00     0.00     0.57
## 7408                                Ubisoft     0.33     0.00     0.00
## 7409                                Ubisoft     0.11     0.08     0.00
## 7410           Konami Digital Entertainment     0.04     0.01     0.02
## 7411           Konami Digital Entertainment     0.00     0.00     0.06
## 7412                               XS Games     0.02     0.00     0.00
## 7413                               XS Games     0.01     0.00     0.00
## 7414                                Ubisoft     0.16     0.01     0.03
## 7415                                Ubisoft     0.03     0.03     0.05
## 7416                               Nintendo     0.48     0.11     1.56
## 7417                               Nintendo     0.75     0.30     0.90
## 7418 Warner Bros. Interactive Entertainment     0.13     0.29     0.01
## 7419 Warner Bros. Interactive Entertainment     0.13     0.18     0.00
## 7420                                  Atari     0.95     0.21     0.01
## 7421                                  Atari     0.35     0.05     0.00
## 7422                                  Atari     0.11     0.09     0.00
## 7423                                  Atari     0.07     0.02     0.00
## 7424                                  Atari     0.04     0.00     0.00
## 7425                                Unknown     0.04     0.00     0.00
## 7426                               Nintendo    23.20     2.26     4.22
## 7427                               Nintendo     2.97     0.69     1.81
## 7428                               Nintendo     0.00     0.00     0.23
## 7429                               Nintendo     0.00     0.00     0.15
## 7430                               Nintendo     0.29     0.30     0.12
## 7431                               Nintendo     0.34     0.17     0.02
## 7432 Warner Bros. Interactive Entertainment     0.10     0.00     0.00
## 7433 Warner Bros. Interactive Entertainment     0.08     0.00     0.00
## 7434                                Ubisoft     0.10     0.08     0.00
## 7435                                Ubisoft     0.08     0.02     0.00
## 7436                                    THQ     0.87     0.12     0.00
## 7437                                    THQ     0.18     0.11     0.00
## 7438                                Ubisoft     0.39     0.20     0.00
## 7439                                Ubisoft     0.20     0.10     0.00
## 7440                           Nordic Games     0.00     0.06     0.00
## 7441                           Nordic Games     0.00     0.01     0.00
## 7442                                   Sega     0.15     0.10     0.00
## 7443                                   Sega     0.14     0.07     0.00
## 7444                   Take-Two Interactive     0.07     0.05     0.00
## 7445                   Take-Two Interactive     0.03     0.01     0.00
## 7446                                Unknown     0.09     0.00     0.00
## 7447                                Unknown     0.11     0.00     0.00
## 7448                   Take-Two Interactive     0.20     0.34     0.00
## 7449                   Take-Two Interactive     0.36     0.04     0.01
## 7450                                Ubisoft     0.35     0.01     0.00
## 7451                                Ubisoft     0.13     0.10     0.00
## 7452                                Ubisoft     0.11     0.08     0.00
## 7453                                Ubisoft     0.06     0.02     0.00
## 7454                                    THQ     0.33     0.25     0.00
## 7455                                    THQ     0.08     0.02     0.00
## 7456                     Namco Bandai Games     0.03     0.02     0.00
## 7457                            Deep Silver     0.02     0.00     0.00
## 7458                          Kalypso Media     0.06     0.04     0.00
## 7459                          Kalypso Media     0.06     0.01     0.00
## 7460                        Electronic Arts     0.39     0.02     0.00
## 7461                        Electronic Arts     0.00     0.00     0.01
## 7462                        Electronic Arts     0.47     0.24     0.01
## 7463                        Electronic Arts     0.41     0.22     0.01
## 7464                                Unknown     0.05     0.02     0.00
## 7465                                Unknown     0.02     0.00     0.00
## 7466                                    SCi     0.10     0.07     0.00
## 7467                                    SCi     0.05     0.01     0.00
## 7468                           Midway Games     0.13     0.03     0.00
## 7469                           Midway Games     0.04     0.00     0.00
## 7470                Gathering of Developers     0.07     0.05     0.00
## 7471                Gathering of Developers     0.05     0.02     0.00
## 7472                    Slitherine Software     0.00     0.04     0.00
## 7473                    Slitherine Software     0.08     0.04     0.00
## 7474                                    SNK     0.00     0.00     0.16
## 7475                                    SNK     0.00     0.00     0.17
## 7476                                    SNK     0.03     0.03     0.00
## 7477                           SNK Playmore     0.02     0.01     0.00
## 7478                 Ignition Entertainment     0.11     0.01     0.03
## 7479                 Ignition Entertainment     0.09     0.00     0.01
## 7480                      Rising Star Games     0.23     0.07     0.01
## 7481                      Rising Star Games     0.17     0.07     0.04
## 7482                                    THQ     0.12     0.07     0.00
## 7483                                    THQ     0.13     0.04     0.00
## 7484                            Square Enix     0.25     0.20     0.18
## 7485                            Square Enix     0.00     0.01     0.00
## 7486     Sony Computer Entertainment Europe     2.41     2.28     0.28
## 7487            Sony Computer Entertainment     1.78     1.87     0.07
## 7488                     Falcom Corporation     0.00     0.00     0.20
## 7489               Nihon Falcom Corporation     0.00     0.00     0.06
## 7490                     Falcom Corporation     0.00     0.00     0.16
## 7491                     Falcom Corporation     0.00     0.00     0.07
## 7492                     Falcom Corporation     0.00     0.00     0.06
## 7493                     Falcom Corporation     0.00     0.00     0.02
## 7494                   Nippon Ichi Software     0.08     0.05     0.14
## 7495                   Nippon Ichi Software     0.05     0.04     0.12
## 7496                   Nippon Ichi Software     0.02     0.00     0.13
## 7497                   Nippon Ichi Software     0.01     0.00     0.11
## 7498                          Vivendi Games     0.34     0.01     0.00
## 7499                          Vivendi Games     0.15     0.04     0.00
## 7500                               Nintendo     2.42     0.91     1.15
## 7501                               Nintendo     1.75     0.52     0.33
## 7502                               Nintendo     4.10     1.89     1.45
## 7503                               Nintendo     2.03     1.27     0.62
## 7504                               Nintendo     2.60     0.99     0.89
## 7505                               Nintendo     0.93     0.57     0.14
## 7506                               Nintendo     3.83     2.19     0.60
## 7507                               Nintendo     1.15     0.36     0.04
## 7508                        Electronic Arts     0.00     0.05     0.00
## 7509                        Electronic Arts     0.01     0.01     0.00
## 7510                      Black Label Games     0.59     0.46     0.00
## 7511                  Universal Interactive     0.31     0.19     0.00
## 7512                                  Atari     0.41     0.01     0.00
## 7513                                  Atari     0.23     0.07     0.00
## 7514                    Crave Entertainment     0.15     0.00     0.00
## 7515                    Crave Entertainment     0.12     0.00     0.00
## 7516                     BAM! Entertainment     0.14     0.10     0.00
## 7517                     BAM! Entertainment     0.13     0.03     0.00
## 7518                     BAM! Entertainment     0.22     0.17     0.00
## 7519                     BAM! Entertainment     0.05     0.01     0.00
## 7520                                Ubisoft     0.77     0.00     0.00
## 7521                                Ubisoft     0.46     0.00     0.00
## 7522                                Ubisoft     0.22     0.00     0.00
## 7523                                Ubisoft     0.12     0.00     0.00
## 7524                                Ubisoft     0.12     0.00     0.00
## 7525                                Ubisoft     0.11     0.00     0.00
## 7526             Disney Interactive Studios     0.41     0.17     0.00
## 7527             Disney Interactive Studios     0.29     0.13     0.00
## 7528                                    THQ     0.25     0.20     0.00
## 7529                                    THQ     0.22     0.06     0.00
## 7530                  Universal Interactive     0.11     0.09     0.00
## 7531                  Universal Interactive     0.08     0.02     0.00
## 7532                           Midway Games     0.20     0.16     0.00
## 7533                           Midway Games     0.16     0.05     0.00
## 7534                           Midway Games     0.09     0.07     0.00
## 7535                           Midway Games     0.07     0.02     0.00
## 7536                                Ubisoft     0.03     0.01     0.00
## 7537                                Ubisoft     0.03     0.01     0.00
## 7538                                  Atari     0.20     0.16     0.00
## 7539                                  Atari     0.11     0.03     0.00
## 7540                          Vivendi Games     0.22     0.17     0.00
## 7541                          Vivendi Games     0.15     0.04     0.00
## 7542                   Nippon Ichi Software     0.06     0.02     0.10
## 7543                   Nippon Ichi Software     0.02     0.01     0.05
## 7544                     Namco Bandai Games     0.25     0.56     0.00
## 7545                     Namco Bandai Games     0.48     0.36     0.02
## 7546                        Electronic Arts     2.30     0.10     0.00
## 7547                        Electronic Arts     0.03     0.02     0.03
## 7548                                Unknown     0.00     0.07     0.00
## 7549                                Unknown     0.00     0.02     0.00
## 7550                                  Atari     0.55     0.02     0.00
## 7551                                  Atari     0.18     0.00     0.00
## 7552                        Electronic Arts     0.19     0.00     0.00
## 7553                        Electronic Arts     0.13     0.00     0.00
## 7554                        Electronic Arts     0.24     0.22     0.00
## 7555                        Electronic Arts     0.29     0.18     0.00
## 7556                        Electronic Arts     0.16     0.15     0.00
## 7557                        Electronic Arts     0.21     0.13     0.00
## 7558                                Ubisoft     0.16     0.11     0.00
## 7559                                Ubisoft     0.16     0.04     0.00
## 7560             Disney Interactive Studios     0.17     0.13     0.00
## 7561             Disney Interactive Studios     0.06     0.02     0.00
## 7562                                  PlayV     0.05     0.02     0.00
## 7563                                O-Games     0.02     0.00     0.00
## 7564                              Aqua Plus     0.00     0.00     0.11
## 7565                              Aqua Plus     0.00     0.00     0.05
## 7566           Konami Digital Entertainment     0.00     0.00     0.55
## 7567           Konami Digital Entertainment     0.00     0.00     0.38
## 7568           Konami Digital Entertainment     0.00     0.00     0.09
## 7569           Konami Digital Entertainment     0.00     0.00     0.08
## 7570                            Aksys Games     0.06     0.01     0.02
## 7571                            Aksys Games     0.03     0.00     0.02
## 7572                                Ubisoft     1.40     0.02     0.02
## 7573                                Ubisoft     0.21     0.11     0.00
## 7574                Red Storm Entertainment     0.93     0.63     0.00
## 7575                Red Storm Entertainment     0.48     0.15     0.00
## 7576                                Ubisoft     0.13     0.09     0.00
## 7577                                Ubisoft     0.08     0.03     0.00
## 7578                                Ubisoft     1.20     0.63     0.04
## 7579                                Ubisoft     0.00     0.08     0.00
## 7580                      Eidos Interactive     2.30     2.46     0.20
## 7581                      Eidos Interactive     0.91     1.25     0.00
## 7582                      Eidos Interactive     1.66     1.58     0.12
## 7583                      Eidos Interactive     0.59     0.03     0.00
## 7584                      Eidos Interactive     1.15     1.14     0.06
## 7585                      Eidos Interactive     0.41     0.00     0.00
## 7586                              Prototype     0.00     0.00     0.04
## 7587                              Prototype     0.00     0.00     0.01
## 7588                             Activision     0.17     0.06     0.00
## 7589                             Activision     0.19     0.01     0.00
## 7590                             Activision     0.20     0.00     0.00
## 7591                             Activision     0.21     0.00     0.00
## 7592                                  Kemco     0.32     0.07     0.00
## 7593                                  Kemco     0.06     0.02     0.00
## 7594                              505 Games     0.06     0.00     0.00
## 7595                              505 Games     0.04     0.00     0.00
## 7596                              505 Games     0.03     0.02     0.00
## 7597                              505 Games     0.00     0.03     0.00
## 7598                 Microsoft Game Studios     0.36     0.08     0.00
## 7599                   Take-Two Interactive     0.05     0.04     0.00
## 7600                   Take-Two Interactive     0.15     0.01     0.00
## 7601                   Take-Two Interactive     0.05     0.00     0.00
## 7602                   Take-Two Interactive     0.06     0.05     0.00
## 7603                   Take-Two Interactive     0.03     0.01     0.00
## 7604                     Empire Interactive     0.05     0.04     0.00
## 7605                     Empire Interactive     0.02     0.01     0.00
## 7606                      Eidos Interactive     0.04     0.04     0.00
## 7607                      Eidos Interactive     0.02     0.01     0.00
## 7608                             Tecmo Koei     0.05     0.05     0.25
## 7609                             Tecmo Koei     0.00     0.00     0.18
## 7610                 Focus Home Interactive     0.00     0.03     0.00
## 7611                 Focus Home Interactive     0.00     0.02     0.00
## 7612                                Ubisoft     0.06     0.00     0.00
## 7613                                Ubisoft     0.05     0.00     0.00
## 7614                             Activision     0.99     0.64     0.00
## 7615                             Activision     0.71     0.20     0.00
## 7616                                  Atari     0.09     0.07     0.00
## 7617                                  Atari     0.10     0.03     0.00
## 7618                 Focus Home Interactive     0.00     0.03     0.00
## 7619                                  Atlus     0.00     0.03     0.00
## 7620                        Electronic Arts     0.79     0.54     0.00
## 7621                        Electronic Arts     0.27     0.01     0.00
## 7622                        Electronic Arts     0.43     0.33     0.00
## 7623                        Electronic Arts     0.19     0.05     0.00
## 7624                                  Atari     0.09     0.07     0.00
## 7625                                  Atari     0.07     0.02     0.00
## 7626             Disney Interactive Studios     0.04     0.02     0.00
## 7627             Disney Interactive Studios     0.04     0.01     0.00
## 7628                          Kalypso Media     0.15     0.02     0.03
## 7629                          Kalypso Media     0.00     0.04     0.00
## 7630                          Kalypso Media     0.10     0.13     0.00
## 7631                          Kalypso Media     0.20     0.13     0.00
## 7632                            Codemasters     0.23     0.04     0.00
## 7633                            Codemasters     0.21     0.01     0.00
## 7634                        Electronic Arts     0.04     0.01     0.00
## 7635                        Electronic Arts     0.01     0.00     0.00
## 7636                        Electronic Arts     0.07     0.05     0.00
## 7637                        Electronic Arts     0.04     0.01     0.00
## 7638           Konami Digital Entertainment     0.00     0.21     0.03
## 7639           Konami Digital Entertainment     0.00     0.08     0.02
## 7640                                    THQ     1.48     0.39     0.00
## 7641                                    THQ     1.07     0.45     0.01
## 7642                                    THQ     0.55     0.34     0.03
## 7643                                    THQ     0.72     0.21     0.00
## 7644             Disney Interactive Studios     0.20     0.03     0.00
## 7645             Disney Interactive Studios     0.19     0.02     0.00
## 7646                                Ubisoft     0.16     0.12     0.00
## 7647                                Ubisoft     0.06     0.02     0.00
## 7648                                  FuRyu     0.00     0.00     0.02
## 7649                                  FuRyu     0.00     0.00     0.02
## 7650                                  FuRyu     0.00     0.00     0.06
## 7651                                  FuRyu     0.00     0.00     0.04
## 7652                      Eidos Interactive     0.03     0.02     0.00
## 7653                      Eidos Interactive     0.01     0.00     0.00
## 7654                                   Sega     0.71     0.20     0.24
## 7655                                   Sega     0.06     0.04     0.05
## 7656                                   Sega     0.09     0.20     0.00
## 7657                                   Sega     0.08     0.13     0.00
## 7658                                   Sega     0.21     0.22     0.11
## 7659                                   Sega     0.19     0.17     0.03
## 7660                Gathering of Developers     0.09     0.07     0.00
## 7661                Gathering of Developers     0.06     0.02     0.00
## 7662                                 Capcom     0.38     0.10     0.12
## 7663                                 Capcom     0.14     0.11     0.00
## 7664                                 Capcom     0.17     0.04     0.00
## 7665                                 Capcom     0.10     0.08     0.00
## 7666                                 Capcom     0.08     0.00     0.00
## 7667                                 Capcom     0.04     0.01     0.00
## 7668                             Activision     0.68     0.47     0.00
## 7669                             Activision     0.25     0.06     0.00
## 7670                             Activision     0.27     0.18     0.00
## 7671                             Activision     0.09     0.02     0.00
## 7672                                   Sega     0.16     0.24     0.00
## 7673                                   Sega     0.14     0.18     0.00
## 7674                                Ubisoft     0.24     0.17     0.00
## 7675                                Ubisoft     0.12     0.15     0.00
## 7676                                Unknown     0.01     0.00     0.00
## 7677                                Unknown     0.01     0.01     0.00
## 7678                 Microsoft Game Studios     0.45     0.96     0.02
## 7679                 Microsoft Game Studios     0.00     0.02     0.00
## 7680                        Electronic Arts     0.12     0.08     0.00
## 7681                                Unknown     0.11     0.03     0.00
## 7682                        Electronic Arts     0.68     0.46     0.00
## 7683                        Electronic Arts     0.63     0.15     0.00
## 7684                                    THQ     1.42     0.36     0.03
## 7685                                    THQ     0.17     0.04     0.00
## 7686                            Deep Silver     0.00     0.01     0.00
## 7687                            Deep Silver     0.00     0.01     0.00
## 7688                             Koch Media     0.00     0.07     0.00
## 7689                             Koch Media     0.00     0.04     0.00
## 7690                   Take-Two Interactive     0.49     0.49     0.00
## 7691                   Take-Two Interactive     0.64     0.39     0.00
## 7692                                    THQ     0.17     0.13     0.00
## 7693                                    THQ     0.06     0.02     0.00
## 7694                                    THQ     1.45     1.11     0.04
## 7695                                    THQ     0.36     0.01     0.00
## 7696                  Acclaim Entertainment     1.27     0.42     0.00
## 7697                  Acclaim Entertainment     0.57     0.13     0.00
## 7698                  Acclaim Entertainment     2.47     0.76     0.00
## 7699                  Acclaim Entertainment     1.08     0.24     0.00
## 7700                      Eidos Interactive     0.27     0.01     0.00
## 7701                      Eidos Interactive     0.19     0.00     0.00
## 7702           Konami Digital Entertainment     0.06     0.05     0.00
## 7703           Konami Digital Entertainment     0.01     0.00     0.00
## 7704             Disney Interactive Studios     0.12     0.10     0.00
## 7705            Sony Computer Entertainment     0.05     0.03     0.00
## 7706 Warner Bros. Interactive Entertainment     0.17     0.15     0.00
## 7707 Warner Bros. Interactive Entertainment     0.14     0.10     0.01
## 7708                           Midway Games     0.23     0.06     0.00
## 7709                         GT Interactive     0.01     0.01     0.00
## 7710                                    THQ     0.11     0.14     0.00
## 7711                                    THQ     0.05     0.01     0.00
## 7712            Sony Computer Entertainment     0.49     0.39     0.00
## 7713            Sony Computer Entertainment     0.25     0.17     0.00
## 7714                                    3DO     0.09     0.07     0.00
## 7715                                    3DO     0.07     0.05     0.00
## 7716                             Tecmo Koei     0.06     0.05     0.07
## 7717                             Tecmo Koei     0.00     0.04     0.01
## 7718                             Gamebridge     0.18     0.08     0.22
## 7719                             Gamebridge     0.12     0.05     0.02
## 7720                           Midway Games     0.23     0.02     0.00
## 7721                         GT Interactive     0.03     0.02     0.00
## 7722                     Bethesda Softworks     0.22     0.27     0.01
## 7723                     Bethesda Softworks     0.23     0.21     0.01
## 7724                 Zoo Digital Publishing     0.07     0.00     0.00
## 7725                 Zoo Digital Publishing     0.01     0.00     0.00
## 7726                                Ubisoft     0.20     0.00     0.00
## 7727                                Ubisoft     0.18     0.00     0.00
## 7728                      Eidos Interactive     0.06     0.05     0.00
## 7729                      Eidos Interactive     0.04     0.01     0.00
## 7730                    Crave Entertainment     0.11     0.09     0.00
## 7731                          Vivendi Games     0.04     0.01     0.00
## 7732                              Aqua Plus     0.00     0.00     0.04
## 7733                              Aqua Plus     0.00     0.00     0.02
## 7734           Konami Digital Entertainment     0.02     0.01     0.00
## 7735           Konami Digital Entertainment     0.01     0.01     0.00
## 7736                                Ubisoft     0.10     0.00     0.00
## 7737                                Ubisoft     0.04     0.00     0.00
## 7738                                Ubisoft     0.00     0.04     0.00
## 7739                                Ubisoft     0.00     0.03     0.00
## 7740                                Ubisoft     0.00     0.03     0.00
## 7741                                Ubisoft     0.00     0.01     0.00
## 7742             Disney Interactive Studios     1.94     0.00     0.00
## 7743                      Eidos Interactive     0.45     0.30     0.00
## 7744                               Nintendo     0.00     0.00     0.02
## 7745                               Nintendo     0.00     0.00     0.02
## 7746        Midas Interactive Entertainment     0.14     0.11     0.00
## 7747                     Virgin Interactive     0.17     0.04     0.00
## 7748                             Tecmo Koei     0.00     0.00     0.07
## 7749                             Tecmo Koei     0.00     0.00     0.05
## 7750                            Ackkstudios     0.00     0.00     0.07
## 7751                            Ackkstudios     0.00     0.00     0.04
## 7752                             Tecmo Koei     0.00     0.00     0.05
## 7753                             Tecmo Koei     0.00     0.00     0.02
## 7754                             Tecmo Koei     0.00     0.00     0.01
## 7755                             Tecmo Koei     0.00     0.00     0.01
## 7756                             Tecmo Koei     0.00     0.00     0.02
## 7757                             Tecmo Koei     0.00     0.00     0.02
## 7758                             Tecmo Koei     0.00     0.00     0.05
## 7759                             Tecmo Koei     0.00     0.00     0.04
## 7760                             Tecmo Koei     0.00     0.00     0.02
## 7761                             Tecmo Koei     0.00     0.00     0.02
## 7762                             Tecmo Koei     0.00     0.00     0.05
## 7763                             Tecmo Koei     0.00     0.00     0.03
## 7764                     Namco Bandai Games     0.02     0.00     0.00
## 7765                     Namco Bandai Games     0.00     0.01     0.00
## 7766            Sony Computer Entertainment     0.00     0.15     0.00
## 7767            Sony Computer Entertainment     0.13     0.12     0.00
## 7768                              Mindscape     1.97     0.00     0.00
## 7769                             Activision     0.58     0.00     0.00
## 7770                                 Capcom     0.01     0.00     0.00
## 7771                                 Capcom     0.02     0.01     0.00
## 7772                  Majesco Entertainment     0.08     0.00     0.00
## 7773                  Majesco Entertainment     0.04     0.00     0.00
## 7774                     Oxygen Interactive     0.82     0.64     0.00
## 7775                     Oxygen Interactive     0.04     0.00     0.00
## 7776                                 Jaleco     0.02     0.02     0.00
## 7777                                 Jaleco     0.03     0.01     0.00
## 7778                                    3DO     0.08     0.07     0.00
## 7779                                    3DO     0.09     0.06     0.00
## 7780                                   Sega     0.17     0.05     0.00
## 7781                                   Sega     0.00     0.00     0.04
## 7782                                   Sega     0.12     0.10     0.00
## 7783                                   Sega     0.11     0.03     0.00
## 7784                                   Sega     0.00     0.10     0.00
## 7785                                   Sega     0.00     0.01     0.00
## 7786           Konami Digital Entertainment     0.16     1.89     1.12
## 7787           Konami Digital Entertainment     0.07     0.02     0.00
## 7788           Konami Digital Entertainment     0.12     2.26     0.90
## 7789           Konami Digital Entertainment     0.06     0.33     0.02
## 7790                 Microsoft Game Studios     0.00     0.03     0.00
## 7791                          Wargaming.net     0.00     0.23     0.00
## 7792            Sony Computer Entertainment     0.00     0.02     0.00
## 7793                 Microsoft Game Studios     0.00     0.02     0.00
## 7794                             Microprose     0.18     0.81     0.00
## 7795                             Infogrames     0.03     0.01     0.00
## 7796                  Acclaim Entertainment     0.05     0.04     0.00
## 7797                                   Sega     0.05     0.01     0.00
## 7798                                Ubisoft     0.04     0.01     0.00
## 7799                     Virgin Interactive     0.00     0.01     0.00
## 7800                                    THQ     0.11     0.43     0.00
## 7801                                    THQ     0.05     0.03     0.00
## 7802                                    THQ     0.04     0.26     0.00
## 7803                                    THQ     0.07     0.25     0.00
## 7804                              LucasArts     0.04     0.03     0.00
## 7805                              LucasArts     0.03     0.01     0.00
## 7806                        SouthPeak Games     0.10     0.02     0.02
## 7807                        SouthPeak Games     0.07     0.03     0.02
## 7808                                 Capcom     0.16     0.11     0.12
## 7809                                 Capcom     0.00     0.00     0.26
## 7810                  Acclaim Entertainment     0.00     0.00     0.21
## 7811                  Acclaim Entertainment     0.06     0.04     0.00
## 7812                       Arc System Works     0.03     0.00     0.01
## 7813                       Arc System Works     0.02     0.00     0.01
## 7814                  Acclaim Entertainment     0.13     0.10     0.00
## 7815                  Acclaim Entertainment     0.12     0.03     0.00
## 7816                       Arc System Works     0.02     0.00     0.00
## 7817                       Arc System Works     0.01     0.00     0.00
## 7818                               Nintendo     0.49     0.26     0.16
## 7819                               Nintendo     0.26     0.14     0.12
## 7820           Konami Digital Entertainment     0.05     0.00     0.00
## 7821           Konami Digital Entertainment     0.05     0.00     0.00
## 7822                             Tecmo Koei     0.05     0.04     0.00
## 7823                             Tecmo Koei     0.03     0.02     0.00
## 7824                                   Sega     0.03     0.02     0.74
## 7825                                   Sega     0.00     0.00     0.11
## 7826                                   Sega     0.00     0.00     0.16
## 7827                                   Sega     0.00     0.00     0.12
## 7828                                   Sega     0.00     0.00     0.25
## 7829                                   Sega     0.00     0.00     0.17
## 7830                                   Sega     0.00     0.00     0.26
## 7831                                   Sega     0.00     0.00     0.15
## 7832                 Zoo Digital Publishing     0.10     0.00     0.00
## 7833                 Zoo Digital Publishing     0.05     0.01     0.00
## 7834                                  Sting     0.05     0.00     0.04
## 7835                                  Sting     0.00     0.00     0.03
## 7836                            D3Publisher     0.10     0.03     0.00
## 7837                            D3Publisher     0.06     0.05     0.00
## 7838                                Unknown     0.11     0.09     0.00
## 7839                                Unknown     0.04     0.05     0.00
## 7840                               Nintendo     0.70     0.13     0.91
## 7841                               Nintendo     0.00     0.00     0.73
## 7842                               Nintendo     0.59     0.24     0.82
## 7843                               Nintendo     0.41     0.06     0.63
## 7844                           responDESIGN     0.07     0.02     0.00
## 7845                           responDESIGN     0.02     0.02     0.00
## 7846           Konami Digital Entertainment     0.07     0.05     0.00
## 7847           Konami Digital Entertainment     0.04     0.00     0.00
## 7848                     Namco Bandai Games     0.04     0.03     0.00
## 7849                     Namco Bandai Games     0.05     0.01     0.00
## 7850                   Take-Two Interactive     0.06     0.05     0.00
## 7851                   Take-Two Interactive     0.02     0.00     0.00
## 7852                            Aksys Games     0.04     0.00     0.01
## 7853                            Aksys Games     0.03     0.00     0.02
## 7854                                Ubisoft     0.53     0.36     0.05
## 7855                                Ubisoft     0.00     0.04     0.01
## 7856                 Rebellion Developments     0.04     0.12     0.00
## 7857                 Rebellion Developments     0.04     0.05     0.00
## 7858           Konami Digital Entertainment     0.21     0.08     0.09
## 7859           Konami Digital Entertainment     0.14     0.04     0.01
## 7860                  Majesco Entertainment     0.14     0.01     0.00
## 7861                      Eidos Interactive     0.03     0.00     0.00
## 7862                 Microsoft Game Studios     0.18     0.13     0.00
## 7863                 Microsoft Game Studios     0.02     0.07     0.00
## 7864                  Acclaim Entertainment     0.03     0.01     0.00
## 7865                  Acclaim Entertainment     0.02     0.00     0.00
## 7866                              505 Games     0.00     0.07     0.00
## 7867                              505 Games     0.00     0.06     0.00
## 7868                  Majesco Entertainment     0.14     0.11     0.00
## 7869                  Majesco Entertainment     0.17     0.05     0.00
## 7870                             Activision     0.84     0.35     0.00
## 7871                             Activision     0.65     0.41     0.00
## 7872                             Activision     0.67     0.01     0.00
## 7873                             Activision     0.42     0.00     0.00
## 7874                             Activision     0.26     0.01     0.00
## 7875                             Activision     0.08     0.01     0.00
## 7876                            Deep Silver     0.08     0.02     0.00
## 7877                            Deep Silver     0.08     0.02     0.00
## 7878                                    THQ     0.08     0.09     0.00
## 7879                                    THQ     0.01     0.01     0.00
##      Other_Sales Global_Sales
## 1           0.47         4.37
## 2           0.61         2.89
## 3           0.15         1.58
## 4           0.10         1.29
## 5           0.25         1.16
## 6           0.05         1.04
## 7           0.02         0.56
## 8           0.05         0.30
## 9           0.02         0.28
## 10          0.02         0.27
## 11          0.00         0.26
## 12          0.02         0.08
## 13          1.73         6.90
## 14          0.46         4.31
## 15          0.33         2.90
## 16          0.12         1.19
## 17          0.13         0.50
## 18          0.06         0.43
## 19          0.05         0.43
## 20          0.03         0.25
## 21          0.07         0.23
## 22          0.21         2.30
## 23          0.37         2.00
## 24          0.21         1.56
## 25          0.09         1.04
## 26          0.07         0.89
## 27          0.06         0.74
## 28          0.16         0.66
## 29          0.04         0.49
## 30          0.02         0.18
## 31          0.61         4.49
## 32          0.13         1.80
## 33          0.03         1.02
## 34          0.02         0.62
## 35          0.04         0.52
## 36          0.04         0.50
## 37          0.02         0.22
## 38          0.00         0.03
## 39          0.04         0.83
## 40          0.14         1.26
## 41          0.53         0.85
## 42          0.16         0.67
## 43          0.11         0.52
## 44          0.04         0.52
## 45          0.02         0.27
## 46          0.00         0.20
## 47          0.00         0.14
## 48          0.00         0.03
## 49          0.03         0.35
## 50          0.03         0.34
## 51          0.06         0.33
## 52          0.03         0.29
## 53          0.03         0.20
## 54          0.01         0.16
## 55          0.03         0.12
## 56          0.01         0.11
## 57          0.21         1.22
## 58          0.16         1.21
## 59          0.02         1.13
## 60          0.08         0.98
## 61          0.07         0.94
## 62          0.03         0.93
## 63          0.02         0.25
## 64          0.01         0.20
## 65          1.47         6.59
## 66          1.07         4.82
## 67          0.30         3.11
## 68          0.14         2.15
## 69          0.19         0.84
## 70          0.06         0.76
## 71          0.03         0.45
## 72          0.03         0.30
## 73          2.01         8.24
## 74          0.58         5.18
## 75          0.08         0.72
## 76          0.04         0.48
## 77          0.12         0.47
## 78          0.07         0.41
## 79          0.10         0.37
## 80          0.03         0.29
## 81          0.13         1.36
## 82          0.09         0.99
## 83          0.16         0.97
## 84          0.07         0.72
## 85          0.04         0.40
## 86          0.06         0.27
## 87          0.05         0.24
## 88          0.03         0.22
## 89          0.08         0.95
## 90          0.15         0.93
## 91          0.14         0.89
## 92          0.06         0.63
## 93          0.05         0.60
## 94          0.04         0.53
## 95          0.09         0.41
## 96          0.00         0.04
## 97          0.19         2.69
## 98          0.32         1.41
## 99          0.08         1.09
## 100         0.03         0.97
## 101         0.05         0.64
## 102         0.02         0.44
## 103         0.00         0.09
## 104         0.00         0.02
## 105         0.10         0.60
## 106         0.10         0.54
## 107         0.04         0.50
## 108         0.02         0.27
## 109         0.02         0.24
## 110         0.02         0.23
## 111         0.05         0.21
## 112         0.01         0.05
## 113         0.08         0.95
## 114         0.15         0.92
## 115         0.13         0.81
## 116         0.11         0.49
## 117         0.04         0.47
## 118         0.04         0.45
## 119         0.04         0.43
## 120         0.01         0.06
## 121         0.35         2.57
## 122         0.18         2.37
## 123         0.08         0.97
## 124         0.07         0.89
## 125         0.07         0.71
## 126         0.01         0.29
## 127         0.02         0.27
## 128         0.00         0.08
## 129         0.10         2.39
## 130         0.20         1.92
## 131         0.05         1.51
## 132         0.06         0.60
## 133         0.05         0.43
## 134         0.04         0.36
## 135         0.03         0.28
## 136         0.00         0.21
## 137         0.06         0.72
## 138         0.07         0.49
## 139         0.02         0.15
## 140         0.00         0.11
## 141         0.00         0.08
## 142         0.01         0.06
## 143         0.00         0.04
## 144         0.00         0.03
## 145         0.11         1.32
## 146         0.18         1.01
## 147         0.05         0.69
## 148         0.11         0.67
## 149         0.06         0.66
## 150         0.04         0.51
## 151         0.09         0.41
## 152         0.01         0.06
## 153         1.42         6.69
## 154         0.53         4.19
## 155         0.11         0.79
## 156         0.14         0.53
## 157         0.10         0.47
## 158         0.05         0.39
## 159         0.06         0.09
## 160         2.46         3.14
## 161         0.32         1.76
## 162         0.39         1.35
## 163         0.14         1.35
## 164         0.11         1.02
## 165         0.11         0.85
## 166         0.00         0.02
## 167         0.52         3.63
## 168         0.23         2.62
## 169         1.23         1.70
## 170         0.32         1.16
## 171         0.11         0.99
## 172         0.07         0.59
## 173         0.01         0.05
## 174         1.13         5.08
## 175         0.40         3.53
## 176         0.37         1.21
## 177         0.12         1.08
## 178         0.36         0.76
## 179         0.09         0.72
## 180         0.04         0.18
## 181         0.09         0.77
## 182         0.44         0.64
## 183         0.07         0.63
## 184         0.12         0.51
## 185         0.06         0.34
## 186         0.03         0.32
## 187         0.01         0.03
## 188         0.10         0.85
## 189         0.04         0.49
## 190         0.10         0.37
## 191         0.02         0.30
## 192         0.03         0.27
## 193         0.03         0.25
## 194         0.01         0.04
## 195         0.22         3.73
## 196         0.07         1.73
## 197         0.08         1.69
## 198         0.04         0.28
## 199         0.00         0.08
## 200         0.00         0.07
## 201         0.01         0.06
## 202         0.15         1.68
## 203         0.11         1.46
## 204         0.20         1.22
## 205         0.06         0.77
## 206         0.06         0.74
## 207         0.06         0.37
## 208         0.01         0.13
## 209         0.32         3.38
## 210         0.29         3.17
## 211         0.29         3.15
## 212         0.19         1.32
## 213         0.28         1.32
## 214         0.52         1.27
## 215         0.01         0.06
## 216         0.36         3.78
## 217         0.22         2.39
## 218         0.21         2.23
## 219         0.76         1.37
## 220         0.29         1.18
## 221         0.18         1.06
## 222         0.01         0.04
## 223         0.10         0.64
## 224         0.03         0.34
## 225         0.03         0.32
## 226         0.05         0.32
## 227         0.02         0.23
## 228         0.05         0.23
## 229         0.01         0.18
## 230         0.16         1.64
## 231         0.10         1.07
## 232         0.17         0.99
## 233         0.10         0.96
## 234         0.06         0.62
## 235         0.08         0.34
## 236         0.00         0.03
## 237         0.17         1.91
## 238         0.13         1.51
## 239         0.20         1.20
## 240         0.11         1.16
## 241         0.09         1.13
## 242         0.09         0.39
## 243         0.03         0.26
## 244         0.11         1.26
## 245         0.21         1.10
## 246         0.08         0.97
## 247         0.03         0.39
## 248         0.07         0.33
## 249         0.03         0.22
## 250         0.02         0.16
## 251         0.08         0.54
## 252         0.02         0.24
## 253         0.02         0.12
## 254         0.01         0.11
## 255         0.02         0.09
## 256         0.01         0.09
## 257         0.00         0.07
## 258         0.66         4.91
## 259         0.08         1.86
## 260         0.06         0.75
## 261         0.02         0.57
## 262         0.00         0.23
## 263         0.01         0.12
## 264         0.03         0.59
## 265         0.03         0.45
## 266         0.02         0.20
## 267         0.01         0.16
## 268         0.01         0.10
## 269         0.01         0.08
## 270         0.00         0.05
## 271         0.01         0.05
## 272         0.05         2.05
## 273         0.03         1.39
## 274         0.03         0.43
## 275         0.05         0.41
## 276         0.03         0.40
## 277         0.06         0.40
## 278         0.00         0.14
## 279         0.39         2.08
## 280         0.18         1.69
## 281         0.93         1.40
## 282         0.19         0.77
## 283         0.07         0.67
## 284         0.02         0.23
## 285         0.01         0.08
## 286         0.18         1.66
## 287         0.01         1.34
## 288         0.15         1.29
## 289         0.21         1.26
## 290         0.02         0.47
## 291         0.01         0.35
## 292         0.01         0.05
## 293         1.68         2.41
## 294         0.22         2.06
## 295         0.37         2.05
## 296         0.12         1.11
## 297         0.20         0.78
## 298         0.01         0.13
## 299         0.01         0.04
## 300         0.33         2.19
## 301         0.07         0.57
## 302         0.07         0.50
## 303         0.02         0.21
## 304         0.02         0.09
## 305         0.00         0.06
## 306         0.00         0.03
## 307         0.20         2.34
## 308         0.11         1.33
## 309         0.20         1.07
## 310         0.06         0.60
## 311         0.05         0.37
## 312         0.02         0.31
## 313         0.02         0.24
## 314         0.04         0.48
## 315         0.04         0.46
## 316         0.06         0.39
## 317         0.05         0.30
## 318         0.02         0.26
## 319         0.02         0.23
## 320         0.01         0.11
## 321         0.08         1.05
## 322         0.08         0.93
## 323         0.06         0.70
## 324         0.12         0.69
## 325         0.07         0.43
## 326         0.03         0.34
## 327         0.02         0.26
## 328         0.12         0.90
## 329         0.12         0.68
## 330         0.04         0.57
## 331         0.04         0.48
## 332         0.04         0.47
## 333         0.06         0.30
## 334         0.00         0.02
## 335         0.08         0.82
## 336         0.07         0.46
## 337         0.08         0.42
## 338         0.04         0.41
## 339         0.04         0.40
## 340         0.08         0.25
## 341         0.00         0.03
## 342         0.04         0.29
## 343         0.02         0.28
## 344         0.01         0.17
## 345         0.03         0.11
## 346         0.01         0.10
## 347         0.00         0.04
## 348         0.00         0.01
## 349         0.09         0.55
## 350         0.05         0.29
## 351         0.02         0.26
## 352         0.02         0.21
## 353         0.00         0.06
## 354         0.00         0.06
## 355         0.00         0.01
## 356         0.33         1.38
## 357         0.07         0.96
## 358         0.11         0.81
## 359         0.01         0.39
## 360         0.01         0.33
## 361         0.05         0.30
## 362         0.01         0.25
## 363         0.06         0.52
## 364         0.12         0.46
## 365         0.03         0.39
## 366         0.00         0.13
## 367         0.00         0.08
## 368         0.01         0.07
## 369         0.00         0.02
## 370         0.17         1.46
## 371         0.11         1.02
## 372         0.54         0.75
## 373         0.14         0.65
## 374         0.07         0.62
## 375         0.08         0.40
## 376         0.00         0.02
## 377         0.14         1.49
## 378         0.20         1.16
## 379         0.07         0.67
## 380         0.26         0.43
## 381         0.01         0.14
## 382         0.00         0.03
## 383         0.02         0.10
## 384         0.01         0.09
## 385         0.01         0.09
## 386         0.01         0.07
## 387         0.00         0.05
## 388         0.00         0.05
## 389         0.73         3.89
## 390         0.29         3.34
## 391         0.31         2.74
## 392         0.19         2.21
## 393         0.10         0.69
## 394         0.03         0.29
## 395         0.16         0.91
## 396         0.08         0.78
## 397         0.08         0.73
## 398         0.14         0.60
## 399         0.04         0.41
## 400         0.01         0.05
## 401         0.01         0.14
## 402         0.01         0.13
## 403         0.01         0.13
## 404         0.01         0.10
## 405         0.01         0.09
## 406         0.01         0.05
## 407         0.03         0.32
## 408         0.02         0.29
## 409         0.04         0.25
## 410         0.05         0.24
## 411         0.04         0.22
## 412         0.02         0.18
## 413         0.03         0.45
## 414         0.05         0.40
## 415         0.03         0.39
## 416         0.02         0.21
## 417         0.03         0.19
## 418         0.01         0.12
## 419         0.82        10.21
## 420         1.38         9.59
## 421         0.38         3.63
## 422         0.22         2.86
## 423         0.09         0.73
## 424         0.03         0.36
## 425         0.12         1.32
## 426         0.10         0.95
## 427         0.09         0.54
## 428         0.05         0.50
## 429         0.02         0.23
## 430         0.01         0.12
## 431         0.09         0.99
## 432         0.04         0.48
## 433         0.17         0.47
## 434         0.06         0.41
## 435         0.02         0.19
## 436         0.01         0.15
## 437         0.14         0.86
## 438         0.07         0.80
## 439         0.04         0.22
## 440         0.01         0.16
## 441         0.03         0.16
## 442         0.01         0.06
## 443         0.20         1.01
## 444         0.09         0.81
## 445         0.04         0.38
## 446         0.09         0.33
## 447         0.01         0.12
## 448         0.01         0.05
## 449         0.14         1.73
## 450         0.11         1.43
## 451         0.16         1.00
## 452         0.05         0.60
## 453         0.02         0.29
## 454         0.02         0.07
## 455         0.10         1.12
## 456         0.17         1.02
## 457         0.06         0.65
## 458         0.10         0.60
## 459         0.03         0.42
## 460         0.03         0.14
## 461         0.89         4.11
## 462         0.32         1.21
## 463         0.04         0.54
## 464         0.02         0.28
## 465         0.00         0.18
## 466         0.00         0.06
## 467         0.43         2.59
## 468         1.82         2.28
## 469         0.18         1.94
## 470         0.37         1.35
## 471         0.06         0.49
## 472         0.00         0.02
## 473         0.08         0.57
## 474         0.00         0.48
## 475         0.01         0.24
## 476         0.00         0.13
## 477         0.01         0.11
## 478         0.00         0.04
## 479         0.06         0.56
## 480         0.05         0.44
## 481         0.05         0.36
## 482         0.14         0.27
## 483         0.03         0.22
## 484         0.01         0.17
## 485         0.02         0.24
## 486         0.02         0.22
## 487         0.03         0.21
## 488         0.03         0.14
## 489         0.02         0.14
## 490         0.01         0.14
## 491         0.08         0.88
## 492         0.15         0.86
## 493         0.06         0.63
## 494         0.24         0.43
## 495         0.04         0.41
## 496         0.02         0.18
## 497         0.44         2.61
## 498         0.09         1.99
## 499         0.12         1.98
## 500         0.02         0.69
## 501         0.01         0.36
## 502         0.00         0.01
## 503         0.09         0.65
## 504         0.01         0.61
## 505         0.01         0.42
## 506         0.02         0.24
## 507         0.01         0.23
## 508         0.02         0.20
## 509         0.05         0.39
## 510         0.00         0.25
## 511         0.01         0.19
## 512         0.01         0.15
## 513         0.00         0.10
## 514         0.01         0.08
## 515         0.04         0.39
## 516         0.03         0.28
## 517         0.02         0.19
## 518         0.02         0.17
## 519         0.01         0.13
## 520         0.00         0.02
## 521         0.11         0.68
## 522         0.09         0.63
## 523         0.06         0.59
## 524         0.06         0.57
## 525         0.19         0.54
## 526         0.05         0.52
## 527         0.07         0.63
## 528         0.05         0.39
## 529         0.11         0.37
## 530         0.03         0.26
## 531         0.02         0.24
## 532         0.00         0.01
## 533         0.32         3.76
## 534         0.07         0.98
## 535         0.05         0.61
## 536         0.04         0.45
## 537         0.07         0.39
## 538         0.05         0.39
## 539         0.20         2.28
## 540         0.07         0.75
## 541         0.06         0.63
## 542         0.05         0.53
## 543         0.06         0.38
## 544         0.05         0.28
## 545         0.10         1.20
## 546         0.05         0.58
## 547         0.03         0.36
## 548         0.06         0.35
## 549         0.03         0.32
## 550         0.04         0.22
## 551         0.29         3.05
## 552         0.14         1.26
## 553         0.09         0.92
## 554         0.41         0.65
## 555         0.09         0.52
## 556         0.00         0.02
## 557         0.23         2.49
## 558         0.23         2.35
## 559         0.14         1.59
## 560         0.22         1.37
## 561         0.19         0.71
## 562         0.00         0.02
## 563         0.13         1.43
## 564         0.12         1.21
## 565         0.09         1.04
## 566         0.13         0.91
## 567         0.14         0.59
## 568         0.01         0.05
## 569         0.06         0.69
## 570         0.12         0.65
## 571         0.05         0.46
## 572         0.05         0.38
## 573         0.03         0.34
## 574         0.01         0.12
## 575         0.07         0.75
## 576         0.05         0.56
## 577         0.26         0.38
## 578         0.03         0.25
## 579         0.04         0.23
## 580         0.00         0.01
## 581         0.20         2.54
## 582         0.18         1.89
## 583         0.27         1.49
## 584         0.06         0.71
## 585         0.03         0.33
## 586         0.01         0.18
## 587         0.17         2.86
## 588         0.22         2.56
## 589         0.03         0.54
## 590         0.03         0.32
## 591         0.02         0.24
## 592         0.00         0.01
## 593         0.42         3.08
## 594         0.09         1.39
## 595         0.02         0.61
## 596         0.00         0.43
## 597         0.01         0.32
## 598         0.03         0.58
## 599         0.04         0.51
## 600         0.02         0.27
## 601         0.03         0.23
## 602         0.01         0.18
## 603         0.01         0.15
## 604         0.00         0.07
## 605         0.03         0.50
## 606         0.01         0.19
## 607         0.01         0.16
## 608         0.01         0.09
## 609         0.01         0.08
## 610         0.00         0.04
## 611         0.19         2.50
## 612         0.11         0.82
## 613         0.03         0.41
## 614         0.04         0.39
## 615         0.03         0.37
## 616         0.00         0.01
## 617         0.08         0.91
## 618         0.09         0.75
## 619         0.16         0.41
## 620         0.03         0.33
## 621         0.04         0.25
## 622         0.02         0.20
## 623         0.39         4.42
## 624         0.07         0.88
## 625         0.08         0.54
## 626         0.02         0.26
## 627         0.02         0.16
## 628         0.02         0.11
## 629         0.77         9.20
## 630         0.94         5.42
## 631         0.65         4.02
## 632         0.22         2.41
## 633         0.32         2.25
## 634         0.03         0.43
## 635         0.05         0.51
## 636         0.03         0.31
## 637         0.03         0.26
## 638         0.08         0.19
## 639         0.01         0.17
## 640         0.00         0.03
## 641         0.13         2.09
## 642         0.16         1.80
## 643         0.03         0.51
## 644         0.03         0.42
## 645         0.06         0.41
## 646         0.01         0.19
## 647         1.09         6.90
## 648         0.10         2.28
## 649         0.03         1.14
## 650         0.01         0.43
## 651         0.01         0.14
## 652         0.01         0.08
## 653         0.00         0.17
## 654         0.01         0.14
## 655         0.01         0.11
## 656         0.01         0.08
## 657         0.01         0.07
## 658         0.00         0.03
## 659         0.31         2.04
## 660         0.02         0.53
## 661         0.02         0.26
## 662         0.01         0.24
## 663         0.02         0.19
## 664         0.01         0.13
## 665         0.15         0.74
## 666         0.04         0.46
## 667         0.10         0.43
## 668         0.05         0.42
## 669         0.03         0.35
## 670         0.03         0.34
## 671         0.13         0.70
## 672         0.06         0.62
## 673         0.10         0.37
## 674         0.02         0.25
## 675         0.01         0.16
## 676         0.00         0.03
## 677         2.93         3.63
## 678         0.13         1.59
## 679         0.15         1.19
## 680         0.05         1.07
## 681         0.25         0.98
## 682         0.00         0.01
## 683         0.26         2.28
## 684         1.16         1.57
## 685         0.08         0.81
## 686         0.18         0.80
## 687         0.05         0.51
## 688         0.00         0.01
## 689         0.25         1.56
## 690         0.03         0.31
## 691         0.03         0.28
## 692         0.01         0.18
## 693         0.00         0.10
## 694         0.01         0.09
## 695         0.03         0.40
## 696         0.02         0.31
## 697         0.03         0.27
## 698         0.01         0.10
## 699         0.01         0.08
## 700         0.01         0.07
## 701         0.18         1.01
## 702         0.06         0.68
## 703         0.14         0.66
## 704         0.04         0.46
## 705         0.03         0.34
## 706         0.05         0.21
## 707         0.18         1.03
## 708         0.08         0.79
## 709         0.11         0.59
## 710         0.07         0.58
## 711         0.01         0.15
## 712         0.01         0.08
## 713         0.01         0.07
## 714         0.01         0.06
## 715         0.00         0.05
## 716         0.01         0.04
## 717         0.00         0.02
## 718         0.00         0.01
## 719         0.06         0.63
## 720         0.11         0.54
## 721         0.05         0.53
## 722         0.11         0.48
## 723         0.02         0.29
## 724         0.00         0.01
## 725         0.43         3.41
## 726         0.04         1.12
## 727         0.02         1.06
## 728         0.02         0.84
## 729         0.14         0.71
## 730         0.04         0.50
## 731         0.04         0.47
## 732         0.05         0.37
## 733         0.02         0.30
## 734         0.01         0.18
## 735         0.01         0.15
## 736         0.00         0.01
## 737         0.03         0.41
## 738         0.03         0.27
## 739         0.02         0.25
## 740         0.03         0.21
## 741         0.01         0.10
## 742         0.00         0.02
## 743         0.26         2.80
## 744         0.37         2.28
## 745         0.19         1.91
## 746         0.75         1.25
## 747         0.25         1.09
## 748         0.09         0.90
## 749         0.04         4.17
## 750         0.02         0.93
## 751         0.12         0.92
## 752         0.01         0.34
## 753         0.01         0.30
## 754         0.00         0.01
## 755         0.14         0.83
## 756         0.06         0.75
## 757         0.01         0.21
## 758         0.01         0.19
## 759         0.01         0.16
## 760         0.01         0.09
## 761         0.02         0.29
## 762         0.02         0.21
## 763         0.03         0.20
## 764         0.01         0.13
## 765         0.01         0.10
## 766         0.00         0.05
## 767         0.06         0.60
## 768         0.39         0.52
## 769         0.04         0.46
## 770         0.05         0.29
## 771         0.10         0.38
## 772         0.07         0.60
## 773         0.01         0.56
## 774         0.05         0.38
## 775         0.02         0.31
## 776         0.03         0.27
## 777         0.02         0.27
## 778         0.02         0.24
## 779         0.01         0.40
## 780         0.05         0.36
## 781         0.00         0.16
## 782         0.01         0.15
## 783         0.00         0.09
## 784         0.00         0.02
## 785         0.17         1.53
## 786         1.13         1.51
## 787         0.31         1.09
## 788         0.11         1.05
## 789         0.11         1.03
## 790         0.15         0.91
## 791         0.22         2.09
## 792         0.22         0.80
## 793         0.04         0.48
## 794         0.27         0.30
## 795         0.01         0.27
## 796         0.01         0.04
## 797         0.71         8.11
## 798         0.20         2.33
## 799         0.34         2.06
## 800         0.15         1.49
## 801         0.07         0.76
## 802         0.06         0.70
## 803         0.11         0.79
## 804         0.05         0.75
## 805         0.08         0.45
## 806         0.03         0.18
## 807         0.01         0.16
## 808         0.01         0.03
## 809         0.10         0.72
## 810         0.07         0.50
## 811         0.04         0.48
## 812         0.04         0.27
## 813         0.01         0.19
## 814         0.04         0.47
## 815         0.08         1.03
## 816         0.14         0.74
## 817         0.04         0.54
## 818         0.05         0.39
## 819         0.09         0.38
## 820         0.00         0.06
## 821         0.22         1.27
## 822         0.11         1.08
## 823         0.06         0.48
## 824         0.02         0.20
## 825         0.05         0.18
## 826         0.02         0.08
## 827         0.46         4.41
## 828         0.07         1.67
## 829         0.02         0.82
## 830         0.02         0.55
## 831         0.01         0.52
## 832         0.00         0.08
## 833         0.12         0.70
## 834         0.06         0.63
## 835         0.05         0.49
## 836         0.22         0.49
## 837         0.09         0.41
## 838         0.00         0.02
## 839         0.00         0.03
## 840         0.00         0.03
## 841         0.00         0.02
## 842         0.00         0.02
## 843         0.00         0.02
## 844         0.00         0.01
## 845         0.07         0.65
## 846         0.06         0.57
## 847         0.24         0.48
## 848         0.07         0.41
## 849         0.03         0.29
## 850         0.03         0.25
## 851         0.07         0.42
## 852         0.03         0.35
## 853         0.02         0.23
## 854         0.02         0.20
## 855         0.03         0.19
## 856         0.01         0.11
## 857         1.41         2.34
## 858         0.13         1.44
## 859         0.21         1.33
## 860         0.28         1.19
## 861         0.11         0.99
## 862         0.01         0.12
## 863         0.55         1.24
## 864         0.13         0.95
## 865         0.08         0.92
## 866         0.08         0.83
## 867         0.14         0.75
## 868         0.01         0.19
## 869         0.20         1.18
## 870         0.54         1.07
## 871         0.11         1.05
## 872         0.07         0.75
## 873         0.14         0.62
## 874         0.05         0.54
## 875         0.01         0.62
## 876         0.01         0.16
## 877         0.02         0.15
## 878         0.00         0.11
## 879         0.00         0.07
## 880         0.00         0.04
## 881         0.77         4.14
## 882         0.37         1.93
## 883         0.13         1.55
## 884         0.11         1.28
## 885         0.05         0.45
## 886         0.01         0.14
## 887         0.05         0.41
## 888         0.01         0.17
## 889         0.00         0.15
## 890         0.01         0.11
## 891         0.00         0.10
## 892         0.00         0.07
## 893         0.03         0.40
## 894         0.01         0.22
## 895         0.01         0.20
## 896         0.01         0.18
## 897         0.01         0.07
## 898         0.00         0.02
## 899         0.41         2.42
## 900         0.16         0.79
## 901         0.07         0.61
## 902         0.11         0.41
## 903         0.02         0.23
## 904         0.01         0.06
## 905         0.19         1.13
## 906         0.04         0.50
## 907         0.07         0.37
## 908         0.03         0.30
## 909         0.01         0.15
## 910         0.03         0.17
## 911         0.01         0.09
## 912         0.00         0.06
## 913         0.00         0.03
## 914         0.00         0.02
## 915         0.03         0.49
## 916         0.01         0.17
## 917         0.02         0.17
## 918         0.03         0.15
## 919         0.01         0.15
## 920         0.09         1.39
## 921         0.05         0.68
## 922         0.05         0.43
## 923         0.02         0.24
## 924         0.02         0.24
## 925         0.09         0.99
## 926         0.07         0.80
## 927         0.11         0.75
## 928         0.05         0.45
## 929         0.20         0.41
## 930         0.61         3.69
## 931         0.29         3.53
## 932         0.38         3.43
## 933         0.16         1.98
## 934         0.16         1.40
## 935         0.32         2.09
## 936         0.11         1.20
## 937         0.07         0.49
## 938         0.03         0.34
## 939         0.01         0.14
## 940         0.04         0.44
## 941         0.04         0.42
## 942         0.11         0.42
## 943         0.15         0.29
## 944         0.02         0.22
## 945         0.06         0.85
## 946         0.10         0.67
## 947         0.03         0.42
## 948         0.00         0.08
## 949         0.00         0.02
## 950         0.06         0.62
## 951         0.06         0.57
## 952         0.16         0.26
## 953         0.02         0.25
## 954         0.02         0.19
## 955         0.01         0.20
## 956         0.01         0.11
## 957         0.01         0.11
## 958         0.01         0.09
## 959         0.01         0.08
## 960         1.37         7.60
## 961         0.38         5.13
## 962         0.77         4.45
## 963         0.37         4.31
## 964         0.04         0.41
## 965         1.13        14.64
## 966         1.83        12.73
## 967         0.24         1.63
## 968         0.12         1.40
## 969         0.04         0.63
## 970         2.31        14.24
## 971         0.67         7.30
## 972         0.27         1.79
## 973         0.16         1.76
## 974         0.01         0.23
## 975         0.69         7.37
## 976         0.84         5.43
## 977         0.19         1.97
## 978         0.08         0.91
## 979         0.03         0.19
## 980         0.00         0.05
## 981         0.00         0.06
## 982         0.03         0.20
## 983         0.01         0.18
## 984         0.01         0.08
## 985         0.02         0.22
## 986         0.01         0.13
## 987         0.01         0.10
## 988         0.01         0.09
## 989         0.01         0.08
## 990         0.15         0.64
## 991         0.04         0.49
## 992         0.04         0.46
## 993         0.06         0.41
## 994         0.03         0.32
## 995         0.06         0.50
## 996         0.05         0.48
## 997         0.03         0.45
## 998         0.12         0.45
## 999         0.03         0.42
## 1000        0.17         1.32
## 1001        0.06         0.76
## 1002        0.08         0.59
## 1003        0.02         0.22
## 1004        0.02         0.18
## 1005        0.07         0.65
## 1006        0.04         0.33
## 1007        0.02         0.32
## 1008        0.02         0.10
## 1009        0.01         0.08
## 1010        0.62         5.20
## 1011        0.35         2.05
## 1012        0.30         1.74
## 1013        0.12         1.45
## 1014        0.05         0.64
## 1015        0.14         1.73
## 1016        0.25         1.55
## 1017        0.06         0.51
## 1018        0.06         0.37
## 1019        0.01         0.14
## 1020        0.11         0.68
## 1021        0.08         0.47
## 1022        0.04         0.44
## 1023        0.04         0.44
## 1024        0.03         0.31
## 1025        0.32         1.97
## 1026        0.07         0.91
## 1027        0.07         0.73
## 1028        0.10         0.65
## 1029        0.05         0.55
## 1030        0.01         0.15
## 1031        0.01         0.13
## 1032        0.01         0.12
## 1033        0.02         0.12
## 1034        0.00         0.06
## 1035        0.25         1.22
## 1036        0.09         0.73
## 1037        0.04         0.19
## 1038        0.02         0.16
## 1039        0.03         0.15
## 1040        1.26         8.49
## 1041        0.23         3.23
## 1042        0.42         2.85
## 1043        0.13         1.69
## 1044        0.01         0.18
## 1045        0.69         4.77
## 1046        0.10         1.53
## 1047        0.05         0.38
## 1048        0.01         0.18
## 1049        0.00         0.05
## 1050        0.84         4.21
## 1051        0.01         0.68
## 1052        0.01         0.11
## 1053        0.00         0.07
## 1054        0.00         0.06
## 1055        0.25         1.29
## 1056        0.10         0.92
## 1057        0.04         0.31
## 1058        0.00         0.10
## 1059        0.00         0.06
## 1060        0.04         0.37
## 1061        0.03         0.15
## 1062        0.00         0.11
## 1063        0.00         0.08
## 1064        0.00         0.04
## 1065        0.05         0.39
## 1066        0.02         0.15
## 1067        0.01         0.12
## 1068        0.00         0.05
## 1069        0.00         0.05
## 1070        0.69         4.03
## 1071        0.13         1.61
## 1072        0.23         1.44
## 1073        0.08         0.98
## 1074        0.05         0.62
## 1075        0.13         1.23
## 1076        0.07         0.46
## 1077        0.04         0.41
## 1078        0.05         0.35
## 1079        0.02         0.19
## 1080        0.26         1.67
## 1081        0.10         1.56
## 1082        0.10         1.47
## 1083        0.05         0.52
## 1084        0.01         0.33
## 1085        0.01         0.10
## 1086        0.01         0.09
## 1087        0.01         0.07
## 1088        0.01         0.07
## 1089        0.00         0.06
## 1090        4.14        21.40
## 1091        1.38        16.38
## 1092        2.02        11.98
## 1093        0.41         5.08
## 1094        0.08         1.08
## 1095        0.03         0.17
## 1096        0.01         0.13
## 1097        0.01         0.13
## 1098        0.01         0.11
## 1099        0.01         0.10
## 1100        1.48         4.98
## 1101        0.44         4.62
## 1102        0.42         4.53
## 1103        0.30         2.26
## 1104        0.00         0.01
## 1105        0.13         0.81
## 1106        0.05         0.51
## 1107        0.05         0.28
## 1108        0.02         0.24
## 1109        0.02         0.18
## 1110        0.35         3.65
## 1111        0.25         2.67
## 1112        0.27         1.93
## 1113        0.77         1.80
## 1114        0.01         0.03
## 1115        0.01         0.09
## 1116        0.01         0.10
## 1117        0.01         0.10
## 1118        0.01         0.12
## 1119        0.01         0.11
## 1120        0.05         0.55
## 1121        0.04         0.46
## 1122        0.04         0.42
## 1123        0.08         0.42
## 1124        0.01         0.10
## 1125        0.03         0.35
## 1126        0.03         0.34
## 1127        0.05         0.34
## 1128        0.02         0.24
## 1129        0.01         0.10
## 1130        0.13         1.02
## 1131        0.01         0.52
## 1132        0.01         0.38
## 1133        0.01         0.19
## 1134        0.01         0.04
## 1135        0.02         0.27
## 1136        0.02         0.25
## 1137        0.02         0.20
## 1138        0.02         0.13
## 1139        0.01         0.09
## 1140        0.11         1.41
## 1141        0.23         1.25
## 1142        0.12         0.87
## 1143        0.02         0.20
## 1144        0.02         0.14
## 1145        0.07         0.40
## 1146        0.07         0.38
## 1147        0.03         0.34
## 1148        0.03         0.33
## 1149        0.03         0.27
## 1150        0.05         0.71
## 1151        0.03         0.59
## 1152        0.06         0.48
## 1153        0.01         0.19
## 1154        0.00         0.10
## 1155        0.04         0.45
## 1156        0.04         0.35
## 1157        0.01         0.12
## 1158        0.01         0.11
## 1159        0.00         0.09
## 1160        0.10         0.64
## 1161        0.05         0.56
## 1162        0.09         0.54
## 1163        0.05         0.51
## 1164        0.03         0.37
## 1165        0.41         3.53
## 1166        0.04         1.41
## 1167        0.05         1.16
## 1168        0.02         1.14
## 1169        0.00         0.02
## 1170        0.07         1.31
## 1171        0.03         0.89
## 1172        0.02         0.66
## 1173        0.03         0.31
## 1174        0.01         0.28
## 1175        0.22         2.83
## 1176        0.21         2.37
## 1177        0.10         0.98
## 1178        0.06         0.73
## 1179        0.08         0.66
## 1180        0.18         2.69
## 1181        0.19         2.38
## 1182        0.07         0.50
## 1183        0.03         0.37
## 1184        0.05         0.74
## 1185        0.08         4.53
## 1186        0.08         1.72
## 1187        0.02         0.70
## 1188        0.01         0.39
## 1189        0.02         0.26
## 1190        0.06         0.44
## 1191        0.03         0.37
## 1192        0.01         0.33
## 1193        0.00         0.17
## 1194        0.01         0.12
## 1195        0.05         0.61
## 1196        0.00         0.03
## 1197        0.02         0.31
## 1198        0.02         0.15
## 1199        0.01         0.14
## 1200        0.05         0.61
## 1201        0.02         0.27
## 1202        0.01         0.17
## 1203        0.02         0.17
## 1204        0.01         0.08
## 1205        0.10         0.77
## 1206        0.01         0.38
## 1207        0.03         0.32
## 1208        0.01         0.28
## 1209        0.01         0.08
## 1210        0.02         0.28
## 1211        0.02         0.22
## 1212        0.02         0.18
## 1213        0.01         0.15
## 1214        0.01         0.10
## 1215        0.47         3.38
## 1216        0.06         0.71
## 1217        0.08         0.70
## 1218        0.02         0.21
## 1219        0.00         0.08
## 1220        0.12         0.68
## 1221        0.08         0.44
## 1222        0.03         0.36
## 1223        0.03         0.31
## 1224        0.02         0.19
## 1225        0.53         2.99
## 1226        0.10         1.32
## 1227        0.10         0.64
## 1228        0.05         0.54
## 1229        0.04         0.36
## 1230        0.08         0.91
## 1231        0.11         0.69
## 1232        0.11         0.67
## 1233        0.05         0.54
## 1234        0.01         0.08
## 1235        0.04         0.37
## 1236        0.06         0.35
## 1237        0.04         0.35
## 1238        0.03         0.29
## 1239        0.00         0.02
## 1240        0.03         0.24
## 1241        0.02         0.20
## 1242        0.01         0.16
## 1243        0.01         0.14
## 1244        0.00         0.01
## 1245        0.03         0.56
## 1246        0.02         0.38
## 1247        0.02         0.24
## 1248        0.01         0.12
## 1249        0.01         0.08
## 1250        0.32         2.85
## 1251        0.09         2.67
## 1252        0.15         2.11
## 1253        0.12         0.76
## 1254        0.00         0.01
## 1255        0.02         0.27
## 1256        0.02         0.19
## 1257        0.00         0.09
## 1258        0.00         0.06
## 1259        0.00         0.03
## 1260        0.05         0.32
## 1261        0.01         0.16
## 1262        0.02         0.15
## 1263        0.01         0.11
## 1264        0.01         0.06
## 1265        0.00         2.81
## 1266        0.01         0.10
## 1267        0.00         0.07
## 1268        0.00         0.06
## 1269        0.00         0.02
## 1270        0.08         0.97
## 1271        0.07         0.84
## 1272        0.05         0.40
## 1273        0.03         0.39
## 1274        0.03         0.32
## 1275        0.16         2.62
## 1276        0.18         2.11
## 1277        0.02         0.36
## 1278        0.03         0.28
## 1279        0.02         0.16
## 1280        0.19         3.00
## 1281        0.27         2.48
## 1282        0.03         0.45
## 1283        0.01         0.14
## 1284        0.00         0.03
## 1285        0.69         3.85
## 1286        0.24         2.32
## 1287        0.10         0.97
## 1288        0.13         0.80
## 1289        0.01         0.09
## 1290        0.10         0.72
## 1291        0.05         0.64
## 1292        0.04         0.52
## 1293        0.02         0.31
## 1294        0.02         0.18
## 1295        0.22         1.89
## 1296        0.31         1.44
## 1297        0.08         0.84
## 1298        0.05         0.67
## 1299        0.04         0.27
## 1300        1.02         7.20
## 1301        0.07         1.71
## 1302        0.03         1.21
## 1303        0.01         0.29
## 1304        0.01         0.05
## 1305        0.37         2.04
## 1306        0.15         1.38
## 1307        0.07         0.37
## 1308        0.03         0.29
## 1309        0.02         0.19
## 1310        0.07         0.54
## 1311        0.01         0.35
## 1312        0.02         0.28
## 1313        0.00         0.27
## 1314        0.00         0.10
## 1315        2.05         2.50
## 1316        0.26         2.11
## 1317        0.09         1.00
## 1318        0.05         0.45
## 1319        0.17         0.80
## 1320        0.03         0.21
## 1321        0.01         0.18
## 1322        0.01         0.15
## 1323        0.00         0.09
## 1324        0.01         0.08
## 1325        0.05         0.59
## 1326        0.08         0.44
## 1327        0.04         0.27
## 1328        0.01         0.17
## 1329        0.00         0.05
## 1330        0.04         0.33
## 1331        0.02         0.23
## 1332        0.01         0.14
## 1333        0.00         0.08
## 1334        0.00         0.05
## 1335        0.04         0.48
## 1336        0.02         0.22
## 1337        0.01         0.12
## 1338        0.01         0.11
## 1339        0.01         0.10
## 1340        0.10         1.16
## 1341        0.14         0.76
## 1342        0.06         0.68
## 1343        0.11         0.61
## 1344        0.00         0.02
## 1345        0.01         0.98
## 1346        0.03         0.25
## 1347        0.00         0.19
## 1348        0.00         0.17
## 1349        0.02         0.11
## 1350        0.13         0.76
## 1351        0.08         0.62
## 1352        0.01         0.16
## 1353        0.01         0.14
## 1354        0.01         0.07
## 1355        0.10         0.78
## 1356        0.05         0.45
## 1357        0.01         0.13
## 1358        0.01         0.10
## 1359        0.00         0.04
## 1360        0.42         3.15
## 1361        0.16         1.98
## 1362        0.01         0.07
## 1363        0.01         0.04
## 1364        0.00         0.04
## 1365        0.05         0.88
## 1366        0.12         0.80
## 1367        0.02         0.27
## 1368        0.01         0.20
## 1369        0.01         0.04
## 1370        0.07         0.54
## 1371        0.03         0.32
## 1372        0.01         0.13
## 1373        0.01         0.10
## 1374        0.01         0.09
## 1375        0.03         0.22
## 1376        0.01         0.10
## 1377        0.01         0.08
## 1378        0.00         0.03
## 1379        0.00         0.02
## 1380        0.15         1.00
## 1381        0.08         0.94
## 1382        0.07         0.66
## 1383        0.11         0.62
## 1384        0.04         0.40
## 1385        0.02         0.13
## 1386        0.02         0.11
## 1387        0.01         0.09
## 1388        0.01         0.06
## 1389        0.00         0.05
## 1390        0.14         1.69
## 1391        0.21         1.30
## 1392        0.06         0.38
## 1393        0.02         0.20
## 1394        0.02         0.19
## 1395        0.03         0.25
## 1396        0.00         0.18
## 1397        0.00         0.15
## 1398        0.01         0.09
## 1399        0.00         0.08
## 1400        0.02         0.16
## 1401        0.00         0.09
## 1402        0.00         0.08
## 1403        0.00         0.05
## 1404        0.00         0.01
## 1405        0.28         2.90
## 1406        0.13         1.06
## 1407        0.08         0.75
## 1408        0.08         0.40
## 1409        0.28         0.38
## 1410        0.10         0.66
## 1411        0.03         0.32
## 1412        0.04         0.31
## 1413        0.02         0.23
## 1414        0.08         0.82
## 1415        0.05         0.27
## 1416        0.01         0.08
## 1417        0.01         0.08
## 1418        0.01         0.06
## 1419        0.00         0.05
## 1420        0.06         0.50
## 1421        0.01         0.33
## 1422        0.01         0.22
## 1423        0.01         0.18
## 1424        0.00         0.09
## 1425        0.06         0.69
## 1426        0.07         0.48
## 1427        0.09         0.32
## 1428        0.02         0.29
## 1429        0.02         0.30
## 1430        0.10         2.14
## 1431        0.08         1.22
## 1432        0.00         0.49
## 1433        0.00         0.28
## 1434        0.00         0.11
## 1435        0.22         2.65
## 1436        0.11         1.32
## 1437        0.22         1.09
## 1438        0.04         0.39
## 1439        0.01         0.14
## 1440        0.31         2.85
## 1441        0.10         0.97
## 1442        0.16         0.95
## 1443        0.05         0.57
## 1444        0.01         0.10
## 1445        0.19         1.06
## 1446        0.08         0.88
## 1447        0.07         0.43
## 1448        0.02         0.20
## 1449        0.02         0.12
## 1450        0.02         0.25
## 1451        0.03         0.23
## 1452        0.01         0.14
## 1453        0.01         0.12
## 1454        0.01         0.09
## 1455        0.22         1.55
## 1456        0.12         1.47
## 1457        0.06         0.80
## 1458        0.02         0.23
## 1459        0.00         0.03
## 1460        0.05         0.43
## 1461        0.02         0.31
## 1462        0.01         0.18
## 1463        0.02         0.13
## 1464        0.00         0.07
## 1465        0.06         0.51
## 1466        0.03         0.37
## 1467        0.00         0.27
## 1468        0.01         0.16
## 1469        0.01         0.11
## 1470        0.05         0.40
## 1471        0.03         0.36
## 1472        0.02         0.21
## 1473        0.01         0.18
## 1474        0.02         0.17
## 1475        0.06         0.43
## 1476        0.01         0.20
## 1477        0.01         0.18
## 1478        0.01         0.28
## 1479        0.01         0.67
## 1480        0.31         1.81
## 1481        0.14         0.92
## 1482        0.05         0.65
## 1483        0.04         0.50
## 1484        0.02         0.27
## 1485        0.05         0.58
## 1486        0.05         0.46
## 1487        0.08         0.46
## 1488        0.27         0.40
## 1489        0.03         0.32
## 1490        0.02         0.24
## 1491        0.02         0.17
## 1492        0.01         0.12
## 1493        0.02         0.12
## 1494        0.01         0.06
## 1495        0.02         0.23
## 1496        0.01         0.13
## 1497        0.02         0.11
## 1498        0.01         0.10
## 1499        0.01         0.09
## 1500        0.04         0.24
## 1501        0.04         0.22
## 1502        0.03         0.15
## 1503        0.01         0.14
## 1504        0.01         0.12
## 1505        0.03         0.21
## 1506        0.02         0.10
## 1507        0.01         0.07
## 1508        0.02         0.07
## 1509        0.00         0.04
## 1510        0.16         0.84
## 1511        0.04         0.45
## 1512        0.08         0.40
## 1513        0.03         0.30
## 1514        0.02         0.11
## 1515        0.01         0.16
## 1516        0.02         0.15
## 1517        0.01         0.15
## 1518        0.01         0.13
## 1519        0.01         0.10
## 1520        0.03         0.45
## 1521        0.05         0.42
## 1522        0.01         0.16
## 1523        0.01         0.10
## 1524        0.00         0.05
## 1525        0.12         0.89
## 1526        0.02         0.48
## 1527        0.02         0.31
## 1528        0.01         0.20
## 1529        0.00         0.11
## 1530        0.11         1.09
## 1531        0.12         0.79
## 1532        0.06         0.65
## 1533        0.13         0.26
## 1534        0.05         0.24
## 1535        0.09         0.91
## 1536        0.10         0.65
## 1537        0.01         0.12
## 1538        0.01         0.09
## 1539        0.00         0.02
## 1540        0.11         0.86
## 1541        0.13         0.57
## 1542        0.07         0.50
## 1543        0.05         0.40
## 1544        0.01         0.04
## 1545        0.09         0.66
## 1546        0.04         0.56
## 1547        0.05         0.45
## 1548        0.02         0.25
## 1549        0.02         0.23
## 1550        0.21         2.12
## 1551        0.14         1.41
## 1552        0.17         1.11
## 1553        0.07         0.78
## 1554        0.14         0.66
## 1555        0.04         0.21
## 1556        0.02         0.17
## 1557        0.02         0.13
## 1558        0.01         0.11
## 1559        0.01         0.07
## 1560        0.04         0.22
## 1561        0.01         0.13
## 1562        0.02         0.11
## 1563        0.01         0.09
## 1564        0.00         0.03
## 1565        0.11         1.11
## 1566        0.16         0.66
## 1567        0.05         0.61
## 1568        0.04         0.59
## 1569        0.04         0.40
## 1570        0.10         0.72
## 1571        0.02         0.39
## 1572        0.01         0.37
## 1573        0.01         0.30
## 1574        0.01         0.16
## 1575        0.02         0.12
## 1576        0.02         0.08
## 1577        0.01         0.05
## 1578        0.00         0.02
## 1579        0.00         0.01
## 1580        0.18         1.10
## 1581        0.08         0.88
## 1582        0.17         0.71
## 1583        0.04         0.47
## 1584        0.07         0.38
## 1585        0.04         1.26
## 1586        0.06         1.00
## 1587        0.03         0.43
## 1588        0.00         0.25
## 1589        0.12         0.95
## 1590        0.86         4.39
## 1591        0.01         0.86
## 1592        0.00         0.17
## 1593        0.01         0.10
## 1594        0.00         0.01
## 1595        0.02         0.33
## 1596        0.02         0.27
## 1597        0.02         0.27
## 1598        0.01         0.23
## 1599        0.01         0.12
## 1600        0.29         1.58
## 1601        0.06         0.67
## 1602        0.09         0.51
## 1603        0.05         0.46
## 1604        0.04         0.41
## 1605        0.03         0.23
## 1606        0.01         0.10
## 1607        0.01         0.08
## 1608        0.00         0.06
## 1609        0.00         0.02
## 1610        0.22         1.23
## 1611        0.09         0.86
## 1612        0.12         0.48
## 1613        0.04         0.43
## 1614        0.02         0.28
## 1615        0.02         0.24
## 1616        0.02         0.23
## 1617        0.02         0.16
## 1618        0.01         0.14
## 1619        0.01         0.08
## 1620        0.01         0.05
## 1621        0.00         0.03
## 1622        0.10         0.77
## 1623        0.01         0.26
## 1624        0.00         0.15
## 1625        0.00         0.15
## 1626        0.05         0.42
## 1627        0.00         0.13
## 1628        0.00         0.08
## 1629        0.00         0.07
## 1630        0.05         0.49
## 1631        0.02         0.18
## 1632        0.01         0.06
## 1633        0.00         0.01
## 1634        1.14         6.50
## 1635        0.44         5.30
## 1636        0.13         0.94
## 1637        0.03         0.36
## 1638        0.01         0.11
## 1639        0.01         0.11
## 1640        0.01         0.10
## 1641        0.00         0.04
## 1642        0.02         0.20
## 1643        0.00         0.13
## 1644        0.00         0.06
## 1645        0.00         0.03
## 1646        0.01         0.50
## 1647        0.03         0.34
## 1648        0.02         0.28
## 1649        0.01         0.11
## 1650        0.05         0.42
## 1651        0.03         0.34
## 1652        0.02         0.26
## 1653        0.01         0.14
## 1654        0.01         0.56
## 1655        0.01         0.26
## 1656        0.00         0.03
## 1657        0.00         0.02
## 1658        0.16         1.24
## 1659        0.01         0.20
## 1660        0.00         0.14
## 1661        0.00         0.03
## 1662        0.00         0.06
## 1663        0.00         0.04
## 1664        0.00         0.02
## 1665        0.00         0.01
## 1666        0.03         0.45
## 1667        0.02         0.31
## 1668        0.00         0.23
## 1669        0.02         0.12
## 1670        0.00         0.12
## 1671        0.01         0.09
## 1672        0.00         0.05
## 1673        0.00         0.04
## 1674        0.07         0.56
## 1675        0.01         0.21
## 1676        0.00         0.17
## 1677        0.00         0.15
## 1678        0.80         5.53
## 1679        0.41         4.76
## 1680        0.09         0.53
## 1681        0.03         0.38
## 1682        0.40         2.39
## 1683        0.17         1.93
## 1684        0.03         0.33
## 1685        0.04         0.32
## 1686        0.05         0.35
## 1687        0.00         0.11
## 1688        0.00         0.07
## 1689        0.00         0.06
## 1690        0.03         0.45
## 1691        0.03         0.34
## 1692        0.01         0.17
## 1693        0.01         0.10
## 1694        0.01         0.14
## 1695        0.01         0.14
## 1696        0.01         0.08
## 1697        0.03         0.36
## 1698        0.09         0.95
## 1699        0.07         0.81
## 1700        0.10         0.59
## 1701        0.33         0.57
## 1702        0.19         1.70
## 1703        0.13         1.23
## 1704        0.74         0.84
## 1705        0.18         0.72
## 1706        0.11         0.84
## 1707        0.01         0.19
## 1708        0.00         0.08
## 1709        0.00         0.04
## 1710        0.06         0.43
## 1711        0.01         0.21
## 1712        0.00         0.09
## 1713        0.00         0.06
## 1714        0.00         0.11
## 1715        0.01         0.07
## 1716        0.00         0.06
## 1717        0.00         0.04
## 1718        0.02         0.14
## 1719        0.01         0.07
## 1720        0.01         0.06
## 1721        0.00         0.04
## 1722        0.00         1.03
## 1723        0.01         0.16
## 1724        0.01         0.15
## 1725        0.00         0.01
## 1726        0.24         3.07
## 1727        0.36         2.28
## 1728        0.11         0.93
## 1729        0.19         0.83
## 1730        0.02         0.22
## 1731        0.02         0.19
## 1732        0.01         0.17
## 1733        0.01         0.04
## 1734        0.07         0.56
## 1735        0.01         0.18
## 1736        0.00         0.07
## 1737        0.00         0.06
## 1738        0.03         0.38
## 1739        0.02         0.18
## 1740        0.01         0.13
## 1741        0.01         0.13
## 1742        0.04         0.58
## 1743        0.03         0.33
## 1744        0.02         0.32
## 1745        0.01         0.13
## 1746        0.02         0.31
## 1747        0.02         0.24
## 1748        0.02         0.23
## 1749        0.02         0.14
## 1750        0.27         2.71
## 1751        0.23         2.26
## 1752        0.26         1.52
## 1753        0.15         1.07
## 1754        0.90         9.32
## 1755        1.04         6.72
## 1756        0.03         1.15
## 1757        0.08         1.06
## 1758        2.52        14.03
## 1759        1.12        13.73
## 1760        0.21         1.53
## 1761        0.03         0.43
## 1762        1.32        14.76
## 1763        1.62        13.46
## 1764        0.33         1.72
## 1765        0.08         0.89
## 1766        0.00         0.03
## 1767        0.01         0.03
## 1768        0.00         0.03
## 1769        0.00         0.01
## 1770        0.05         0.68
## 1771        0.03         0.41
## 1772        0.03         0.25
## 1773        0.01         0.15
## 1774        0.02         0.17
## 1775        0.00         0.07
## 1776        0.00         0.06
## 1777        0.00         0.04
## 1778        0.01         0.19
## 1779        0.01         0.18
## 1780        0.01         0.16
## 1781        0.01         0.15
## 1782        0.04         0.35
## 1783        0.01         0.30
## 1784        0.00         0.18
## 1785        0.00         0.11
## 1786        0.00         0.04
## 1787        0.00         0.04
## 1788        0.00         0.03
## 1789        0.00         0.03
## 1790        0.20         1.95
## 1791        0.01         0.46
## 1792        0.01         0.31
## 1793        0.01         0.26
## 1794        0.07         0.54
## 1795        0.04         0.26
## 1796        0.00         0.16
## 1797        0.00         0.13
## 1798        0.02         0.26
## 1799        0.02         0.16
## 1800        0.01         0.14
## 1801        0.01         0.06
## 1802        0.00         0.16
## 1803        0.00         0.15
## 1804        0.02         0.12
## 1805        0.00         0.03
## 1806        0.11         1.06
## 1807        0.14         0.91
## 1808        0.07         0.77
## 1809        0.20         0.32
## 1810        0.18         1.38
## 1811        0.01         0.28
## 1812        0.01         0.20
## 1813        0.00         0.19
## 1814        0.17         1.36
## 1815        0.03         0.72
## 1816        0.00         0.14
## 1817        0.00         0.02
## 1818        0.08         0.47
## 1819        0.04         0.46
## 1820        0.05         0.28
## 1821        0.01         0.12
## 1822        0.01         1.05
## 1823        0.05         0.40
## 1824        0.00         0.11
## 1825        0.00         0.09
## 1826        0.96         5.65
## 1827        0.23         3.28
## 1828        0.16         1.95
## 1829        0.27         1.73
## 1830        0.31         1.91
## 1831        0.11         1.17
## 1832        0.06         0.41
## 1833        0.03         0.38
## 1834        0.23         1.39
## 1835        0.12         1.39
## 1836        0.09         0.59
## 1837        0.01         0.12
## 1838        0.21         1.59
## 1839        0.13         1.35
## 1840        0.00         0.09
## 1841        0.01         0.04
## 1842        0.12         1.20
## 1843        0.06         0.50
## 1844        0.03         0.43
## 1845        0.04         0.38
## 1846        0.04         0.60
## 1847        0.34         0.45
## 1848        0.07         0.40
## 1849        0.01         0.10
## 1850        0.01         0.70
## 1851        0.08         0.65
## 1852        0.01         0.27
## 1853        0.00         0.14
## 1854        0.01         0.15
## 1855        0.00         0.10
## 1856        0.01         0.08
## 1857        0.00         0.04
## 1858        0.04         0.32
## 1859        0.01         0.28
## 1860        0.00         0.12
## 1861        0.00         0.11
## 1862        0.01         0.19
## 1863        0.01         0.08
## 1864        0.00         0.04
## 1865        0.00         0.02
## 1866        0.02         0.25
## 1867        0.02         0.21
## 1868        0.02         0.17
## 1869        0.01         0.07
## 1870        0.12         0.82
## 1871        0.04         0.44
## 1872        0.05         0.30
## 1873        0.01         0.13
## 1874        0.02         0.12
## 1875        0.00         0.04
## 1876        0.00         0.02
## 1877        0.00         0.01
## 1878        0.15         1.05
## 1879        0.07         0.55
## 1880        0.03         0.31
## 1881        0.02         0.27
## 1882        0.05         0.50
## 1883        0.03         0.36
## 1884        0.04         0.30
## 1885        0.02         0.25
## 1886        0.18         0.98
## 1887        0.08         0.72
## 1888        0.03         0.18
## 1889        0.02         0.18
## 1890        0.00         0.06
## 1891        0.01         0.05
## 1892        0.00         0.04
## 1893        0.00         0.02
## 1894        0.02         0.18
## 1895        0.00         0.09
## 1896        0.01         0.07
## 1897        0.00         0.02
## 1898        0.06         0.41
## 1899        0.01         0.25
## 1900        0.00         0.12
## 1901        0.00         0.02
## 1902        0.08         1.03
## 1903        0.04         0.54
## 1904        0.08         0.50
## 1905        0.02         0.24
## 1906        0.61         3.40
## 1907        0.04         0.63
## 1908        0.00         0.08
## 1909        0.00         0.05
## 1910        0.51         3.49
## 1911        0.05         0.79
## 1912        0.00         0.07
## 1913        0.00         0.05
## 1914        0.59         3.70
## 1915        0.04         0.97
## 1916        0.00         0.14
## 1917        0.00         0.08
## 1918        0.02         3.42
## 1919        0.09         2.12
## 1920        0.01         1.40
## 1921        0.00         0.11
## 1922        0.14         2.82
## 1923        0.18         2.09
## 1924        0.02         0.89
## 1925        0.02         0.66
## 1926        0.03         0.26
## 1927        0.01         0.10
## 1928        0.00         0.09
## 1929        0.00         0.06
## 1930        0.06         0.41
## 1931        0.01         0.22
## 1932        0.01         0.20
## 1933        0.01         0.08
## 1934        0.20         1.11
## 1935        0.09         0.88
## 1936        0.01         0.04
## 1937        0.00         0.06
## 1938        0.01         0.06
## 1939        0.01         0.05
## 1940        0.00         0.03
## 1941        0.00         0.03
## 1942        0.09         0.64
## 1943        0.02         0.49
## 1944        0.01         0.36
## 1945        0.01         0.11
## 1946       10.57        20.81
## 1947        0.09         1.95
## 1948        0.05         0.98
## 1949        0.01         0.12
## 1950        0.15         1.58
## 1951        0.11         1.14
## 1952        0.54         1.12
## 1953        0.17         1.10
## 1954        0.10         1.29
## 1955        0.10         1.23
## 1956        0.11         0.99
## 1957        0.18         0.79
## 1958        0.10         0.95
## 1959        0.07         0.81
## 1960        0.10         0.63
## 1961        0.04         0.35
## 1962        0.06         0.61
## 1963        0.04         0.42
## 1964        0.05         0.36
## 1965        0.10         0.22
## 1966        0.03         0.30
## 1967        0.03         0.29
## 1968        0.04         0.28
## 1969        0.01         0.10
## 1970        0.16         1.17
## 1971        0.02         0.52
## 1972        0.00         0.18
## 1973        0.02         0.27
## 1974        0.07         0.70
## 1975        0.04         0.35
## 1976        0.03         0.23
## 1977        0.02         0.21
## 1978        0.11         0.90
## 1979        0.01         0.40
## 1980        0.01         0.39
## 1981        0.01         0.19
## 1982        0.06         0.50
## 1983        0.03         0.40
## 1984        0.01         0.14
## 1985        0.01         0.04
## 1986        0.05         0.40
## 1987        0.02         0.23
## 1988        0.01         0.17
## 1989        0.01         0.15
## 1990        0.05         0.54
## 1991        0.04         0.43
## 1992        0.02         0.18
## 1993        0.01         0.14
## 1994        0.10         0.70
## 1995        0.05         0.52
## 1996        0.04         0.19
## 1997        0.00         0.06
## 1998        0.08         0.74
## 1999        0.16         0.28
## 2000        0.02         0.26
## 2001        0.06         0.26
## 2002        0.13         0.72
## 2003        0.05         0.48
## 2004        0.00         0.07
## 2005        0.00         0.02
## 2006        0.32         2.31
## 2007        0.02         0.64
## 2008        0.01         0.42
## 2009        0.00         0.17
## 2010        0.46         3.33
## 2011        0.03         0.82
## 2012        0.02         0.78
## 2013        0.00         0.13
## 2014        0.02         0.19
## 2015        0.01         0.15
## 2016        0.02         0.14
## 2017        0.01         0.13
## 2018        0.56         6.91
## 2019        0.08         1.19
## 2020        0.06         0.44
## 2021        0.03         0.39
## 2022        0.03         0.45
## 2023        0.05         0.39
## 2024        0.01         0.11
## 2025        0.01         0.09
## 2026        0.04         0.33
## 2027        0.00         0.13
## 2028        0.00         0.10
## 2029        0.00         0.06
## 2030        0.02         0.25
## 2031        0.02         0.23
## 2032        0.01         0.14
## 2033        0.02         0.10
## 2034        0.07         0.71
## 2035        0.05         0.57
## 2036        0.04         0.46
## 2037        0.06         0.42
## 2038        0.53         5.83
## 2039        0.46         4.90
## 2040        0.24         2.64
## 2041        0.39         2.38
## 2042        0.01         0.06
## 2043        0.00         0.06
## 2044        0.00         0.05
## 2045        0.01         0.05
## 2046        0.01         0.14
## 2047        0.01         0.13
## 2048        0.01         0.08
## 2049        0.01         0.08
## 2050        0.04         0.33
## 2051        0.00         0.13
## 2052        0.00         0.12
## 2053        0.00         0.07
## 2054        0.08         0.64
## 2055        0.01         0.42
## 2056        0.01         0.26
## 2057        0.00         0.12
## 2058        0.12         0.91
## 2059        0.06         0.73
## 2060        0.03         0.24
## 2061        0.01         0.14
## 2062        0.16         2.69
## 2063        0.17         2.25
## 2064        0.03         0.46
## 2065        0.02         0.22
## 2066        0.25         2.03
## 2067        0.17         2.02
## 2068        0.12         1.51
## 2069        0.19         1.41
## 2070        0.59         3.22
## 2071        0.26         2.40
## 2072        0.10         0.98
## 2073        0.15         0.82
## 2074        0.23         1.23
## 2075        0.09         0.82
## 2076        0.01         0.08
## 2077        0.01         0.08
## 2078        0.56         4.14
## 2079        0.03         0.71
## 2080        0.01         0.61
## 2081        0.01         0.43
## 2082        0.71         5.23
## 2083        0.05         1.09
## 2084        0.01         0.51
## 2085        0.01         0.31
## 2086        0.13         2.18
## 2087        0.15         1.77
## 2088        0.07         0.82
## 2089        0.05         0.77
## 2090        0.05         0.72
## 2091        0.08         0.60
## 2092        0.02         0.25
## 2093        0.01         0.09
## 2094        0.07         2.32
## 2095        0.06         1.18
## 2096        0.00         0.02
## 2097        0.01         0.07
## 2098        0.03         0.42
## 2099        0.03         0.38
## 2100        0.04         0.29
## 2101        0.02         0.21
## 2102        0.24         3.07
## 2103        0.21         1.46
## 2104        0.13         0.97
## 2105        0.02         0.28
## 2106        0.06         0.46
## 2107        0.01         0.20
## 2108        0.00         0.16
## 2109        0.00         0.04
## 2110        0.22         3.31
## 2111        0.05         1.22
## 2112        0.00         0.03
## 2113        0.00         0.02
## 2114        0.43         2.83
## 2115        0.14         2.67
## 2116        0.21         2.62
## 2117        0.07         0.49
## 2118        0.20         1.28
## 2119        0.06         0.62
## 2120        0.02         0.28
## 2121        0.01         0.15
## 2122        0.05         0.41
## 2123        0.00         0.10
## 2124        0.00         0.10
## 2125        0.00         0.04
## 2126        0.04         0.28
## 2127        0.00         0.13
## 2128        0.00         0.04
## 2129        0.00         0.02
## 2130        0.01         0.07
## 2131        0.00         0.04
## 2132        0.00         0.04
## 2133        0.00         0.03
## 2134        0.01         0.16
## 2135        0.02         0.14
## 2136        0.00         0.14
## 2137        0.00         0.09
## 2138        0.03         0.42
## 2139        0.03         0.39
## 2140        0.02         0.13
## 2141        0.01         0.09
## 2142        0.15         2.49
## 2143        0.04         0.96
## 2144        0.01         0.41
## 2145        0.00         0.01
## 2146        0.04         0.18
## 2147        0.02         0.12
## 2148        0.01         0.09
## 2149        0.00         0.02
## 2150        0.02         0.17
## 2151        0.01         0.07
## 2152        0.00         0.03
## 2153        0.00         0.01
## 2154        0.03         0.33
## 2155        0.03         0.31
## 2156        0.01         0.11
## 2157        0.01         0.10
## 2158        0.01         0.20
## 2159        0.01         0.19
## 2160        0.01         0.12
## 2161        0.01         0.10
## 2162        0.17         2.47
## 2163        0.25         2.05
## 2164        0.12         1.33
## 2165        0.06         0.87
## 2166        0.37         2.38
## 2167        0.15         1.69
## 2168        0.15         1.63
## 2169        0.22         1.36
## 2170        0.22         1.19
## 2171        0.07         0.64
## 2172        0.01         0.05
## 2173        0.01         0.05
## 2174        0.11         0.78
## 2175        0.04         0.58
## 2176        0.04         0.38
## 2177        0.00         0.03
## 2178        0.03         0.64
## 2179        0.03         0.42
## 2180        0.01         0.33
## 2181        0.02         0.29
## 2182        0.17         1.30
## 2183        0.04         0.51
## 2184        0.04         0.46
## 2185        0.00         0.06
## 2186        0.07         0.71
## 2187        0.04         0.52
## 2188        0.05         0.39
## 2189        0.06         0.39
## 2190        0.23         1.70
## 2191        0.06         0.73
## 2192        0.01         0.56
## 2193        0.03         0.37
## 2194        0.11         0.79
## 2195        0.05         0.70
## 2196        0.03         0.38
## 2197        0.00         0.08
## 2198        0.05         0.71
## 2199        0.04         0.58
## 2200        0.07         0.48
## 2201        0.02         0.23
## 2202        0.07         0.94
## 2203        0.06         0.81
## 2204        0.07         0.58
## 2205        0.02         0.21
## 2206        0.01         0.14
## 2207        0.01         0.14
## 2208        0.02         0.13
## 2209        0.01         0.04
## 2210        0.07         0.51
## 2211        0.02         0.27
## 2212        0.02         0.17
## 2213        0.00         0.03
## 2214        0.04         0.50
## 2215        0.03         0.34
## 2216        0.02         0.15
## 2217        0.00         0.02
## 2218        0.10         0.58
## 2219        0.04         0.47
## 2220        0.03         0.40
## 2221        0.06         0.38
## 2222        0.11         0.61
## 2223        0.05         0.47
## 2224        0.01         0.04
## 2225        0.00         0.02
## 2226        0.03         0.36
## 2227        0.05         0.36
## 2228        0.01         0.15
## 2229        0.01         0.15
## 2230        0.01         0.17
## 2231        0.01         0.13
## 2232        0.02         0.13
## 2233        0.01         0.07
## 2234        0.03         0.26
## 2235        0.01         0.16
## 2236        0.01         0.12
## 2237        0.01         0.12
## 2238        0.07         4.24
## 2239        0.02         1.82
## 2240        0.02         0.63
## 2241        0.04         0.91
## 2242        0.54         3.98
## 2243        0.01         0.21
## 2244        0.00         0.20
## 2245        0.01         0.18
## 2246        0.48         2.81
## 2247        0.21         2.22
## 2248        0.05         0.48
## 2249        0.06         0.38
## 2250        0.53         2.68
## 2251        0.22         1.92
## 2252        0.21         0.76
## 2253        0.01         0.06
## 2254        0.01         0.38
## 2255        0.05         0.30
## 2256        0.03         0.17
## 2257        0.00         0.07
## 2258        0.01         0.09
## 2259        0.01         0.09
## 2260        0.01         0.08
## 2261        0.00         0.05
## 2262        0.21         1.51
## 2263        0.02         0.49
## 2264        0.01         0.37
## 2265        0.00         0.11
## 2266        0.01         0.11
## 2267        0.02         0.11
## 2268        0.01         0.08
## 2269        0.01         0.07
## 2270        0.03         0.20
## 2271        0.00         0.08
## 2272        0.00         0.07
## 2273        0.00         0.07
## 2274        0.04         0.40
## 2275        0.02         0.20
## 2276        0.02         0.12
## 2277        0.01         0.11
## 2278        0.08         1.18
## 2279        0.02         0.26
## 2280        0.01         0.19
## 2281        0.01         0.05
## 2282        0.31         2.22
## 2283        0.04         0.94
## 2284        0.01         0.32
## 2285        0.00         0.15
## 2286        0.02         0.23
## 2287        0.01         0.22
## 2288        0.01         0.11
## 2289        0.01         0.09
## 2290        0.00         0.11
## 2291        0.00         0.05
## 2292        0.00         0.04
## 2293        0.00         0.02
## 2294        0.02         0.34
## 2295        0.02         0.29
## 2296        0.02         0.12
## 2297        0.00         0.02
## 2298        0.04         0.19
## 2299        0.01         0.14
## 2300        0.01         0.13
## 2301        0.01         0.12
## 2302        0.04         0.29
## 2303        0.00         0.07
## 2304        0.00         0.07
## 2305        0.01         0.03
## 2306        0.11         1.44
## 2307        0.02         0.21
## 2308        0.01         0.15
## 2309        0.00         0.01
## 2310        0.03         0.27
## 2311        0.00         0.11
## 2312        0.00         0.10
## 2313        0.00         0.05
## 2314        0.25         3.62
## 2315        0.21         2.26
## 2316        0.06         1.69
## 2317        0.01         0.03
## 2318        0.04         1.29
## 2319        0.05         0.36
## 2320        0.01         0.07
## 2321        0.00         0.02
## 2322        0.01         0.19
## 2323        0.01         0.16
## 2324        0.03         0.16
## 2325        0.01         0.10
## 2326        0.02         0.10
## 2327        0.01         0.09
## 2328        0.01         0.08
## 2329        0.01         0.06
## 2330        0.05         0.36
## 2331        0.00         0.16
## 2332        0.01         0.14
## 2333        0.00         0.09
## 2334        0.21         2.48
## 2335        0.20         2.11
## 2336        0.22         1.62
## 2337        0.35         1.11
## 2338        0.18         2.20
## 2339        0.16         1.50
## 2340        0.08         1.03
## 2341        0.08         0.59
## 2342        0.06         0.88
## 2343        0.05         0.67
## 2344        0.06         0.58
## 2345        0.01         0.10
## 2346        0.03         0.45
## 2347        0.04         0.32
## 2348        0.02         0.23
## 2349        0.01         0.19
## 2350        0.02         0.24
## 2351        0.01         0.18
## 2352        0.01         0.13
## 2353        0.02         0.12
## 2354        0.02         0.23
## 2355        0.03         0.20
## 2356        0.01         0.11
## 2357        0.01         0.07
## 2358        0.01         0.15
## 2359        0.01         0.12
## 2360        0.01         0.11
## 2361        0.01         0.11
## 2362        0.02         0.27
## 2363        0.02         0.27
## 2364        0.01         0.11
## 2365        0.01         0.08
## 2366        0.01         0.04
## 2367        0.01         0.04
## 2368        0.00         0.02
## 2369        0.00         0.01
## 2370        0.00         0.03
## 2371        0.00         0.03
## 2372        0.00         0.02
## 2373        0.00         0.01
## 2374        0.02         0.25
## 2375        0.01         0.21
## 2376        0.00         0.02
## 2377        0.00         0.01
## 2378        0.01         0.12
## 2379        0.01         0.10
## 2380        0.01         0.08
## 2381        0.00         0.01
## 2382        0.22         1.67
## 2383        0.01         0.39
## 2384        0.01         0.38
## 2385        0.00         0.12
## 2386        0.07         0.52
## 2387        0.02         0.23
## 2388        0.00         0.17
## 2389        0.01         0.14
## 2390        0.22         1.73
## 2391        0.01         0.54
## 2392        0.02         0.43
## 2393        0.00         0.19
## 2394        0.16         1.19
## 2395        0.02         0.49
## 2396        0.01         0.15
## 2397        0.01         0.04
## 2398        0.06         0.45
## 2399        0.01         0.44
## 2400        0.01         0.22
## 2401        0.01         0.15
## 2402        0.14         0.64
## 2403        0.05         0.45
## 2404        0.08         0.26
## 2405        0.00         0.01
## 2406        0.10         0.75
## 2407        0.01         0.68
## 2408        0.01         0.30
## 2409        0.01         0.20
## 2410        0.03         0.19
## 2411        0.01         0.19
## 2412        0.01         0.16
## 2413        0.01         0.03
## 2414        0.03         0.31
## 2415        0.03         0.30
## 2416        0.02         0.19
## 2417        0.01         0.10
## 2418        0.02         0.19
## 2419        0.01         0.12
## 2420        0.00         0.09
## 2421        0.00         0.02
## 2422        0.13         0.68
## 2423        0.03         0.33
## 2424        0.03         0.32
## 2425        0.06         0.31
## 2426        0.28         1.63
## 2427        0.14         1.42
## 2428        0.09         1.01
## 2429        0.02         0.11
## 2430        0.21         2.20
## 2431        0.14         1.03
## 2432        0.09         0.96
## 2433        0.36         0.76
## 2434        0.13         4.34
## 2435        0.66         1.18
## 2436        0.11         1.05
## 2437        0.00         0.48
## 2438        0.02         0.12
## 2439        0.01         0.11
## 2440        0.01         0.09
## 2441        0.00         0.06
## 2442        0.03         2.53
## 2443        0.00         0.46
## 2444        0.00         0.16
## 2445        0.00         0.11
## 2446        0.06         0.45
## 2447        0.03         0.36
## 2448        0.02         0.24
## 2449        0.01         0.19
## 2450        0.23         4.48
## 2451        0.05         1.40
## 2452        0.05         1.33
## 2453        0.04         1.19
## 2454        0.12         0.75
## 2455        0.06         0.61
## 2456        0.02         0.11
## 2457        0.01         0.04
## 2458        0.14         1.67
## 2459        0.02         1.23
## 2460        0.03         0.95
## 2461        0.02         0.57
## 2462        0.01         0.51
## 2463        0.06         0.44
## 2464        0.01         0.44
## 2465        0.01         0.26
## 2466        0.00         0.42
## 2467        0.00         0.40
## 2468        0.00         0.39
## 2469        0.00         0.25
## 2470        0.43         3.32
## 2471        0.04         1.24
## 2472        0.01         0.72
## 2473        0.03         0.31
## 2474        0.37         3.59
## 2475        0.06         1.67
## 2476        0.11         1.23
## 2477        0.03         0.18
## 2478        0.12         0.92
## 2479        0.01         0.23
## 2480        0.00         0.11
## 2481        0.00         0.03
## 2482        0.05         0.21
## 2483        0.00         0.19
## 2484        0.01         0.08
## 2485        0.00         0.06
## 2486        0.10         0.84
## 2487        0.03         0.47
## 2488        0.04         0.24
## 2489        0.00         0.02
## 2490        0.04         0.55
## 2491        0.03         0.40
## 2492        0.01         0.12
## 2493        0.00         0.05
## 2494        0.04         0.45
## 2495        0.06         0.41
## 2496        0.12         0.22
## 2497        0.01         0.16
## 2498        0.08         0.62
## 2499        0.01         0.46
## 2500        0.01         0.33
## 2501        0.00         0.13
## 2502        0.00         0.17
## 2503        0.00         0.15
## 2504        0.01         0.09
## 2505        0.00         0.07
## 2506        0.06         0.44
## 2507        0.01         0.32
## 2508        0.01         0.19
## 2509        0.00         0.13
## 2510        0.03         0.20
## 2511        0.00         0.12
## 2512        0.00         0.06
## 2513        0.00         0.04
## 2514        0.01         0.07
## 2515        0.01         0.05
## 2516        0.00         0.03
## 2517        0.00         0.03
## 2518        0.04         0.34
## 2519        0.05         0.27
## 2520        0.03         0.25
## 2521        0.02         0.15
## 2522        0.00         0.12
## 2523        0.01         0.10
## 2524        0.01         0.09
## 2525        0.00         0.04
## 2526        0.26         1.70
## 2527        0.05         0.63
## 2528        0.02         0.26
## 2529        0.01         0.16
## 2530        0.01         0.11
## 2531        0.01         0.08
## 2532        0.00         0.04
## 2533        0.00         0.03
## 2534        0.07         0.54
## 2535        0.01         0.24
## 2536        0.00         0.19
## 2537        0.00         0.17
## 2538        0.12         0.76
## 2539        0.06         0.64
## 2540        0.01         0.11
## 2541        0.00         0.03
## 2542        0.46         3.28
## 2543        0.05         1.14
## 2544        0.02         0.69
## 2545        0.01         0.56
## 2546        0.70         4.67
## 2547        0.01         0.74
## 2548        0.03         0.71
## 2549        0.01         0.53
## 2550        0.01         0.12
## 2551        0.01         0.11
## 2552        0.01         0.09
## 2553        0.01         0.09
## 2554        0.08         0.15
## 2555        0.01         0.10
## 2556        0.01         0.09
## 2557        0.01         0.08
## 2558        0.42         3.61
## 2559        0.02         1.19
## 2560        0.01         1.05
## 2561        0.01         0.24
## 2562        0.24         2.77
## 2563        0.01         0.49
## 2564        0.01         0.42
## 2565        0.01         0.05
## 2566        0.14         1.23
## 2567        0.25         0.80
## 2568        0.06         0.73
## 2569        0.05         0.37
## 2570        0.18         2.43
## 2571        0.06         1.33
## 2572        0.03         0.66
## 2573        0.02         0.56
## 2574        0.16         1.76
## 2575        0.06         1.46
## 2576        0.03         0.94
## 2577        0.02         0.54
## 2578        0.29         1.76
## 2579        0.03         0.62
## 2580        0.02         0.40
## 2581        0.01         0.34
## 2582        0.10         0.66
## 2583        0.07         0.65
## 2584        0.21         0.37
## 2585        0.10         0.36
## 2586        0.10         1.63
## 2587        0.02         0.62
## 2588        0.00         0.18
## 2589        0.00         0.16
## 2590        0.09         1.44
## 2591        0.03         0.85
## 2592        0.00         0.14
## 2593        0.00         0.01
## 2594        0.12         1.94
## 2595        0.07         1.76
## 2596        0.00         0.15
## 2597        0.01         0.14
## 2598        0.05         0.42
## 2599        0.03         0.36
## 2600        0.01         0.11
## 2601        0.01         0.05
## 2602        0.13         3.02
## 2603        0.40         2.65
## 2604        0.01         0.23
## 2605        0.00         0.10
## 2606        0.08         0.99
## 2607        0.18         0.98
## 2608        0.03         0.19
## 2609        0.01         0.12
## 2610        0.05         1.11
## 2611        0.14         0.95
## 2612        0.00         0.10
## 2613        0.01         0.07
## 2614        0.06         0.78
## 2615        0.03         0.26
## 2616        0.01         0.13
## 2617        0.00         0.06
## 2618        0.07         1.48
## 2619        0.17         1.25
## 2620        0.00         0.08
## 2621        0.00         0.06
## 2622        0.52         2.51
## 2623        0.17         1.92
## 2624        0.25         1.41
## 2625        0.05         0.60
## 2626        0.35         3.67
## 2627        0.04         0.93
## 2628        0.02         0.58
## 2629        0.01         0.57
## 2630        0.03         0.20
## 2631        0.01         0.11
## 2632        0.01         0.07
## 2633        0.01         0.06
## 2634        0.12         0.87
## 2635        0.10         0.63
## 2636        0.07         0.56
## 2637        0.04         0.49
## 2638        0.42         3.90
## 2639        0.05         1.27
## 2640        0.02         0.70
## 2641        0.01         0.60
## 2642        0.26         2.37
## 2643        0.03         0.75
## 2644        0.01         0.50
## 2645        0.01         0.49
## 2646        0.07         0.58
## 2647        0.12         0.57
## 2648        0.07         0.57
## 2649        0.01         0.14
## 2650        0.07         0.37
## 2651        0.03         0.29
## 2652        0.02         0.21
## 2653        0.02         0.18
## 2654        0.07         0.58
## 2655        0.04         0.37
## 2656        0.05         0.29
## 2657        0.17         0.27
## 2658        0.17         1.31
## 2659        0.02         0.55
## 2660        0.01         0.38
## 2661        0.00         0.12
## 2662        0.07         0.53
## 2663        0.01         0.20
## 2664        0.00         0.13
## 2665        0.00         0.11
## 2666        0.02         0.19
## 2667        0.00         0.09
## 2668        0.00         0.05
## 2669        0.00         0.02
## 2670        0.06         0.41
## 2671        0.03         0.35
## 2672        0.28         0.32
## 2673        0.06         0.25
## 2674        0.22         1.06
## 2675        0.01         0.05
## 2676        0.00         0.05
## 2677        0.00         0.01
## 2678        0.09         0.46
## 2679        0.02         0.23
## 2680        0.02         0.15
## 2681        0.01         0.04
## 2682        0.00         0.01
## 2683        0.02         0.12
## 2684        0.05         0.21
## 2685        0.01         0.04
## 2686        0.19         1.13
## 2687        0.14         0.85
## 2688        0.06         0.69
## 2689        0.04         0.56
## 2690        0.19         1.20
## 2691        0.05         0.58
## 2692        0.09         0.58
## 2693        0.04         0.50
## 2694        0.01         0.14
## 2695        0.01         0.12
## 2696        0.01         0.11
## 2697        0.01         0.11
## 2698        0.04         0.41
## 2699        0.01         0.08
## 2700        0.01         0.07
## 2701        0.01         0.06
## 2702        0.03         0.40
## 2703        0.01         0.21
## 2704        0.01         0.20
## 2705        0.01         0.13
## 2706        0.03         0.21
## 2707        0.00         0.06
## 2708        0.00         0.04
## 2709        0.00         0.01
## 2710        0.06         0.47
## 2711        0.01         0.25
## 2712        0.02         0.21
## 2713        0.00         0.05
## 2714        0.01         0.16
## 2715        0.01         0.11
## 2716        0.00         0.05
## 2717        0.00         0.03
## 2718        0.09         0.63
## 2719        0.02         0.44
## 2720        0.03         0.29
## 2721        0.01         0.25
## 2722        0.02         0.25
## 2723        0.02         0.20
## 2724        0.03         0.19
## 2725        0.05         0.18
## 2726        0.03         0.25
## 2727        0.02         0.24
## 2728        0.01         0.11
## 2729        0.00         0.06
## 2730        0.08         0.64
## 2731        0.01         0.21
## 2732        0.00         0.20
## 2733        0.00         0.12
## 2734        0.01         0.09
## 2735        0.00         0.03
## 2736        0.00         0.03
## 2737        0.00         0.01
## 2738        0.02         0.16
## 2739        0.00         0.14
## 2740        0.00         0.13
## 2741        0.00         0.05
## 2742        0.03         0.21
## 2743        0.02         0.18
## 2744        0.01         0.15
## 2745        0.01         0.12
## 2746        0.06         0.59
## 2747        0.01         0.19
## 2748        0.00         0.05
## 2749        0.00         0.13
## 2750        0.00         0.04
## 2751        0.00         0.02
## 2752        0.16         1.77
## 2753        0.02         0.44
## 2754        0.01         0.09
## 2755        0.00         0.23
## 2756        0.00         0.08
## 2757        0.00         0.07
## 2758        0.11         0.84
## 2759        0.01         0.45
## 2760        0.01         0.28
## 2761        0.01         0.04
## 2762        0.00         0.03
## 2763        0.00         0.02
## 2764        0.04         0.35
## 2765        0.00         0.06
## 2766        0.00         0.06
## 2767        0.03         0.19
## 2768        0.01         0.08
## 2769        0.01         0.03
## 2770        0.03         0.21
## 2771        0.02         0.11
## 2772        0.01         0.11
## 2773        0.09         0.60
## 2774        0.04         0.50
## 2775        0.02         0.12
## 2776        0.11         1.06
## 2777        0.18         1.05
## 2778        0.02         0.19
## 2779        0.07         0.80
## 2780        0.13         0.64
## 2781        0.02         0.18
## 2782        0.07         0.43
## 2783        0.04         0.40
## 2784        0.01         0.04
## 2785        0.01         0.14
## 2786        0.01         0.07
## 2787        0.00         0.06
## 2788        0.01         0.11
## 2789        0.01         0.10
## 2790        0.01         0.10
## 2791        0.00         0.15
## 2792        0.00         0.13
## 2793        0.00         0.04
## 2794        0.02         0.18
## 2795        0.00         0.05
## 2796        0.00         0.05
## 2797        0.05         0.63
## 2798        0.02         0.27
## 2799        0.02         0.16
## 2800        0.03         0.22
## 2801        0.01         0.17
## 2802        0.01         0.03
## 2803        0.02         0.20
## 2804        0.01         0.06
## 2805        0.00         0.05
## 2806        0.02         0.19
## 2807        0.01         0.10
## 2808        0.01         0.05
## 2809        0.02         0.27
## 2810        0.02         0.24
## 2811        0.01         0.12
## 2812        0.05         0.72
## 2813        0.06         0.45
## 2814        0.01         0.29
## 2815        0.00         0.42
## 2816        0.02         0.24
## 2817        0.02         0.17
## 2818        0.08         0.95
## 2819        0.12         0.85
## 2820        0.08         0.32
## 2821        0.01         0.08
## 2822        0.00         0.05
## 2823        0.00         0.02
## 2824        0.01         0.24
## 2825        0.01         0.20
## 2826        0.02         0.17
## 2827        0.55         5.55
## 2828        0.83         4.83
## 2829        0.08         0.92
## 2830        0.02         0.12
## 2831        0.01         0.08
## 2832        0.00         0.01
## 2833        0.87         5.57
## 2834        0.51         5.27
## 2835        0.11         0.57
## 2836        0.50         3.28
## 2837        0.11         1.28
## 2838        0.02         0.20
## 2839        0.24         3.50
## 2840        0.30         2.84
## 2841        0.10         0.59
## 2842        0.72         4.24
## 2843        0.43         4.19
## 2844        0.14         0.76
## 2845        0.23         1.37
## 2846        0.09         1.05
## 2847        0.01         0.07
## 2848        0.70         3.92
## 2849        0.30         3.46
## 2850        0.05         0.55
## 2851        0.01         0.10
## 2852        0.00         0.06
## 2853        0.00         0.03
## 2854        0.03         0.25
## 2855        0.01         0.19
## 2856        0.01         0.13
## 2857        0.02         0.15
## 2858        0.00         0.11
## 2859        0.00         0.06
## 2860        0.06         0.49
## 2861        0.01         0.43
## 2862        0.00         0.13
## 2863        0.01         0.13
## 2864        0.00         0.04
## 2865        0.00         0.02
## 2866        0.02         0.17
## 2867        0.01         0.12
## 2868        0.01         0.11
## 2869        0.02         0.21
## 2870        0.02         0.17
## 2871        0.01         0.08
## 2872        0.01         0.17
## 2873        0.01         0.11
## 2874        0.01         0.06
## 2875        0.01         0.17
## 2876        0.01         0.13
## 2877        0.01         0.12
## 2878        0.01         0.16
## 2879        0.01         0.15
## 2880        0.01         0.09
## 2881        0.15         1.15
## 2882        0.01         0.18
## 2883        0.00         0.05
## 2884        0.04         0.55
## 2885        0.01         0.20
## 2886        0.02         0.19
## 2887        0.61         4.25
## 2888        0.31         3.50
## 2889        0.05         0.32
## 2890        0.61         3.79
## 2891        0.13         1.45
## 2892        0.01         0.13
## 2893        0.07         0.55
## 2894        0.01         0.26
## 2895        0.00         0.18
## 2896        0.01         0.03
## 2897        0.01         0.05
## 2898        0.00         0.03
## 2899        0.04         0.22
## 2900        0.01         0.13
## 2901        0.01         0.07
## 2902        0.02         0.56
## 2903        0.06         0.44
## 2904        0.03         0.41
## 2905        0.69         7.34
## 2906        1.10         7.23
## 2907        0.48         2.79
## 2908        0.32         3.48
## 2909        0.45         2.97
## 2910        0.00         0.71
## 2911        0.03         0.40
## 2912        0.01         0.16
## 2913        0.01         0.09
## 2914        0.04         0.33
## 2915        0.00         0.10
## 2916        0.00         0.07
## 2917        0.28         2.83
## 2918        0.21         1.45
## 2919        0.02         0.41
## 2920        0.19         2.21
## 2921        0.22         1.55
## 2922        0.04         0.24
## 2923        0.15         1.96
## 2924        0.31         1.76
## 2925        0.08         0.67
## 2926        0.02         0.16
## 2927        0.00         0.05
## 2928        0.00         0.03
## 2929        0.06         0.58
## 2930        0.03         0.36
## 2931        0.00         0.01
## 2932        0.02         0.12
## 2933        0.00         0.09
## 2934        0.00         0.01
## 2935        0.12         0.89
## 2936        0.02         0.53
## 2937        0.01         0.16
## 2938        0.05         0.39
## 2939        0.01         0.19
## 2940        0.00         0.05
## 2941        0.05         0.42
## 2942        0.01         0.21
## 2943        0.00         0.11
## 2944        0.13         0.74
## 2945        0.06         0.60
## 2946        0.01         0.06
## 2947        0.01         0.17
## 2948        0.01         0.16
## 2949        0.01         0.06
## 2950        0.04         0.50
## 2951        0.02         0.27
## 2952        0.02         0.19
## 2953        0.29         3.44
## 2954        0.29         2.11
## 2955        0.04         0.18
## 2956        0.06         0.75
## 2957        0.11         0.67
## 2958        0.03         0.29
## 2959        0.18         1.48
## 2960        0.01         0.21
## 2961        0.00         0.01
## 2962        0.03         0.32
## 2963        0.03         0.23
## 2964        0.02         0.21
## 2965        0.01         0.54
## 2966        0.05         0.38
## 2967        0.01         0.20
## 2968        0.09         1.04
## 2969        0.12         0.74
## 2970        0.03         0.18
## 2971        0.15         0.93
## 2972        0.09         0.87
## 2973        0.00         0.02
## 2974        0.02         0.18
## 2975        0.00         0.12
## 2976        0.00         0.03
## 2977        0.08         1.02
## 2978        0.08         0.53
## 2979        0.02         0.16
## 2980        0.11         1.07
## 2981        0.06         0.52
## 2982        0.00         0.03
## 2983        0.10         0.74
## 2984        0.01         0.30
## 2985        0.00         0.13
## 2986        0.11         0.85
## 2987        0.01         0.24
## 2988        0.00         0.15
## 2989        0.01         0.10
## 2990        0.02         0.09
## 2991        0.00         0.04
## 2992        0.12         0.90
## 2993        0.01         0.53
## 2994        0.04         0.51
## 2995        0.01         0.18
## 2996        0.02         0.11
## 2997        0.01         0.10
## 2998        0.05         0.63
## 2999        0.03         0.20
## 3000        0.00         0.06
## 3001        0.12         1.70
## 3002        0.03         0.40
## 3003        0.02         0.27
## 3004        0.02         0.38
## 3005        0.02         0.28
## 3006        0.03         0.23
## 3007        0.00         0.03
## 3008        0.00         0.03
## 3009        0.00         0.02
## 3010        0.05         0.39
## 3011        0.00         0.11
## 3012        0.00         0.03
## 3013        0.05         0.42
## 3014        0.01         0.18
## 3015        0.01         0.17
## 3016        0.02         0.21
## 3017        0.03         0.19
## 3018        0.01         0.19
## 3019        0.04         0.27
## 3020        0.00         0.06
## 3021        0.00         0.05
## 3022        0.26         2.67
## 3023        0.05         1.12
## 3024        0.01         0.33
## 3025        0.24         2.89
## 3026        0.04         1.21
## 3027        0.01         0.40
## 3028        1.29        13.51
## 3029        1.63        10.69
## 3030        0.09         0.89
## 3031        0.16         0.89
## 3032        0.06         0.61
## 3033        0.01         0.03
## 3034        0.05         0.30
## 3035        0.03         0.27
## 3036        0.01         0.11
## 3037        0.01         0.06
## 3038        0.00         0.02
## 3039        0.00         0.02
## 3040        0.01         0.09
## 3041        0.00         0.07
## 3042        0.00         0.07
## 3043        0.04         0.22
## 3044        0.01         0.10
## 3045        0.00         0.04
## 3046        0.02         0.21
## 3047        0.01         0.11
## 3048        0.01         0.06
## 3049        0.00         0.05
## 3050        0.00         0.01
## 3051        0.00         0.01
## 3052        0.00         0.04
## 3053        0.00         0.02
## 3054        0.00         0.01
## 3055        0.05         0.39
## 3056        0.00         0.13
## 3057        0.00         0.04
## 3058        0.02         0.36
## 3059        0.01         0.14
## 3060        0.00         0.04
## 3061        0.02         0.32
## 3062        0.02         0.20
## 3063        0.00         0.01
## 3064        0.01         0.10
## 3065        0.00         0.05
## 3066        0.00         0.02
## 3067        0.21         0.94
## 3068        0.00         0.10
## 3069        0.00         0.01
## 3070        0.01         0.12
## 3071        0.00         0.10
## 3072        0.03         0.25
## 3073        0.04         0.35
## 3074        0.01         0.18
## 3075        0.01         0.14
## 3076        0.02         0.19
## 3077        0.03         0.19
## 3078        0.00         0.01
## 3079        0.06         1.57
## 3080        0.02         0.87
## 3081        0.00         0.08
## 3082        0.10         0.77
## 3083        0.01         0.28
## 3084        0.00         0.04
## 3085        0.01         0.11
## 3086        0.00         0.06
## 3087        0.00         0.04
## 3088        0.17         1.33
## 3089        0.01         0.28
## 3090        0.01         0.24
## 3091        0.82         5.42
## 3092        0.07         1.23
## 3093        0.02         0.59
## 3094        0.22         2.52
## 3095        0.08         1.81
## 3096        0.01         0.49
## 3097        0.02         0.13
## 3098        0.00         0.03
## 3099        0.00         0.01
## 3100        0.12         1.35
## 3101        0.21         1.30
## 3102        0.13         0.74
## 3103        0.08         0.92
## 3104        0.18         0.90
## 3105        0.09         0.64
## 3106        0.06         0.82
## 3107        0.09         0.75
## 3108        0.04         0.63
## 3109        0.01         0.09
## 3110        0.01         0.07
## 3111        0.00         0.01
## 3112        0.02         0.36
## 3113        0.02         0.20
## 3114        0.01         0.08
## 3115        0.13         1.09
## 3116        0.07         0.92
## 3117        0.03         0.19
## 3118        0.23         2.07
## 3119        0.08         1.00
## 3120        0.01         0.07
## 3121        0.21         1.56
## 3122        0.03         0.35
## 3123        0.00         0.05
## 3124        0.03         0.21
## 3125        0.00         0.10
## 3126        0.00         0.05
## 3127        0.06         0.36
## 3128        0.03         0.31
## 3129        0.00         0.02
## 3130        0.10         1.06
## 3131        0.02         0.15
## 3132        0.00         0.02
## 3133        0.07         0.39
## 3134        0.02         0.21
## 3135        0.01         0.12
## 3136        0.20         2.39
## 3137        0.31         2.29
## 3138        0.03         0.22
## 3139        0.07         0.79
## 3140        0.09         0.62
## 3141        0.01         0.08
## 3142        0.12         1.50
## 3143        0.22         1.38
## 3144        0.01         0.14
## 3145        0.03         0.33
## 3146        0.02         0.28
## 3147        0.01         0.06
## 3148        0.30         2.02
## 3149        0.13         1.42
## 3150        0.06         0.59
## 3151        0.13         1.52
## 3152        0.21         1.44
## 3153        0.05         0.33
## 3154        0.17         1.00
## 3155        0.08         0.99
## 3156        0.02         0.20
## 3157        0.01         0.12
## 3158        0.01         0.09
## 3159        0.01         0.08
## 3160        0.15         1.71
## 3161        0.09         1.31
## 3162        0.00         0.01
## 3163        0.02         0.35
## 3164        0.03         0.33
## 3165        0.02         0.29
## 3166        0.22         1.76
## 3167        0.01         0.22
## 3168        0.02         0.54
## 3169        0.04         0.57
## 3170        0.05         0.36
## 3171        0.02         0.21
## 3172        0.03         0.33
## 3173        0.04         0.17
## 3174        0.01         0.10
## 3175        0.05         0.33
## 3176        0.01         0.15
## 3177        0.00         0.02
## 3178        0.23         1.06
## 3179        0.09         0.87
## 3180        0.00         0.02
## 3181        0.21         1.08
## 3182        0.08         0.73
## 3183        0.03         0.16
## 3184        0.05         0.32
## 3185        0.01         0.11
## 3186        0.00         0.03
## 3187        0.01         0.09
## 3188        0.00         0.04
## 3189        0.00         0.02
## 3190        0.02         0.15
## 3191        0.00         0.09
## 3192        0.00         0.03
## 3193        0.01         0.10
## 3194        0.00         0.06
## 3195        0.00         0.03
## 3196        0.13         1.49
## 3197        0.22         0.34
## 3198        0.03         0.26
## 3199        0.10         1.07
## 3200        0.09         0.63
## 3201        0.05         0.57
## 3202        0.05         0.36
## 3203        0.00         0.10
## 3204        0.00         0.09
## 3205        0.00         0.13
## 3206        0.02         0.13
## 3207        0.00         0.07
## 3208        0.04         0.27
## 3209        0.01         0.07
## 3210        0.00         0.02
## 3211        0.34         3.07
## 3212        0.02         1.46
## 3213        0.01         1.13
## 3214        0.23         9.30
## 3215        0.13         2.19
## 3216        0.07         2.04
## 3217        0.05         0.78
## 3218        0.00         0.14
## 3219        0.00         0.03
## 3220        0.22         1.39
## 3221        0.06         0.68
## 3222        0.01         0.18
## 3223        0.10         0.59
## 3224        0.04         0.49
## 3225        0.01         0.03
## 3226        0.04         0.57
## 3227        0.04         0.46
## 3228        0.05         0.38
## 3229        0.01         0.11
## 3230        0.01         0.09
## 3231        0.00         0.04
## 3232        0.02         0.16
## 3233        0.00         0.06
## 3234        0.00         0.03
## 3235        0.09         1.12
## 3236        0.12         0.84
## 3237        0.09         0.64
## 3238        0.04         0.47
## 3239        0.02         0.26
## 3240        0.02         0.14
## 3241        0.22         2.57
## 3242        0.22         1.69
## 3243        0.06         0.51
## 3244        0.05         0.33
## 3245        0.02         0.12
## 3246        0.01         0.08
## 3247        0.06         0.46
## 3248        0.01         0.24
## 3249        0.01         0.21
## 3250        0.00         0.30
## 3251        0.00         0.22
## 3252        0.00         0.12
## 3253        0.00         0.28
## 3254        0.00         0.23
## 3255        0.00         0.13
## 3256        0.00         0.96
## 3257        0.00         0.40
## 3258        0.00         0.17
## 3259        0.16         1.23
## 3260        0.03         0.76
## 3261        0.00         0.03
## 3262        0.02         0.15
## 3263        0.00         0.08
## 3264        0.00         0.03
## 3265        0.03         0.28
## 3266        0.00         0.07
## 3267        0.00         0.03
## 3268        0.02         0.13
## 3269        0.00         0.03
## 3270        0.00         0.03
## 3271        0.07         0.84
## 3272        0.12         0.77
## 3273        0.06         0.41
## 3274        0.06         0.39
## 3275        0.03         0.37
## 3276        0.02         0.17
## 3277        0.26         1.66
## 3278        0.07         0.81
## 3279        0.02         0.18
## 3280        0.04         0.71
## 3281        0.02         0.30
## 3282        0.03         0.25
## 3283        0.04         0.30
## 3284        0.01         0.16
## 3285        0.02         0.15
## 3286        0.03         0.50
## 3287        0.01         0.34
## 3288        0.01         0.19
## 3289        0.02         0.45
## 3290        0.03         0.29
## 3291        0.02         0.23
## 3292        0.11         1.30
## 3293        0.12         0.92
## 3294        0.04         0.39
## 3295        0.00         0.03
## 3296        0.00         0.01
## 3297        0.00         0.01
## 3298        0.04         0.45
## 3299        0.04         0.35
## 3300        0.00         0.02
## 3301        0.19         3.18
## 3302        0.04         1.20
## 3303        0.01         0.45
## 3304        0.01         0.16
## 3305        0.01         0.14
## 3306        0.01         0.11
## 3307        0.15         0.95
## 3308        0.06         0.62
## 3309        0.01         0.18
## 3310        0.05         0.53
## 3311        0.08         0.49
## 3312        0.01         0.07
## 3313        0.07         0.46
## 3314        0.04         0.45
## 3315        0.03         0.15
## 3316        0.01         0.12
## 3317        0.00         0.03
## 3318        0.00         0.02
## 3319        0.27         1.35
## 3320        0.10         0.89
## 3321        0.01         0.06
## 3322        0.25         1.07
## 3323        0.06         0.50
## 3324        0.03         0.15
## 3325        0.08         0.49
## 3326        0.02         0.26
## 3327        0.01         0.10
## 3328        0.09         0.66
## 3329        0.02         0.24
## 3330        0.00         0.05
## 3331        0.04         0.27
## 3332        0.01         0.09
## 3333        0.00         0.02
## 3334        0.08         0.35
## 3335        0.03         0.29
## 3336        0.00         0.02
## 3337        0.08         0.63
## 3338        0.00         0.18
## 3339        0.01         0.15
## 3340        0.06         0.33
## 3341        0.03         0.30
## 3342        0.01         0.09
## 3343        0.44         4.96
## 3344        0.59         4.01
## 3345        0.08         0.99
## 3346        1.10         6.96
## 3347        0.37         4.09
## 3348        0.10         1.23
## 3349        0.33         4.08
## 3350        0.47         3.17
## 3351        0.14         1.16
## 3352        0.01         0.19
## 3353        0.01         0.11
## 3354        0.01         0.08
## 3355        0.07         0.50
## 3356        0.01         0.27
## 3357        0.01         0.24
## 3358        0.18         1.60
## 3359        0.27         1.40
## 3360        0.03         0.49
## 3361        0.72         3.45
## 3362        0.28         3.04
## 3363        0.14         0.98
## 3364        0.33         2.13
## 3365        0.07         0.85
## 3366        0.01         0.14
## 3367        0.18         0.99
## 3368        0.03         0.39
## 3369        0.04         0.16
## 3370        0.12         0.87
## 3371        0.02         0.60
## 3372        0.00         0.17
## 3373        0.12         1.77
## 3374        0.00         0.76
## 3375        0.00         0.25
## 3376        0.14         0.97
## 3377        0.00         0.81
## 3378        0.02         0.25
## 3379        0.17         1.50
## 3380        0.15         1.12
## 3381        0.10         0.72
## 3382        0.01         0.12
## 3383        0.00         0.02
## 3384        0.00         0.02
## 3385        0.02         0.18
## 3386        0.00         0.08
## 3387        0.00         0.03
## 3388        0.00         0.30
## 3389        0.00         0.06
## 3390        0.00         0.02
## 3391        0.01         0.48
## 3392        0.03         0.20
## 3393        0.02         0.14
## 3394        0.00         0.01
## 3395        0.01         0.10
## 3396        0.00         0.03
## 3397        0.07         0.52
## 3398        0.01         0.23
## 3399        0.00         0.13
## 3400        0.14         1.06
## 3401        0.00         0.09
## 3402        0.00         0.01
## 3403        0.01         0.09
## 3404        0.00         0.02
## 3405        0.00         0.02
## 3406        0.01         0.04
## 3407        0.00         0.02
## 3408        0.00         0.02
## 3409        0.01         0.10
## 3410        0.00         0.05
## 3411        0.00         0.03
## 3412        0.03         0.29
## 3413        0.02         0.20
## 3414        0.00         0.05
## 3415        0.04         0.31
## 3416        0.05         0.25
## 3417        0.00         0.02
## 3418        0.01         0.07
## 3419        0.00         0.03
## 3420        0.00         0.02
## 3421        0.09         0.39
## 3422        0.03         0.29
## 3423        0.01         0.07
## 3424        0.04         0.21
## 3425        0.01         0.10
## 3426        0.00         0.03
## 3427        0.02         0.26
## 3428        0.04         0.25
## 3429        0.01         0.08
## 3430        0.15         1.15
## 3431        0.00         0.18
## 3432        0.01         0.17
## 3433        0.07         0.38
## 3434        0.01         0.08
## 3435        0.01         0.09
## 3436        0.27         2.58
## 3437        0.36         2.08
## 3438        0.02         0.09
## 3439        0.03         0.20
## 3440        0.00         0.14
## 3441        0.00         0.07
## 3442        0.02         0.17
## 3443        0.00         0.08
## 3444        0.00         0.02
## 3445        0.02         0.33
## 3446        0.01         0.17
## 3447        0.01         0.07
## 3448        1.03        11.02
## 3449        1.62        10.57
## 3450        0.08         0.88
## 3451        0.07         0.42
## 3452        0.04         0.41
## 3453        0.03         0.38
## 3454        0.01         0.21
## 3455        0.01         0.13
## 3456        0.00         0.04
## 3457        0.00         0.04
## 3458        0.00         0.03
## 3459        0.00         0.01
## 3460        0.00         0.06
## 3461        0.00         0.05
## 3462        0.00         0.02
## 3463        0.01         0.08
## 3464        0.01         0.06
## 3465        0.00         0.03
## 3466        0.09         1.01
## 3467        0.08         0.87
## 3468        0.14         0.82
## 3469        0.01         0.06
## 3470        0.01         0.05
## 3471        0.00         0.01
## 3472        0.02         0.31
## 3473        0.01         0.25
## 3474        0.01         0.14
## 3475        0.01         0.12
## 3476        0.01         0.09
## 3477        0.01         0.09
## 3478        0.13         1.45
## 3479        0.07         0.57
## 3480        0.02         0.22
## 3481        0.07         0.82
## 3482        0.03         0.25
## 3483        0.01         0.21
## 3484        0.01         0.18
## 3485        0.01         0.11
## 3486        0.00         0.02
## 3487        0.02         0.17
## 3488        0.01         0.11
## 3489        0.00         0.04
## 3490        0.04         0.29
## 3491        0.00         0.13
## 3492        0.00         0.02
## 3493        0.13         1.31
## 3494        0.04         0.34
## 3495        0.01         0.20
## 3496        0.41         2.96
## 3497        0.00         0.13
## 3498        0.05         1.19
## 3499        0.45         2.19
## 3500        0.17         1.76
## 3501        0.04         0.25
## 3502        0.12         1.46
## 3503        0.15         0.91
## 3504        0.03         0.24
## 3505        0.04         0.31
## 3506        0.01         0.12
## 3507        0.00         0.02
## 3508        0.06         0.47
## 3509        0.00         0.16
## 3510        0.00         0.11
## 3511        0.08         0.59
## 3512        0.01         0.45
## 3513        0.00         0.10
## 3514        0.14         1.06
## 3515        0.01         0.33
## 3516        0.01         0.19
## 3517        0.04         0.26
## 3518        0.02         0.22
## 3519        0.01         0.05
## 3520        0.05         0.40
## 3521        0.00         0.09
## 3522        0.00         0.07
## 3523        0.02         0.15
## 3524        0.00         0.10
## 3525        0.00         0.02
## 3526        0.02         0.16
## 3527        0.00         0.06
## 3528        0.00         0.05
## 3529        0.00         0.01
## 3530        0.01         0.07
## 3531        0.01         0.06
## 3532        0.02         0.32
## 3533        0.02         0.26
## 3534        0.04         0.25
## 3535        0.02         0.11
## 3536        0.01         0.09
## 3537        0.00         0.04
## 3538        0.41         3.53
## 3539        0.03         0.90
## 3540        0.02         0.72
## 3541        0.07         0.36
## 3542        0.03         0.30
## 3543        0.01         0.13
## 3544        0.00         0.17
## 3545        0.00         0.17
## 3546        0.00         0.11
## 3547        0.00         0.21
## 3548        0.00         0.15
## 3549        0.00         0.09
## 3550        0.00         0.26
## 3551        0.00         0.17
## 3552        0.00         0.10
## 3553        0.01         0.09
## 3554        0.01         0.08
## 3555        0.01         0.07
## 3556        0.01         0.42
## 3557        0.05         0.41
## 3558        0.00         0.09
## 3559        0.04         0.34
## 3560        0.06         0.26
## 3561        0.01         0.05
## 3562        0.01         0.09
## 3563        0.01         0.07
## 3564        0.00         0.06
## 3565        0.03         0.27
## 3566        0.00         0.07
## 3567        0.00         0.03
## 3568        0.01         0.14
## 3569        0.00         0.02
## 3570        0.00         0.02
## 3571        0.33         1.78
## 3572        0.17         1.62
## 3573        0.03         0.13
## 3574        0.28         1.83
## 3575        0.07         0.88
## 3576        0.01         0.14
## 3577        1.07        10.26
## 3578        0.16         2.03
## 3579        0.09         0.63
## 3580        0.03         0.41
## 3581        0.02         0.29
## 3582        0.04         0.25
## 3583        0.01         0.08
## 3584        0.01         0.07
## 3585        0.01         0.07
## 3586        0.00         0.05
## 3587        0.00         0.05
## 3588        0.00         0.04
## 3589        0.10         0.59
## 3590        0.05         0.49
## 3591        0.01         0.07
## 3592        0.04         0.30
## 3593        0.00         0.07
## 3594        0.00         0.07
## 3595        0.02         0.33
## 3596        0.01         0.11
## 3597        0.01         0.09
## 3598        0.09         0.70
## 3599        0.01         0.24
## 3600        0.00         0.02
## 3601        0.02         0.13
## 3602        0.00         0.05
## 3603        0.00         0.04
## 3604        0.07         0.89
## 3605        0.11         0.87
## 3606        0.04         0.31
## 3607        0.00         0.09
## 3608        0.00         0.03
## 3609        0.00         0.01
## 3610        0.00         0.03
## 3611        0.00         0.02
## 3612        0.00         0.02
## 3613        0.03         0.31
## 3614        0.04         0.16
## 3615        0.00         0.03
## 3616        0.07         0.53
## 3617        0.01         0.19
## 3618        0.00         0.01
## 3619        0.03         0.26
## 3620        0.02         0.13
## 3621        0.00         0.02
## 3622        0.10         0.76
## 3623        0.00         0.14
## 3624        0.00         0.13
## 3625        0.01         0.03
## 3626        0.00         0.03
## 3627        0.00         0.02
## 3628        0.06         0.37
## 3629        0.01         0.11
## 3630        0.00         0.04
## 3631        0.00         0.19
## 3632        0.00         0.10
## 3633        0.00         0.04
## 3634        0.00         0.05
## 3635        0.00         0.04
## 3636        0.00         0.03
## 3637        0.05         0.38
## 3638        0.02         0.23
## 3639        0.01         0.08
## 3640        0.06         0.50
## 3641        0.00         0.18
## 3642        0.00         0.17
## 3643        0.09         0.51
## 3644        0.02         0.22
## 3645        0.00         0.03
## 3646        0.13         0.96
## 3647        0.06         0.76
## 3648        0.01         0.03
## 3649        0.03         0.22
## 3650        0.01         0.12
## 3651        0.01         0.04
## 3652        0.07         0.59
## 3653        0.09         0.51
## 3654        0.00         0.02
## 3655        0.13         0.93
## 3656        0.02         0.31
## 3657        0.02         0.28
## 3658        0.05         0.70
## 3659        0.06         0.42
## 3660        0.02         0.33
## 3661        0.05         0.72
## 3662        0.04         0.33
## 3663        0.02         0.26
## 3664        0.05         0.71
## 3665        0.05         0.41
## 3666        0.02         0.20
## 3667        0.04         0.58
## 3668        0.01         0.16
## 3669        0.02         0.13
## 3670        0.07         0.65
## 3671        0.04         0.39
## 3672        0.02         0.14
## 3673        0.17         0.92
## 3674        0.07         0.39
## 3675        0.01         0.04
## 3676        0.01         0.15
## 3677        0.01         0.13
## 3678        0.00         0.06
## 3679        0.07         0.53
## 3680        0.00         0.09
## 3681        0.00         0.04
## 3682        0.03         0.26
## 3683        0.00         0.10
## 3684        0.00         0.05
## 3685        0.18         1.34
## 3686        0.02         0.59
## 3687        0.01         0.26
## 3688        0.21         1.54
## 3689        0.03         0.94
## 3690        0.01         0.33
## 3691        0.07         0.56
## 3692        0.00         0.16
## 3693        0.00         0.13
## 3694        0.04         0.28
## 3695        0.00         0.10
## 3696        0.00         0.09
## 3697        0.01         0.08
## 3698        0.00         0.05
## 3699        0.00         0.01
## 3700        0.04         1.67
## 3701        0.20         1.50
## 3702        0.01         0.64
## 3703        0.09         0.70
## 3704        0.01         0.23
## 3705        0.01         0.05
## 3706        0.15         1.55
## 3707        0.26         1.52
## 3708        0.06         0.40
## 3709        0.01         0.10
## 3710        0.01         0.08
## 3711        0.00         0.08
## 3712        0.07         0.56
## 3713        0.06         0.54
## 3714        0.10         0.32
## 3715        0.03         0.21
## 3716        0.01         0.20
## 3717        0.01         0.18
## 3718        0.08         0.76
## 3719        0.00         0.14
## 3720        0.00         0.14
## 3721        0.27         3.11
## 3722        0.20         1.48
## 3723        0.07         0.40
## 3724        0.03         0.41
## 3725        0.04         0.41
## 3726        0.03         0.28
## 3727        0.17         1.34
## 3728        0.02         0.64
## 3729        0.00         0.03
## 3730        0.32         1.90
## 3731        0.14         1.66
## 3732        0.06         0.43
## 3733        0.25         1.23
## 3734        0.12         1.10
## 3735        0.01         0.05
## 3736        0.99         6.83
## 3737        0.06         1.49
## 3738        0.02         0.59
## 3739        0.80         5.13
## 3740        0.05         1.17
## 3741        0.01         0.42
## 3742        0.28         1.46
## 3743        0.10         1.17
## 3744        0.04         0.33
## 3745        0.08         0.59
## 3746        0.01         0.42
## 3747        0.00         0.13
## 3748        0.10         1.06
## 3749        0.16         0.87
## 3750        0.17         0.38
## 3751        0.04         0.35
## 3752        0.01         0.17
## 3753        0.00         0.10
## 3754        0.09         0.48
## 3755        0.00         0.10
## 3756        0.00         0.01
## 3757        0.01         0.15
## 3758        0.01         0.05
## 3759        0.00         0.01
## 3760        0.19         1.46
## 3761        0.01         0.43
## 3762        0.00         0.17
## 3763        0.09         0.68
## 3764        0.01         0.31
## 3765        0.00         0.16
## 3766        0.02         0.16
## 3767        0.00         0.08
## 3768        0.00         0.07
## 3769        0.01         0.05
## 3770        0.00         0.02
## 3771        0.00         0.01
## 3772        0.02         0.32
## 3773        0.02         0.26
## 3774        0.01         0.12
## 3775        0.13         1.17
## 3776        0.22         1.14
## 3777        0.01         0.06
## 3778        0.06         0.32
## 3779        0.02         0.15
## 3780        0.01         0.05
## 3781        0.04         0.17
## 3782        0.03         0.11
## 3783        0.01         0.06
## 3784        0.06         0.51
## 3785        0.01         0.18
## 3786        0.00         0.13
## 3787        0.08         0.76
## 3788        0.07         0.41
## 3789        0.03         0.28
## 3790        0.07         2.79
## 3791        0.11         2.25
## 3792        0.04         0.72
## 3793        0.08         0.65
## 3794        0.00         0.10
## 3795        0.00         0.05
## 3796        0.02         0.32
## 3797        0.01         0.14
## 3798        0.01         0.11
## 3799        0.05         1.53
## 3800        0.04         1.34
## 3801        0.04         0.55
## 3802        0.47         2.70
## 3803        0.13         1.35
## 3804        0.00         0.05
## 3805        0.24         1.88
## 3806        0.03         0.76
## 3807        0.00         0.11
## 3808        0.08         0.39
## 3809        0.04         0.35
## 3810        0.21         0.22
## 3811        0.41         3.69
## 3812        0.17         1.68
## 3813        0.00         0.03
## 3814        0.02         0.29
## 3815        0.03         0.24
## 3816        0.03         0.23
## 3817        0.07         0.53
## 3818        0.02         0.26
## 3819        0.02         0.25
## 3820        0.18         1.41
## 3821        0.02         0.45
## 3822        0.00         0.12
## 3823        0.02         0.30
## 3824        0.02         0.27
## 3825        0.01         0.24
## 3826        0.08         0.60
## 3827        0.01         0.20
## 3828        0.00         0.16
## 3829        0.15         1.16
## 3830        0.03         0.42
## 3831        0.01         0.33
## 3832        0.01         0.31
## 3833        0.01         0.27
## 3834        0.16         1.22
## 3835        0.02         0.26
## 3836        0.02         0.20
## 3837        0.00         0.02
## 3838        0.01         0.13
## 3839        0.02         0.13
## 3840        0.00         0.03
## 3841        0.01         0.17
## 3842        0.02         0.17
## 3843        0.01         0.15
## 3844        0.15         1.22
## 3845        0.01         0.20
## 3846        0.00         0.12
## 3847        0.13         1.05
## 3848        0.01         0.32
## 3849        0.00         0.16
## 3850        0.11         0.88
## 3851        0.01         0.36
## 3852        0.02         0.23
## 3853        0.07         0.85
## 3854        0.08         0.60
## 3855        0.05         0.55
## 3856        0.11         1.27
## 3857        0.05         0.61
## 3858        0.06         0.41
## 3859        0.03         1.11
## 3860        0.02         1.01
## 3861        0.02         0.25
## 3862        0.05         0.54
## 3863        0.03         0.45
## 3864        0.02         0.24
## 3865        0.24         1.86
## 3866        0.03         0.52
## 3867        0.02         0.40
## 3868        0.22         1.66
## 3869        0.01         0.30
## 3870        0.01         0.36
## 3871        0.27         2.03
## 3872        0.02         0.51
## 3873        0.01         0.27
## 3874        0.35         2.59
## 3875        0.04         0.90
## 3876        0.01         0.45
## 3877        0.14         1.06
## 3878        0.01         0.32
## 3879        0.01         0.29
## 3880        0.06         1.95
## 3881        0.02         0.68
## 3882        0.01         0.54
## 3883        0.04         0.28
## 3884        0.02         0.22
## 3885        0.01         0.17
## 3886        0.06         0.92
## 3887        0.06         0.84
## 3888        0.05         0.38
## 3889        0.19         1.44
## 3890        0.02         0.52
## 3891        0.01         0.21
## 3892        0.23         1.67
## 3893        0.02         0.43
## 3894        0.00         0.15
## 3895        0.22         1.62
## 3896        0.03         0.68
## 3897        0.01         0.22
## 3898        0.03         0.26
## 3899        0.02         0.21
## 3900        0.01         0.09
## 3901        0.18         1.32
## 3902        0.02         0.52
## 3903        0.01         0.22
## 3904        0.04         0.28
## 3905        0.00         0.09
## 3906        0.00         0.09
## 3907        0.06         0.44
## 3908        0.01         0.14
## 3909        0.00         0.14
## 3910        0.03         0.23
## 3911        0.00         0.05
## 3912        0.00         0.02
## 3913        0.19         1.42
## 3914        0.02         0.66
## 3915        0.01         0.35
## 3916        0.21         1.61
## 3917        0.02         0.48
## 3918        0.01         0.20
## 3919        0.08         0.58
## 3920        0.01         0.25
## 3921        0.00         0.08
## 3922        0.15         1.20
## 3923        0.01         0.27
## 3924        0.00         0.12
## 3925        0.12         0.93
## 3926        0.01         0.21
## 3927        0.00         0.13
## 3928        0.12         0.97
## 3929        0.01         0.18
## 3930        0.00         0.10
## 3931        0.06         0.45
## 3932        0.01         0.16
## 3933        0.00         0.07
## 3934        0.03         0.21
## 3935        0.00         0.12
## 3936        0.00         0.02
## 3937        0.05         0.42
## 3938        0.01         0.21
## 3939        0.01         0.10
## 3940        0.01         0.12
## 3941        0.01         0.08
## 3942        0.00         0.01
## 3943        0.07         0.56
## 3944        0.01         0.27
## 3945        0.01         0.21
## 3946        0.04         0.28
## 3947        0.00         0.11
## 3948        0.00         0.08
## 3949        0.00         0.04
## 3950        0.02         0.19
## 3951        0.00         0.07
## 3952        0.01         0.10
## 3953        0.00         0.04
## 3954        0.00         0.03
## 3955        0.00         0.07
## 3956        0.01         0.11
## 3957        0.01         0.05
## 3958        0.01         0.10
## 3959        0.01         0.08
## 3960        0.01         0.05
## 3961        0.36         2.39
## 3962        0.06         0.68
## 3963        0.00         0.03
## 3964        0.09         2.11
## 3965        0.03         0.82
## 3966        0.02         0.80
## 3967        0.13         0.69
## 3968        0.04         0.44
## 3969        0.03         0.19
## 3970        0.06         0.50
## 3971        0.03         0.44
## 3972        0.00         0.05
## 3973        0.01         0.16
## 3974        0.01         0.13
## 3975        0.01         0.10
## 3976        0.06         0.41
## 3977        0.01         0.35
## 3978        0.01         0.11
## 3979        0.04         0.34
## 3980        0.03         0.33
## 3981        0.01         0.11
## 3982        0.05         0.44
## 3983        0.02         0.25
## 3984        0.02         0.19
## 3985        0.00         0.04
## 3986        0.00         0.04
## 3987        0.00         0.03
## 3988        0.02         0.18
## 3989        0.02         0.15
## 3990        0.01         0.06
## 3991        0.05         0.64
## 3992        0.34         0.63
## 3993        0.00         0.14
## 3994        0.04         0.28
## 3995        0.01         0.11
## 3996        0.00         0.04
## 3997        0.05         0.45
## 3998        0.01         0.29
## 3999        0.02         0.22
## 4000        0.10         0.93
## 4001        0.17         0.92
## 4002        0.01         0.05
## 4003        0.05         0.33
## 4004        0.03         0.29
## 4005        0.01         0.07
## 4006        0.03         0.32
## 4007        0.06         0.32
## 4008        0.01         0.03
## 4009        0.26         1.73
## 4010        0.08         0.85
## 4011        0.04         0.43
## 4012        0.00         0.01
## 4013        0.00         0.02
## 4014        0.01         0.24
## 4015        0.03         0.11
## 4016        0.01         0.11
## 4017        0.00         0.02
## 4018        0.00         0.08
## 4019        0.00         0.04
## 4020        0.00         0.02
## 4021        0.02         0.24
## 4022        0.00         0.16
## 4023        0.01         0.11
## 4024        0.00         0.07
## 4025        0.00         0.04
## 4026        0.00         0.02
## 4027        0.12         1.10
## 4028        0.04         0.58
## 4029        0.07         0.56
## 4030        0.11         1.02
## 4031        0.03         0.45
## 4032        0.05         0.37
## 4033        0.03         0.44
## 4034        0.03         0.43
## 4035        0.03         0.26
## 4036        0.05         0.60
## 4037        0.05         0.56
## 4038        0.05         0.33
## 4039        0.01         0.10
## 4040        0.00         0.05
## 4041        0.00         0.05
## 4042        0.02         0.14
## 4043        0.01         0.09
## 4044        0.01         0.07
## 4045        0.01         0.47
## 4046        0.02         0.28
## 4047        0.02         0.26
## 4048        0.07         0.45
## 4049        0.04         0.44
## 4050        0.00         0.05
## 4051        0.03         0.34
## 4052        0.01         0.10
## 4053        0.00         0.01
## 4054        0.17         2.10
## 4055        0.25         1.74
## 4056        0.11         0.76
## 4057        0.09         0.71
## 4058        0.01         0.49
## 4059        0.01         0.40
## 4060        0.09         0.68
## 4061        0.03         0.58
## 4062        0.00         0.15
## 4063        0.22         1.64
## 4064        0.04         0.80
## 4065        0.01         0.20
## 4066        0.03         0.28
## 4067        0.00         0.06
## 4068        0.00         0.03
## 4069        0.00         0.24
## 4070        0.00         0.21
## 4071        0.00         0.10
## 4072        0.00         0.24
## 4073        0.00         0.18
## 4074        0.00         0.07
## 4075        0.00         0.20
## 4076        0.00         0.19
## 4077        0.00         0.06
## 4078        0.00         0.20
## 4079        0.00         0.20
## 4080        0.00         0.06
## 4081        0.00         0.14
## 4082        0.00         0.09
## 4083        0.00         0.07
## 4084        0.00         0.25
## 4085        0.00         0.23
## 4086        0.00         0.19
## 4087        0.15         1.04
## 4088        0.02         0.23
## 4089        0.01         0.11
## 4090        0.02         0.16
## 4091        0.01         0.05
## 4092        0.00         0.01
## 4093        0.00         0.30
## 4094        0.00         0.05
## 4095        0.00         0.03
## 4096        0.01         0.20
## 4097        0.00         0.03
## 4098        0.00         0.02
## 4099        0.09         0.51
## 4100        0.05         0.28
## 4101        0.03         0.27
## 4102        0.04         0.28
## 4103        0.00         0.09
## 4104        0.00         0.08
## 4105        0.15         1.62
## 4106        0.21         1.33
## 4107        0.06         0.37
## 4108        0.01         0.40
## 4109        0.05         0.37
## 4110        0.02         0.22
## 4111        0.05         0.36
## 4112        0.01         0.16
## 4113        0.00         0.06
## 4114        0.08         0.60
## 4115        0.00         0.07
## 4116        0.00         0.14
## 4117        0.10         0.81
## 4118        0.03         0.52
## 4119        0.00         0.24
## 4120        0.23         1.50
## 4121        0.00         0.12
## 4122        0.00         0.03
## 4123        0.07         0.46
## 4124        0.04         0.39
## 4125        0.01         0.09
## 4126        0.09         0.87
## 4127        0.12         0.75
## 4128        0.01         0.03
## 4129        0.01         0.07
## 4130        0.00         0.03
## 4131        0.00         0.02
## 4132        0.07         0.35
## 4133        0.02         0.18
## 4134        0.01         0.06
## 4135        0.73         5.05
## 4136        0.00         0.17
## 4137        0.00         0.12
## 4138        0.45         5.82
## 4139        0.01         0.56
## 4140        0.00         0.06
## 4141        0.65         5.11
## 4142        0.34         3.51
## 4143        0.01         0.07
## 4144        0.10         1.18
## 4145        0.06         0.78
## 4146        0.01         0.04
## 4147        0.28         1.41
## 4148        0.05         0.79
## 4149        0.03         0.20
## 4150        0.03         0.18
## 4151        0.01         0.12
## 4152        0.00         0.02
## 4153        0.10         1.30
## 4154        0.03         0.40
## 4155        0.01         0.10
## 4156        0.05         0.24
## 4157        0.04         0.23
## 4158        0.01         0.15
## 4159        0.02         0.17
## 4160        0.00         0.08
## 4161        0.00         0.03
## 4162        0.08         0.61
## 4163        0.00         0.16
## 4164        0.01         0.21
## 4165        0.00         0.11
## 4166        0.00         0.02
## 4167        0.00         0.02
## 4168        0.01         0.09
## 4169        0.01         0.07
## 4170        0.00         0.05
## 4171        0.07         0.23
## 4172        0.01         0.12
## 4173        0.00         0.02
## 4174        0.10         0.82
## 4175        0.01         0.28
## 4176        0.01         0.23
## 4177        0.17         1.16
## 4178        0.08         1.12
## 4179        0.01         0.12
## 4180        0.11         0.86
## 4181        0.01         0.15
## 4182        0.00         0.09
## 4183        0.03         0.23
## 4184        0.00         0.13
## 4185        0.00         0.05
## 4186        0.62         1.14
## 4187        0.00         0.09
## 4188        0.01         0.03
## 4189        0.07         0.37
## 4190        0.03         0.29
## 4191        0.00         0.02
## 4192        0.03         0.14
## 4193        0.01         0.07
## 4194        0.01         0.03
## 4195        0.02         0.19
## 4196        0.01         0.15
## 4197        0.01         0.07
## 4198        0.07         0.54
## 4199        0.01         0.24
## 4200        0.00         0.08
## 4201        0.20         1.66
## 4202        0.14         0.93
## 4203        0.06         0.72
## 4204        0.09         0.62
## 4205        0.05         0.54
## 4206        0.01         0.06
## 4207        0.02         0.12
## 4208        0.01         0.06
## 4209        0.00         0.02
## 4210        0.27         3.03
## 4211        0.25         1.69
## 4212        0.01         0.04
## 4213        0.30         2.77
## 4214        0.39         2.49
## 4215        0.06         0.38
## 4216        0.01         0.09
## 4217        0.02         0.15
## 4218        0.00         0.06
## 4219        0.01         0.61
## 4220        0.01         0.08
## 4221        0.00         0.03
## 4222        0.00         0.26
## 4223        0.03         0.24
## 4224        0.00         0.11
## 4225        0.01         0.11
## 4226        0.00         0.11
## 4227        0.00         0.05
## 4228        0.01         0.09
## 4229        0.00         0.06
## 4230        0.00         0.05
## 4231        0.01         0.09
## 4232        0.00         0.04
## 4233        0.00         0.04
## 4234        0.01         0.14
## 4235        0.01         0.14
## 4236        0.01         0.13
## 4237        0.07         0.99
## 4238        0.07         0.87
## 4239        0.16         0.33
## 4240        0.22         2.10
## 4241        0.01         0.30
## 4242        0.01         0.14
## 4243        0.04         0.46
## 4244        0.03         0.40
## 4245        0.08         0.27
## 4246        0.03         0.25
## 4247        0.02         0.25
## 4248        0.01         0.09
## 4249        0.02         0.14
## 4250        0.00         0.07
## 4251        0.00         0.05
## 4252        0.01         0.04
## 4253        0.00         0.03
## 4254        0.00         0.01
## 4255        0.01         0.07
## 4256        0.00         0.05
## 4257        0.01         0.05
## 4258        0.02         0.12
## 4259        0.00         0.07
## 4260        0.00         0.05
## 4261        0.02         0.31
## 4262        0.02         0.28
## 4263        0.00         0.05
## 4264        0.02         0.39
## 4265        0.02         0.28
## 4266        0.00         0.05
## 4267        0.03         0.99
## 4268        0.08         0.60
## 4269        0.01         0.18
## 4270        0.00         0.31
## 4271        0.01         0.30
## 4272        0.01         0.15
## 4273        0.01         0.13
## 4274        0.01         0.11
## 4275        0.01         0.08
## 4276        0.02         1.86
## 4277        0.03         1.02
## 4278        0.02         0.55
## 4279        0.04         0.29
## 4280        0.00         0.13
## 4281        0.00         0.05
## 4282        0.02         0.31
## 4283        0.02         0.24
## 4284        0.01         0.07
## 4285        0.07         0.83
## 4286        0.10         0.79
## 4287        0.04         0.46
## 4288        0.02         0.20
## 4289        0.01         0.16
## 4290        0.01         0.14
## 4291        0.23         0.59
## 4292        0.05         0.48
## 4293        0.08         0.31
## 4294        0.03         0.24
## 4295        0.01         0.05
## 4296        0.02         0.32
## 4297        0.01         0.10
## 4298        0.01         0.09
## 4299        0.00         0.04
## 4300        0.00         0.07
## 4301        0.00         0.04
## 4302        0.00         0.03
## 4303        0.15         0.98
## 4304        0.07         0.85
## 4305        0.00         0.02
## 4306        0.12         1.16
## 4307        0.14         0.80
## 4308        0.03         0.16
## 4309        0.07         0.35
## 4310        0.02         0.22
## 4311        0.01         0.08
## 4312        0.01         0.06
## 4313        0.00         0.04
## 4314        0.00         0.02
## 4315        0.15         1.51
## 4316        0.11         1.09
## 4317        0.17         0.98
## 4318        0.49         2.96
## 4319        0.04         1.60
## 4320        0.05         0.90
## 4321        0.03         0.92
## 4322        0.07         0.50
## 4323        0.00         0.13
## 4324        0.25         2.06
## 4325        0.08         1.50
## 4326        0.00         1.00
## 4327        0.17         0.98
## 4328        0.08         0.95
## 4329        0.02         0.20
## 4330        0.03         0.22
## 4331        0.00         0.13
## 4332        0.00         0.07
## 4333        0.06         0.44
## 4334        0.01         0.17
## 4335        0.00         0.07
## 4336        0.09         0.57
## 4337        0.04         0.43
## 4338        0.03         0.23
## 4339        0.01         0.09
## 4340        0.00         0.05
## 4341        0.00         0.02
## 4342        0.03         0.41
## 4343        0.03         0.36
## 4344        0.03         0.21
## 4345        0.06         0.45
## 4346        0.00         0.14
## 4347        0.00         0.12
## 4348        0.16         3.13
## 4349        0.01         0.93
## 4350        0.01         0.53
## 4351        0.07         0.58
## 4352        0.04         0.57
## 4353        0.04         0.53
## 4354        0.04         0.51
## 4355        0.04         0.49
## 4356        0.01         0.33
## 4357        0.00         0.06
## 4358        0.00         0.05
## 4359        0.00         0.05
## 4360        0.04         1.19
## 4361        0.14         1.08
## 4362        0.01         0.20
## 4363        0.11         1.61
## 4364        0.04         0.62
## 4365        0.06         0.44
## 4366        0.01         0.16
## 4367        0.00         0.07
## 4368        0.01         0.07
## 4369        0.01         0.09
## 4370        0.01         0.05
## 4371        0.00         0.03
## 4372        0.22         1.67
## 4373        0.01         0.34
## 4374        0.01         0.20
## 4375        0.08         0.64
## 4376        0.01         0.29
## 4377        0.01         0.14
## 4378        0.01         0.07
## 4379        0.00         0.03
## 4380        0.00         0.03
## 4381        0.05         0.26
## 4382        0.02         0.22
## 4383        0.00         0.03
## 4384        1.23         7.67
## 4385        0.31         3.49
## 4386        0.04         0.54
## 4387        0.44         3.61
## 4388        0.07         1.75
## 4389        0.02         0.20
## 4390        0.06         0.50
## 4391        0.01         0.40
## 4392        0.00         0.13
## 4393        0.00         0.05
## 4394        0.00         0.05
## 4395        0.00         0.03
## 4396        0.00         0.08
## 4397        0.00         0.06
## 4398        0.00         0.02
## 4399        0.02         0.17
## 4400        0.01         0.15
## 4401        0.00         0.02
## 4402        0.06         0.85
## 4403        0.00         0.32
## 4404        0.00         0.17
## 4405        0.53         4.19
## 4406        0.26         2.95
## 4407        0.02         0.13
## 4408        0.12         0.91
## 4409        0.01         0.28
## 4410        0.00         0.12
## 4411        0.08         0.62
## 4412        0.00         0.06
## 4413        0.00         0.04
## 4414        0.07         0.64
## 4415        0.10         0.53
## 4416        0.03         0.27
## 4417        0.00         0.15
## 4418        0.01         0.08
## 4419        0.00         0.03
## 4420        0.02         0.13
## 4421        0.02         0.09
## 4422        0.01         0.08
## 4423        0.05         0.46
## 4424        0.04         0.23
## 4425        0.00         0.10
## 4426        0.01         0.14
## 4427        0.00         0.10
## 4428        0.00         0.03
## 4429        0.02         0.18
## 4430        0.02         0.15
## 4431        0.01         0.06
## 4432        0.00         0.26
## 4433        0.00         0.13
## 4434        0.01         0.06
## 4435        0.01         0.08
## 4436        0.00         0.03
## 4437        0.00         0.02
## 4438        0.15         1.15
## 4439        0.01         0.55
## 4440        0.01         0.40
## 4441        0.04         0.58
## 4442        0.00         0.40
## 4443        0.01         0.29
## 4444        0.02         0.16
## 4445        0.00         0.08
## 4446        0.00         0.07
## 4447        0.01         0.33
## 4448        0.03         0.25
## 4449        0.00         0.17
## 4450        0.05         0.27
## 4451        0.02         0.22
## 4452        0.01         0.13
## 4453        0.43         2.78
## 4454        0.13         1.31
## 4455        0.03         0.32
## 4456        0.14         0.88
## 4457        0.03         0.35
## 4458        0.01         0.19
## 4459        0.07         0.58
## 4460        0.01         0.14
## 4461        0.00         0.06
## 4462        0.02         0.17
## 4463        0.00         0.06
## 4464        0.00         0.02
## 4465        0.15         0.51
## 4466        0.03         0.32
## 4467        0.00         0.02
## 4468        0.03         0.20
## 4469        0.12         0.64
## 4470        0.07         0.69
## 4471        0.27         2.08
## 4472        0.06         1.71
## 4473        0.01         0.22
## 4474        0.01         0.50
## 4475        0.06         0.50
## 4476        0.01         0.28
## 4477        0.05         0.42
## 4478        0.01         0.35
## 4479        0.00         0.11
## 4480        0.16         1.74
## 4481        0.11         1.31
## 4482        0.15         1.13
## 4483        0.03         0.20
## 4484        0.00         0.12
## 4485        0.00         0.05
## 4486        0.05         0.29
## 4487        0.02         0.24
## 4488        0.01         0.05
## 4489        0.03         0.29
## 4490        0.04         0.25
## 4491        0.00         0.01
## 4492        0.01         0.09
## 4493        0.00         0.02
## 4494        0.00         0.02
## 4495        0.03         0.17
## 4496        0.01         0.15
## 4497        0.01         0.04
## 4498        0.03         0.39
## 4499        0.05         0.33
## 4500        0.01         0.14
## 4501        0.40         4.39
## 4502        0.42         3.12
## 4503        0.05         0.26
## 4504        0.28         1.72
## 4505        0.12         1.27
## 4506        0.09         0.90
## 4507        0.85         8.84
## 4508        1.05         6.56
## 4509        0.64         3.88
## 4510        0.04         0.35
## 4511        0.01         0.34
## 4512        0.01         0.20
## 4513        0.01         0.11
## 4514        0.01         0.07
## 4515        0.00         0.06
## 4516        0.01         0.08
## 4517        0.01         0.04
## 4518        0.00         0.02
## 4519        0.07         0.54
## 4520        0.01         0.23
## 4521        0.00         0.15
## 4522        0.30         2.37
## 4523        0.10         2.06
## 4524        0.02         0.84
## 4525        0.03         0.23
## 4526        0.00         0.08
## 4527        0.00         0.03
## 4528        0.00         0.28
## 4529        0.00         0.20
## 4530        0.01         0.17
## 4531        0.00         0.21
## 4532        0.01         0.08
## 4533        0.00         0.06
## 4534        0.03         0.20
## 4535        0.01         0.12
## 4536        0.00         0.07
## 4537        0.03         0.21
## 4538        0.00         0.07
## 4539        0.00         0.04
## 4540        0.00         0.07
## 4541        0.00         0.02
## 4542        0.00         0.01
## 4543        0.05         0.42
## 4544        0.03         0.37
## 4545        0.02         0.22
## 4546        0.08         0.58
## 4547        0.01         0.29
## 4548        0.00         0.22
## 4549        0.03         0.18
## 4550        0.15         0.86
## 4551        0.08         0.86
## 4552        0.03         0.25
## 4553        0.01         0.09
## 4554        0.01         0.09
## 4555        0.01         0.21
## 4556        0.01         0.20
## 4557        0.02         0.17
## 4558        0.17         1.83
## 4559        0.22         1.08
## 4560        0.03         0.14
## 4561        0.00         0.03
## 4562        0.00         0.03
## 4563        0.00         0.03
## 4564        0.03         0.23
## 4565        0.00         0.19
## 4566        0.00         0.11
## 4567        0.03         0.19
## 4568        0.01         0.17
## 4569        0.00         0.01
## 4570        0.05         0.51
## 4571        0.08         0.50
## 4572        0.01         0.06
## 4573        0.79         4.70
## 4574        0.07         1.35
## 4575        0.03         0.99
## 4576        0.00         0.01
## 4577        0.04         0.43
## 4578        0.00         0.04
## 4579        0.01         0.19
## 4580        0.01         0.11
## 4581        0.01         0.08
## 4582        0.04         0.35
## 4583        0.00         0.07
## 4584        0.00         0.04
## 4585        0.01         0.05
## 4586        0.00         0.02
## 4587        0.00         0.01
## 4588        0.06         0.26
## 4589        0.01         0.07
## 4590        0.00         0.02
## 4591        0.01         0.09
## 4592        0.01         0.08
## 4593        0.00         0.02
## 4594        0.05         0.64
## 4595        0.08         0.53
## 4596        0.01         0.12
## 4597        0.07         0.53
## 4598        0.01         0.28
## 4599        0.03         0.28
## 4600        0.56         3.73
## 4601        0.11         1.24
## 4602        0.05         0.67
## 4603        0.04         0.33
## 4604        0.03         0.14
## 4605        0.01         0.09
## 4606        0.04         0.57
## 4607        0.00         0.08
## 4608        0.00         0.07
## 4609        0.13         0.84
## 4610        0.06         0.56
## 4611        0.05         0.53
## 4612        0.12         0.90
## 4613        0.05         0.63
## 4614        0.03         0.37
## 4615        0.21         1.64
## 4616        0.01         0.44
## 4617        0.01         0.23
## 4618        0.00         0.05
## 4619        0.00         0.04
## 4620        0.00         0.01
## 4621        0.03         0.41
## 4622        0.01         0.16
## 4623        0.00         0.01
## 4624        0.09         0.70
## 4625        0.01         0.64
## 4626        0.01         0.44
## 4627        0.03         0.24
## 4628        0.01         0.16
## 4629        0.00         0.08
## 4630        0.22         2.90
## 4631        0.11         1.38
## 4632        0.07         0.58
## 4633        0.06         1.36
## 4634        0.10         1.08
## 4635        0.00         0.07
## 4636        0.19         1.04
## 4637        0.08         1.02
## 4638        0.08         0.53
## 4639        0.12         1.46
## 4640        0.12         0.96
## 4641        0.03         0.18
## 4642        0.06         0.58
## 4643        0.09         0.57
## 4644        0.01         0.04
## 4645        0.07         1.55
## 4646        0.10         0.81
## 4647        0.00         0.06
## 4648        0.02         0.41
## 4649        0.04         0.35
## 4650        0.00         0.05
## 4651        0.32         2.15
## 4652        0.12         1.29
## 4653        0.02         0.22
## 4654        0.20         1.96
## 4655        0.22         1.25
## 4656        0.14         0.74
## 4657        0.23         2.42
## 4658        0.21         1.35
## 4659        0.00         0.02
## 4660        0.57         3.61
## 4661        0.18         2.01
## 4662        0.03         0.37
## 4663        0.00         0.03
## 4664        0.03         0.26
## 4665        0.00         0.07
## 4666        0.24         4.63
## 4667        0.00         1.03
## 4668        0.05         0.36
## 4669        0.03         0.62
## 4670        0.01         0.42
## 4671        0.03         0.32
## 4672        0.20         5.02
## 4673        0.03         2.11
## 4674        0.05         1.33
## 4675        0.20         4.68
## 4676        0.02         1.18
## 4677        0.01         0.76
## 4678        0.08         0.95
## 4679        0.05         0.61
## 4680        0.08         0.60
## 4681        0.04         0.56
## 4682        0.04         0.28
## 4683        0.02         0.26
## 4684        0.12         0.92
## 4685        0.00         0.15
## 4686        0.00         0.10
## 4687        0.14         0.71
## 4688        0.04         0.42
## 4689        0.02         0.16
## 4690        0.01         0.11
## 4691        0.01         0.09
## 4692        0.01         0.08
## 4693        0.01         0.11
## 4694        0.00         0.03
## 4695        0.00         0.01
## 4696        0.00         0.11
## 4697        0.00         0.08
## 4698        0.00         0.02
## 4699        0.03         0.30
## 4700        0.02         0.17
## 4701        0.00         0.05
## 4702        0.05         0.32
## 4703        0.00         0.06
## 4704        0.00         0.01
## 4705        0.04         0.44
## 4706        0.07         0.41
## 4707        0.00         0.01
## 4708        0.01         0.17
## 4709        0.01         0.14
## 4710        0.00         0.02
## 4711        0.05         0.58
## 4712        0.08         0.51
## 4713        0.00         0.01
## 4714        0.08         0.43
## 4715        0.02         0.24
## 4716        0.00         0.03
## 4717        0.02         0.16
## 4718        0.00         0.05
## 4719        0.00         0.02
## 4720        0.04         0.30
## 4721        0.01         0.12
## 4722        0.01         0.07
## 4723        0.09         0.76
## 4724        0.01         0.28
## 4725        0.00         0.17
## 4726        0.31         3.27
## 4727        0.05         1.38
## 4728        0.02         0.56
## 4729        0.01         0.11
## 4730        0.01         0.10
## 4731        0.01         0.09
## 4732        0.07         0.75
## 4733        0.10         0.68
## 4734        0.00         0.01
## 4735        0.04         0.54
## 4736        0.05         0.48
## 4737        0.03         0.20
## 4738        0.15         1.17
## 4739        0.01         0.27
## 4740        0.01         0.18
## 4741        0.06         0.78
## 4742        0.04         0.20
## 4743        0.02         0.20
## 4744        0.19         1.42
## 4745        0.11         1.33
## 4746        0.04         0.21
## 4747        0.01         0.15
## 4748        0.01         0.07
## 4749        0.00         0.01
## 4750        0.05         0.33
## 4751        0.01         0.10
## 4752        0.00         0.07
## 4753        0.11         0.67
## 4754        0.05         0.47
## 4755        0.01         0.06
## 4756        0.00         0.05
## 4757        0.00         0.04
## 4758        0.00         0.01
## 4759        0.00         0.07
## 4760        0.00         0.06
## 4761        0.00         0.05
## 4762        0.01         0.06
## 4763        0.00         0.05
## 4764        0.00         0.02
## 4765        0.01         0.06
## 4766        0.00         0.02
## 4767        0.00         0.01
## 4768        0.06         0.44
## 4769        0.01         0.18
## 4770        0.00         0.10
## 4771        0.01         0.13
## 4772        0.02         0.13
## 4773        0.01         0.05
## 4774        0.03         0.24
## 4775        0.00         0.10
## 4776        0.00         0.06
## 4777        0.07         0.38
## 4778        0.04         0.38
## 4779        0.03         0.33
## 4780        0.04         0.17
## 4781        0.01         0.08
## 4782        0.00         0.02
## 4783        0.01         0.05
## 4784        0.00         0.02
## 4785        0.00         0.01
## 4786        0.12         1.27
## 4787        0.17         1.18
## 4788        0.03         0.36
## 4789        0.26         1.39
## 4790        0.11         1.28
## 4791        0.01         0.16
## 4792        0.26         2.58
## 4793        0.14         0.67
## 4794        0.04         0.51
## 4795        0.02         0.16
## 4796        0.00         0.05
## 4797        0.00         0.02
## 4798        0.03         0.23
## 4799        0.00         0.07
## 4800        0.00         0.03
## 4801        0.06         0.57
## 4802        0.09         0.46
## 4803        0.03         0.20
## 4804        0.03         0.87
## 4805        0.00         0.20
## 4806        0.02         0.20
## 4807        0.01         0.29
## 4808        0.02         0.13
## 4809        0.00         0.06
## 4810        0.02         0.10
## 4811        0.01         0.10
## 4812        0.00         0.05
## 4813        0.01         0.08
## 4814        0.01         0.05
## 4815        0.00         0.02
## 4816        0.00         0.05
## 4817        0.01         0.04
## 4818        0.00         0.02
## 4819        0.01         0.13
## 4820        0.01         0.10
## 4821        0.02         0.09
## 4822        0.11         0.64
## 4823        0.06         0.56
## 4824        0.01         0.05
## 4825        0.06         0.42
## 4826        0.01         0.15
## 4827        0.00         0.08
## 4828        0.13         0.95
## 4829        0.02         0.51
## 4830        0.00         0.17
## 4831        0.04         0.34
## 4832        0.01         0.14
## 4833        0.00         0.09
## 4834        0.00         0.23
## 4835        0.00         0.16
## 4836        0.00         0.09
## 4837        0.06         0.70
## 4838        0.05         0.63
## 4839        0.01         0.03
## 4840        0.02         0.12
## 4841        0.00         0.07
## 4842        0.00         0.06
## 4843        0.02         0.57
## 4844        0.03         0.22
## 4845        0.00         0.06
## 4846        0.21         1.93
## 4847        0.04         0.90
## 4848        0.01         0.53
## 4849        0.13         0.75
## 4850        0.06         0.69
## 4851        0.00         0.03
## 4852        0.06         0.47
## 4853        0.00         0.13
## 4854        0.00         0.11
## 4855        0.02         0.20
## 4856        0.01         0.04
## 4857        0.00         0.02
## 4858        0.10         0.72
## 4859        0.05         0.64
## 4860        0.11         0.60
## 4861        0.01         0.06
## 4862        0.00         0.02
## 4863        0.00         0.02
## 4864        0.07         0.57
## 4865        0.01         0.25
## 4866        0.00         0.09
## 4867        0.00         0.08
## 4868        0.00         0.07
## 4869        0.00         0.05
## 4870        0.67         6.81
## 4871        0.18         2.39
## 4872        0.09         0.59
## 4873        0.07         0.80
## 4874        0.11         0.75
## 4875        0.01         0.10
## 4876        0.03         1.55
## 4877        0.06         0.92
## 4878        0.00         0.02
## 4879        0.00         0.02
## 4880        0.05         0.40
## 4881        0.00         0.11
## 4882        0.02         0.15
## 4883        0.00         0.06
## 4884        0.02         0.53
## 4885        0.01         0.12
## 4886        0.16         0.71
## 4887        0.04         0.47
## 4888        0.06         0.42
## 4889        0.01         0.17
## 4890        0.00         0.23
## 4891        0.00         0.19
## 4892        0.00         0.19
## 4893        0.00         0.15
## 4894        0.01         0.24
## 4895        0.00         0.14
## 4896        0.02         0.21
## 4897        0.03         0.19
## 4898        0.04         0.55
## 4899        0.00         0.02
## 4900        0.02         0.12
## 4901        0.00         0.04
## 4902        0.01         0.13
## 4903        0.01         0.08
## 4904        0.11         2.79
## 4905        0.01         0.63
## 4906        0.00         0.01
## 4907        0.00         0.40
## 4908        0.07         0.91
## 4909        0.00         0.07
## 4910        0.01         0.22
## 4911        0.01         0.11
## 4912        0.07         1.04
## 4913        0.00         0.26
## 4914        0.00         0.02
## 4915        0.00         0.01
## 4916        0.00         0.03
## 4917        0.00         0.03
## 4918        0.00         0.02
## 4919        0.00         0.01
## 4920        0.07         0.74
## 4921        0.04         0.49
## 4922        0.06         0.50
## 4923        0.00         0.05
## 4924        0.00         0.02
## 4925        0.00         0.01
## 4926        0.01         0.09
## 4927        0.00         0.08
## 4928        0.01         0.04
## 4929        0.00         0.01
## 4930        0.02         0.24
## 4931        0.03         0.20
## 4932        0.01         0.10
## 4933        0.00         0.02
## 4934        0.01         0.18
## 4935        0.00         0.02
## 4936        0.00         0.01
## 4937        0.00         0.01
## 4938        0.13         1.35
## 4939        0.01         0.07
## 4940        0.01         0.11
## 4941        0.00         0.05
## 4942        0.05         0.53
## 4943        0.05         0.50
## 4944        0.01         0.10
## 4945        0.00         0.09
## 4946        0.01         0.08
## 4947        0.00         0.06
## 4948        0.01         0.08
## 4949        0.00         0.05
## 4950        0.02         0.19
## 4951        0.00         0.08
## 4952        0.00         0.10
## 4953        0.00         0.06
## 4954        0.08         0.80
## 4955        0.02         0.28
## 4956        0.02         0.26
## 4957        0.01         0.15
## 4958        0.07         0.56
## 4959        0.01         0.22
## 4960        0.01         0.15
## 4961        0.04         0.32
## 4962        0.02         0.13
## 4963        0.00         0.05
## 4964        0.02         0.30
## 4965        0.01         0.10
## 4966        0.01         0.10
## 4967        0.01         0.08
## 4968        0.06         0.42
## 4969        0.01         0.15
## 4970        0.07         0.55
## 4971        0.00         0.22
## 4972        0.00         0.05
## 4973        0.00         0.01
## 4974        0.02         0.21
## 4975        0.01         0.17
## 4976        0.03         0.27
## 4977        0.00         0.07
## 4978        0.01         0.11
## 4979        0.01         0.10
## 4980        0.01         0.04
## 4981        0.00         0.02
## 4982        0.11         1.63
## 4983        0.01         0.05
## 4984        0.00         0.01
## 4985        0.00         0.01
## 4986        0.02         0.16
## 4987        0.00         0.04
## 4988        0.00         0.02
## 4989        0.00         0.01
## 4990        0.01         0.06
## 4991        0.00         0.03
## 4992        0.01         0.14
## 4993        0.00         0.05
## 4994        0.05         0.36
## 4995        0.00         0.12
## 4996        0.02         0.21
## 4997        0.01         0.09
## 4998        0.04         0.55
## 4999        0.03         0.39
## 5000        0.07         0.56
## 5001        0.01         0.15
## 5002        0.02         0.25
## 5003        0.01         0.20
## 5004        0.02         0.40
## 5005        0.01         0.22
## 5006        0.01         0.19
## 5007        0.01         0.15
## 5008        0.00         0.26
## 5009        0.01         0.08
## 5010        0.02         0.13
## 5011        0.00         0.07
## 5012        0.01         0.11
## 5013        0.00         0.07
## 5014        0.01         0.81
## 5015        0.04         0.56
## 5016        0.00         0.15
## 5017        0.00         0.11
## 5018        0.01         0.13
## 5019        0.01         0.12
## 5020        0.16         1.65
## 5021        0.15         1.17
## 5022        0.05         0.28
## 5023        0.02         0.26
## 5024        0.02         0.16
## 5025        0.00         0.05
## 5026        0.01         0.05
## 5027        0.00         0.01
## 5028        0.05         4.31
## 5029        0.07         1.15
## 5030        0.05         0.41
## 5031        0.02         0.24
## 5032        0.05         0.40
## 5033        0.01         0.25
## 5034        0.02         0.27
## 5035        0.00         0.05
## 5036        0.02         0.22
## 5037        0.00         0.04
## 5038        0.01         0.24
## 5039        0.00         0.06
## 5040        0.05         0.50
## 5041        0.00         0.05
## 5042        0.03         0.43
## 5043        0.00         0.09
## 5044        0.01         0.11
## 5045        0.00         0.04
## 5046        0.05         0.39
## 5047        0.00         0.03
## 5048        0.01         0.17
## 5049        0.01         0.18
## 5050        0.00         0.20
## 5051        0.01         0.07
## 5052        0.07         0.59
## 5053        0.01         0.07
## 5054        0.03         0.20
## 5055        0.00         0.03
## 5056        0.04         0.28
## 5057        0.00         0.12
## 5058        0.08         0.60
## 5059        0.01         0.17
## 5060        0.04         0.21
## 5061        0.02         0.20
## 5062        0.00         0.02
## 5063        0.00         0.01
## 5064        0.09         0.68
## 5065        0.01         0.26
## 5066        0.01         0.14
## 5067        0.00         0.05
## 5068        0.00         0.02
## 5069        0.00         0.02
## 5070        0.10         3.65
## 5071        0.00         0.01
## 5072        0.06         0.49
## 5073        0.00         0.06
## 5074        0.02         0.23
## 5075        0.01         0.13
## 5076        0.04         0.44
## 5077        0.01         0.22
## 5078        0.03         0.46
## 5079        0.02         0.26
## 5080        0.01         0.13
## 5081        0.00         0.08
## 5082        0.02         3.20
## 5083        0.03         1.61
## 5084        0.02         0.24
## 5085        0.01         0.09
## 5086        0.03         0.49
## 5087        0.02         0.21
## 5088        0.01         0.17
## 5089        0.00         0.09
## 5090        0.01         0.04
## 5091        0.00         0.01
## 5092        0.13         0.53
## 5093        0.02         0.27
## 5094        0.00         0.11
## 5095        0.00         0.08
## 5096        0.02         0.30
## 5097        0.02         0.30
## 5098        0.00         0.03
## 5099        0.00         0.02
## 5100        0.01         0.09
## 5101        0.00         0.01
## 5102        0.00         0.15
## 5103        0.00         0.09
## 5104        0.15         1.46
## 5105        0.18         1.35
## 5106        0.02         0.16
## 5107        0.00         0.08
## 5108        0.02         0.26
## 5109        0.00         0.01
## 5110        0.03         0.33
## 5111        0.00         0.03
## 5112        0.01         0.62
## 5113        0.00         0.03
## 5114        0.17         1.23
## 5115        0.08         0.94
## 5116        0.02         1.09
## 5117        0.01         0.07
## 5118        0.18         0.87
## 5119        0.07         0.59
## 5120        0.01         0.10
## 5121        0.01         0.05
## 5122        0.00         0.02
## 5123        0.00         0.01
## 5124        0.00         0.02
## 5125        0.00         0.02
## 5126        0.01         0.21
## 5127        0.01         0.10
## 5128        0.01         0.11
## 5129        0.01         0.09
## 5130        0.03         0.20
## 5131        0.00         0.07
## 5132        0.02         0.32
## 5133        0.01         0.15
## 5134        0.01         0.06
## 5135        0.00         0.03
## 5136        0.03         0.33
## 5137        0.02         0.19
## 5138        0.00         0.14
## 5139        0.01         0.13
## 5140        0.03         0.20
## 5141        0.01         0.08
## 5142        0.00         0.18
## 5143        0.00         0.03
## 5144        0.07         0.37
## 5145        0.03         0.28
## 5146        0.04         0.25
## 5147        0.01         0.16
## 5148        0.16         1.25
## 5149        0.01         0.42
## 5150        0.02         0.16
## 5151        0.00         0.05
## 5152        0.06         0.57
## 5153        0.01         0.09
## 5154        0.00         0.02
## 5155        0.00         0.02
## 5156        0.04         0.31
## 5157        0.00         0.13
## 5158        0.01         0.11
## 5159        0.01         0.10
## 5160        0.02         0.29
## 5161        0.01         0.10
## 5162        0.02         0.29
## 5163        0.02         0.11
## 5164        0.04         0.41
## 5165        0.02         0.32
## 5166        0.01         0.13
## 5167        0.01         0.11
## 5168        0.02         0.15
## 5169        0.01         0.14
## 5170        0.02         0.16
## 5171        0.01         0.10
## 5172        0.01         0.17
## 5173        0.01         0.04
## 5174        0.01         0.11
## 5175        0.00         0.07
## 5176        0.03         0.27
## 5177        0.01         0.15
## 5178        0.03         0.23
## 5179        0.00         0.05
## 5180        0.02         0.12
## 5181        0.01         0.11
## 5182        0.02         0.34
## 5183        0.00         0.03
## 5184        0.14         0.84
## 5185        0.04         0.41
## 5186        0.00         0.37
## 5187        0.01         0.14
## 5188        0.04         0.19
## 5189        0.00         0.01
## 5190        0.01         0.77
## 5191        0.00         0.07
## 5192        0.01         0.17
## 5193        0.00         0.04
## 5194        0.06         0.48
## 5195        0.02         0.27
## 5196        0.00         0.06
## 5197        0.00         0.06
## 5198        0.00         0.02
## 5199        0.00         0.02
## 5200        0.00         0.36
## 5201        0.00         0.19
## 5202        0.07         1.00
## 5203        0.01         0.04
## 5204        0.03         0.24
## 5205        0.00         0.22
## 5206        0.01         0.06
## 5207        0.00         0.01
## 5208        0.06         0.46
## 5209        0.01         0.31
## 5210        0.02         0.66
## 5211        0.06         0.46
## 5212        0.00         0.01
## 5213        0.02         0.08
## 5214        0.02         0.13
## 5215        0.00         0.04
## 5216        0.01         0.18
## 5217        0.00         0.06
## 5218        0.09         0.98
## 5219        0.13         0.95
## 5220        0.01         0.16
## 5221        0.01         0.15
## 5222        0.34         2.68
## 5223        0.04         1.31
## 5224        0.09         0.85
## 5225        0.01         0.18
## 5226        0.30         1.97
## 5227        0.15         1.36
## 5228        0.02         0.32
## 5229        0.00         0.06
## 5230        0.01         0.20
## 5231        0.00         0.08
## 5232        0.00         0.09
## 5233        0.00         0.06
## 5234        0.00         0.03
## 5235        0.00         0.03
## 5236        0.03         0.29
## 5237        0.02         0.21
## 5238        0.10         0.89
## 5239        0.01         0.10
## 5240        0.01         0.14
## 5241        0.00         0.05
## 5242        0.00         0.02
## 5243        0.01         0.13
## 5244        0.18         1.42
## 5245        0.00         0.09
## 5246        0.15         1.17
## 5247        0.01         0.35
## 5248        0.05         0.37
## 5249        0.00         0.11
## 5250        0.10         0.76
## 5251        0.01         0.21
## 5252        0.00         0.10
## 5253        0.00         0.03
## 5254        0.00         0.03
## 5255        0.00         0.03
## 5256        0.15         2.02
## 5257        0.01         0.06
## 5258        0.00         0.02
## 5259        0.00         0.02
## 5260        0.01         0.19
## 5261        0.00         0.01
## 5262        0.01         0.15
## 5263        0.00         0.04
## 5264        0.06         0.51
## 5265        0.01         0.15
## 5266        0.03         0.20
## 5267        0.00         0.04
## 5268        0.00         0.11
## 5269        0.00         0.10
## 5270        0.42         4.10
## 5271        0.19         2.05
## 5272        0.05         0.28
## 5273        0.01         0.06
## 5274        0.05         0.83
## 5275        0.00         0.01
## 5276        0.00         0.02
## 5277        0.00         0.02
## 5278        0.02         0.14
## 5279        0.00         0.02
## 5280        0.01         1.23
## 5281        0.05         0.64
## 5282        0.05         0.42
## 5283        0.00         0.12
## 5284        0.16         1.12
## 5285        0.05         0.67
## 5286        0.01         0.04
## 5287        0.00         0.02
## 5288        0.01         0.10
## 5289        0.01         0.08
## 5290        0.07         0.72
## 5291        0.02         0.32
## 5292        0.04         0.56
## 5293        0.00         0.24
## 5294        0.00         0.12
## 5295        0.00         0.06
## 5296        0.01         1.36
## 5297        0.04         0.65
## 5298        0.00         0.06
## 5299        0.00         0.05
## 5300        0.01         0.09
## 5301        0.01         0.07
## 5302        0.00         0.04
## 5303        0.00         0.03
## 5304        0.01         0.16
## 5305        0.01         0.12
## 5306        0.00         0.06
## 5307        0.00         0.02
## 5308        0.02         0.33
## 5309        0.00         0.04
## 5310        0.04         0.44
## 5311        0.04         0.23
## 5312        0.02         0.11
## 5313        0.00         0.05
## 5314        0.01         2.31
## 5315        0.09         1.47
## 5316        0.00         0.06
## 5317        0.00         0.02
## 5318        0.01         0.18
## 5319        0.01         0.17
## 5320        0.00         0.47
## 5321        0.00         0.03
## 5322        0.06         0.33
## 5323        0.02         0.16
## 5324        0.00         0.11
## 5325        0.00         0.07
## 5326        0.00         0.02
## 5327        0.00         0.02
## 5328        0.00         0.06
## 5329        0.00         0.05
## 5330        0.00         0.07
## 5331        0.00         0.06
## 5332        0.01         0.10
## 5333        0.00         0.03
## 5334        0.01         0.11
## 5335        0.00         0.06
## 5336        0.07         0.91
## 5337        0.00         0.02
## 5338        0.00         0.05
## 5339        0.00         0.02
## 5340        0.30         1.40
## 5341        0.00         0.04
## 5342        0.02         0.21
## 5343        0.01         0.18
## 5344        0.00         0.03
## 5345        0.01         0.06
## 5346        0.03         0.40
## 5347        0.00         0.27
## 5348        0.02         0.24
## 5349        0.00         0.02
## 5350        0.03         0.43
## 5351        0.01         0.07
## 5352        0.14         2.85
## 5353        0.03         0.41
## 5354        0.02         0.67
## 5355        0.05         0.46
## 5356        0.03         1.14
## 5357        0.00         0.47
## 5358        0.02         0.18
## 5359        0.00         0.07
## 5360        0.01         0.06
## 5361        0.00         0.02
## 5362        0.06         0.34
## 5363        0.02         0.20
## 5364        0.02         0.19
## 5365        0.01         0.12
## 5366        0.06         0.63
## 5367        0.07         0.40
## 5368        0.02         0.19
## 5369        0.00         0.10
## 5370        0.07         0.53
## 5371        0.01         0.22
## 5372        0.01         0.11
## 5373        0.00         0.06
## 5374        0.03         0.41
## 5375        0.04         0.33
## 5376        0.00         0.05
## 5377        0.00         0.04
## 5378        0.01         0.15
## 5379        0.00         0.05
## 5380        0.03         0.21
## 5381        0.00         0.09
## 5382        0.08         0.64
## 5383        0.01         0.15
## 5384        0.00         0.04
## 5385        0.00         0.02
## 5386        0.02         0.11
## 5387        0.00         0.08
## 5388        0.00         0.16
## 5389        0.00         0.03
## 5390        0.01         0.37
## 5391        0.04         0.33
## 5392        0.04         0.59
## 5393        0.00         0.06
## 5394        0.06         0.52
## 5395        0.02         0.24
## 5396        0.00         0.03
## 5397        0.00         0.02
## 5398        0.12         1.05
## 5399        0.01         0.09
## 5400        0.00         0.02
## 5401        0.01         0.02
## 5402        0.02         0.24
## 5403        0.02         0.16
## 5404        0.01         0.10
## 5405        0.00         0.02
## 5406        0.03         0.39
## 5407        0.03         0.39
## 5408        0.06         0.26
## 5409        0.00         0.19
## 5410        0.06         0.41
## 5411        0.00         0.24
## 5412        0.05         0.48
## 5413        0.07         0.47
## 5414        0.04         0.32
## 5415        0.01         0.21
## 5416        0.01         0.07
## 5417        0.01         0.07
## 5418        0.02         0.12
## 5419        0.00         0.04
## 5420        0.20         2.09
## 5421        0.00         0.02
## 5422        0.02         0.28
## 5423        0.00         0.18
## 5424        0.08         1.00
## 5425        0.00         0.14
## 5426        0.03         0.20
## 5427        0.00         0.11
## 5428        0.05         0.28
## 5429        0.02         0.21
## 5430        0.00         0.04
## 5431        0.00         0.04
## 5432        0.02         0.27
## 5433        0.02         0.15
## 5434        0.02         0.14
## 5435        0.01         0.12
## 5436        0.01         0.14
## 5437        0.01         0.13
## 5438        0.05         0.76
## 5439        0.02         0.44
## 5440        0.08         0.43
## 5441        0.03         0.35
## 5442        0.25         1.94
## 5443        0.01         0.25
## 5444        0.00         0.05
## 5445        0.00         0.02
## 5446        0.06         0.46
## 5447        0.01         0.34
## 5448        0.03         0.18
## 5449        0.01         0.16
## 5450        0.14         2.09
## 5451        0.00         0.09
## 5452        0.01         0.06
## 5453        0.00         0.04
## 5454        0.13         0.94
## 5455        0.02         0.46
## 5456        0.01         0.13
## 5457        0.01         0.09
## 5458        0.00         0.13
## 5459        0.01         0.09
## 5460        0.00         0.05
## 5461        0.00         0.04
## 5462        0.10         0.84
## 5463        0.03         0.44
## 5464        0.02         0.24
## 5465        0.04         0.19
## 5466        0.00         1.59
## 5467        0.04         0.58
## 5468        0.00         0.03
## 5469        0.00         0.02
## 5470        0.02         1.64
## 5471        0.00         0.41
## 5472        0.02         0.10
## 5473        0.01         0.06
## 5474        0.00         0.17
## 5475        0.02         0.11
## 5476        0.03         0.40
## 5477        0.01         0.12
## 5478        0.00         0.02
## 5479        0.00         0.01
## 5480        0.06         0.58
## 5481        0.02         0.18
## 5482        0.09         1.38
## 5483        0.03         0.23
## 5484        0.04         0.41
## 5485        0.01         0.13
## 5486        0.05         0.61
## 5487        0.02         0.17
## 5488        0.05         0.65
## 5489        0.01         0.12
## 5490        0.00         0.02
## 5491        0.00         0.02
## 5492        0.00         0.07
## 5493        0.00         0.06
## 5494        0.00         0.03
## 5495        0.00         0.03
## 5496        0.06         0.61
## 5497        0.02         0.17
## 5498        0.09         1.04
## 5499        0.05         0.69
## 5500        0.27         1.75
## 5501        0.00         0.03
## 5502        0.01         0.17
## 5503        0.00         0.12
## 5504        0.01         0.11
## 5505        0.00         0.06
## 5506        0.04         1.67
## 5507        0.03         1.43
## 5508        0.02         0.12
## 5509        0.00         0.05
## 5510        0.00         0.07
## 5511        0.00         0.05
## 5512        0.05         0.41
## 5513        0.00         0.18
## 5514        0.06         1.79
## 5515        0.05         1.41
## 5516        0.04         0.33
## 5517        0.01         0.28
## 5518        0.01         0.08
## 5519        0.00         0.06
## 5520        0.02         0.24
## 5521        0.01         0.08
## 5522        0.01         0.12
## 5523        0.00         0.03
## 5524        0.01         0.63
## 5525        0.04         0.57
## 5526        0.01         0.13
## 5527        0.01         0.11
## 5528        0.03         0.27
## 5529        0.01         0.08
## 5530        0.47         6.59
## 5531        0.12         1.87
## 5532        0.04         1.34
## 5533        0.00         0.01
## 5534        0.06         1.34
## 5535        0.01         0.10
## 5536        0.16         3.61
## 5537        0.00         0.04
## 5538        0.02         0.27
## 5539        0.01         0.09
## 5540        0.08         1.06
## 5541        0.02         0.12
## 5542        0.03         0.24
## 5543        0.00         0.12
## 5544        0.20         5.34
## 5545        0.10         4.85
## 5546        0.07         0.56
## 5547        0.00         0.11
## 5548        0.08         3.09
## 5549        0.02         0.69
## 5550        0.06         2.41
## 5551        0.01         0.27
## 5552        0.11         0.79
## 5553        0.02         0.30
## 5554        1.09         3.00
## 5555        0.09         1.04
## 5556        0.12         0.86
## 5557        0.05         0.49
## 5558        0.01         0.19
## 5559        0.00         0.15
## 5560        0.08         0.62
## 5561        0.04         0.54
## 5562        0.10         0.77
## 5563        0.04         0.51
## 5564        0.09         0.83
## 5565        0.05         0.64
## 5566        0.06         0.71
## 5567        0.00         0.49
## 5568        0.00         1.56
## 5569        0.00         0.79
## 5570        0.01         2.79
## 5571        0.00         1.65
## 5572        0.02         4.47
## 5573        0.01         1.42
## 5574        0.20         5.21
## 5575        0.00         0.86
## 5576        0.00         0.08
## 5577        0.00         0.07
## 5578        0.00         3.87
## 5579        0.00         0.81
## 5580        0.05         0.53
## 5581        0.05         0.38
## 5582        0.19         1.78
## 5583        0.06         0.80
## 5584        0.00         0.08
## 5585        0.00         0.03
## 5586        0.00         0.05
## 5587        0.00         0.04
## 5588        0.08         0.76
## 5589        0.06         0.65
## 5590        0.00         0.07
## 5591        0.00         0.02
## 5592        0.01         0.14
## 5593        0.00         0.03
## 5594        0.01         0.19
## 5595        0.00         0.05
## 5596        0.00         0.02
## 5597        0.00         0.02
## 5598        0.00         0.06
## 5599        0.00         0.01
## 5600        0.03         0.18
## 5601        0.00         0.08
## 5602        0.02         0.51
## 5603        0.02         0.27
## 5604        0.10         1.87
## 5605        0.00         0.08
## 5606        0.13         2.11
## 5607        0.01         0.16
## 5608        0.06         1.39
## 5609        0.00         0.05
## 5610        0.03         0.34
## 5611        0.01         0.13
## 5612        0.02         0.34
## 5613        0.02         0.24
## 5614        0.06         0.92
## 5615        0.02         0.24
## 5616        0.05         0.61
## 5617        0.01         0.16
## 5618        0.02         0.48
## 5619        0.01         0.19
## 5620        0.02         0.55
## 5621        0.01         0.18
## 5622        0.00         0.23
## 5623        0.00         0.13
## 5624        0.00         0.07
## 5625        0.00         0.05
## 5626        0.13         1.30
## 5627        0.03         0.33
## 5628        0.06         0.38
## 5629        0.03         0.36
## 5630        0.17         1.04
## 5631        0.04         0.46
## 5632        0.14         0.89
## 5633        0.04         0.40
## 5634        0.03         0.48
## 5635        0.00         0.22
## 5636        0.11         0.84
## 5637        0.01         0.38
## 5638        0.01         0.06
## 5639        0.00         0.05
## 5640        0.03         0.20
## 5641        0.00         0.14
## 5642        0.00         0.02
## 5643        0.00         0.02
## 5644        0.21         1.59
## 5645        0.04         0.95
## 5646        0.00         0.03
## 5647        0.00         0.01
## 5648        0.07         0.54
## 5649        0.01         0.27
## 5650        0.36         2.62
## 5651        0.07         1.63
## 5652        0.07         0.56
## 5653        0.01         0.36
## 5654        0.01         0.08
## 5655        0.00         0.02
## 5656        0.11         0.88
## 5657        0.02         0.42
## 5658        0.03         0.23
## 5659        0.00         0.11
## 5660        0.03         0.21
## 5661        0.00         0.03
## 5662        0.05         0.36
## 5663        0.00         0.18
## 5664        0.02         0.36
## 5665        0.01         0.15
## 5666        0.00         0.14
## 5667        0.02         0.11
## 5668        0.02         0.20
## 5669        0.01         0.19
## 5670        0.01         0.13
## 5671        0.01         0.13
## 5672        0.03         0.29
## 5673        0.01         0.16
## 5674        0.00         0.03
## 5675        0.00         0.02
## 5676        0.01         0.07
## 5677        0.00         0.02
## 5678        0.02         0.20
## 5679        0.02         0.19
## 5680        0.00         0.04
## 5681        0.00         0.02
## 5682        0.01         0.07
## 5683        0.00         0.05
## 5684        0.09         0.57
## 5685        0.05         0.55
## 5686        0.01         0.09
## 5687        0.01         0.08
## 5688        0.02         0.19
## 5689        0.01         0.12
## 5690        0.06         0.45
## 5691        0.02         0.33
## 5692        0.01         0.27
## 5693        0.00         0.10
## 5694        0.00         0.06
## 5695        0.00         0.03
## 5696        0.05         0.38
## 5697        0.00         0.10
## 5698        0.03         0.21
## 5699        0.00         0.08
## 5700        0.03         0.26
## 5701        0.00         0.04
## 5702        0.00         0.04
## 5703        0.00         0.03
## 5704        0.00         0.03
## 5705        0.00         0.01
## 5706        0.09         0.99
## 5707        0.09         0.27
## 5708        0.10         0.55
## 5709        0.03         0.34
## 5710        0.02         0.15
## 5711        0.00         0.06
## 5712        0.11         0.89
## 5713        0.16         0.53
## 5714        0.15         0.63
## 5715        0.03         0.33
## 5716        0.09         0.62
## 5717        0.01         0.12
## 5718        0.00         0.08
## 5719        0.00         0.03
## 5720        0.09         2.66
## 5721        0.04         0.48
## 5722        0.38         5.13
## 5723        0.05         0.32
## 5724        0.02         0.19
## 5725        0.02         0.17
## 5726        0.02         0.17
## 5727        0.01         0.17
## 5728        0.01         0.07
## 5729        0.00         0.05
## 5730        0.04         0.64
## 5731        0.02         0.27
## 5732        0.01         0.20
## 5733        0.01         0.10
## 5734        0.01         0.13
## 5735        0.00         0.05
## 5736        0.05         0.29
## 5737        0.02         0.25
## 5738        0.01         0.15
## 5739        0.01         0.07
## 5740        0.00         0.17
## 5741        0.00         0.01
## 5742        0.01         0.04
## 5743        0.00         0.03
## 5744        0.00         0.05
## 5745        0.00         0.03
## 5746        0.01         0.14
## 5747        0.00         0.06
## 5748        0.02         0.14
## 5749        0.00         0.06
## 5750        0.00         0.17
## 5751        0.00         0.06
## 5752        0.02         0.12
## 5753        0.01         0.04
## 5754        0.02         0.18
## 5755        0.00         0.11
## 5756        0.20         1.48
## 5757        0.02         0.68
## 5758        0.19         1.15
## 5759        0.07         0.80
## 5760        0.21         1.53
## 5761        0.13         1.41
## 5762        0.00         0.84
## 5763        0.00         0.51
## 5764        0.02         0.48
## 5765        0.02         0.26
## 5766        0.05         1.26
## 5767        0.02         0.31
## 5768        0.02         2.45
## 5769        0.01         0.17
## 5770        0.18         1.33
## 5771        0.16         0.97
## 5772        0.01         0.19
## 5773        0.02         0.32
## 5774        0.01         0.15
## 5775        0.01         0.08
## 5776        0.09         0.81
## 5777        0.02         0.30
## 5778        0.52         5.36
## 5779        0.20         2.17
## 5780        0.26         2.68
## 5781        0.06         0.74
## 5782        0.01         0.05
## 5783        0.00         0.02
## 5784        0.02         0.66
## 5785        0.01         0.16
## 5786        0.01         0.13
## 5787        0.01         0.12
## 5788        0.05         0.38
## 5789        0.01         0.17
## 5790        0.02         0.16
## 5791        0.00         0.04
## 5792        0.01         0.11
## 5793        0.00         0.01
## 5794        0.00         0.16
## 5795        0.01         0.10
## 5796        0.34         1.51
## 5797        0.04         0.14
## 5798        0.10         0.71
## 5799        0.04         0.14
## 5800        0.04         0.29
## 5801        0.00         0.09
## 5802        0.13         1.00
## 5803        0.01         0.15
## 5804        0.03         0.22
## 5805        0.00         0.08
## 5806        0.03         0.20
## 5807        0.00         0.09
## 5808        0.09         1.37
## 5809        0.07         0.85
## 5810        0.04         0.33
## 5811        0.02         0.17
## 5812        0.11         4.16
## 5813        0.02         2.20
## 5814        0.00         0.13
## 5815        0.00         0.08
## 5816        0.04         0.32
## 5817        0.00         0.15
## 5818        0.01         0.11
## 5819        0.00         0.06
## 5820        0.00         0.32
## 5821        0.01         0.20
## 5822        0.00         0.60
## 5823        0.00         0.04
## 5824        0.05         0.56
## 5825        0.00         0.02
## 5826        0.06         0.69
## 5827        0.05         0.58
## 5828        0.02         0.18
## 5829        0.00         0.01
## 5830        0.03         0.73
## 5831        0.04         0.30
## 5832        0.01         0.07
## 5833        0.00         0.05
## 5834        0.01         0.13
## 5835        0.02         0.12
## 5836        0.01         0.07
## 5837        0.00         0.05
## 5838        0.01         0.54
## 5839        0.03         0.47
## 5840        0.05         0.40
## 5841        0.01         0.18
## 5842        0.60         6.11
## 5843        0.00         0.02
## 5844        0.00         0.06
## 5845        0.00         0.04
## 5846        0.01         0.15
## 5847        0.01         0.13
## 5848        0.00         0.05
## 5849        0.00         0.02
## 5850        0.00         0.02
## 5851        0.00         0.02
## 5852        0.01         0.12
## 5853        0.00         0.04
## 5854        0.03         0.53
## 5855        0.00         0.21
## 5856        0.02         0.16
## 5857        0.01         0.07
## 5858        0.01         0.03
## 5859        0.00         0.02
## 5860        0.02         0.12
## 5861        0.00         0.05
## 5862        0.01         0.91
## 5863        0.01         0.17
## 5864        0.04         0.59
## 5865        0.03         0.48
## 5866        0.00         0.45
## 5867        0.00         0.24
## 5868        0.00         0.38
## 5869        0.00         0.10
## 5870        0.00         0.19
## 5871        0.00         0.08
## 5872        0.41         2.63
## 5873        0.07         0.33
## 5874        0.63         4.84
## 5875        0.10         0.63
## 5876        0.02         0.71
## 5877        0.00         0.12
## 5878        0.06         0.47
## 5879        0.00         0.14
## 5880        0.03         0.33
## 5881        0.06         0.32
## 5882        0.16         1.86
## 5883        0.01         0.15
## 5884        0.13         0.80
## 5885        0.05         0.51
## 5886        0.04         4.01
## 5887        0.04         2.12
## 5888        0.00         0.06
## 5889        0.00         0.04
## 5890        0.00         0.12
## 5891        0.00         0.03
## 5892        0.01         0.07
## 5893        0.00         0.05
## 5894        0.01         0.07
## 5895        0.00         0.06
## 5896        0.04         0.24
## 5897        0.02         0.19
## 5898        0.14         2.32
## 5899        0.00         0.24
## 5900        1.30        13.10
## 5901        0.00         0.01
## 5902        0.14         1.35
## 5903        0.28         1.08
## 5904        1.75         7.72
## 5905        0.50         3.54
## 5906        1.78        16.15
## 5907        0.01         0.04
## 5908        1.21         5.08
## 5909        0.13         0.97
## 5910        0.00         0.42
## 5911        0.02         0.25
## 5912        0.04         0.29
## 5913        0.00         0.20
## 5914        0.01         0.09
## 5915        0.01         0.05
## 5916        0.05         0.57
## 5917        0.01         0.11
## 5918        0.01         0.16
## 5919        0.01         0.08
## 5920        0.01         0.14
## 5921        0.02         0.14
## 5922        0.00         0.01
## 5923        0.00         0.01
## 5924        0.00         0.04
## 5925        0.00         0.04
## 5926        0.00         0.07
## 5927        0.01         0.07
## 5928        0.02         0.18
## 5929        0.02         0.16
## 5930        0.11         1.04
## 5931        0.04         0.52
## 5932        0.68         5.12
## 5933        0.17         2.20
## 5934        0.00         0.05
## 5935        0.00         0.04
## 5936        0.00         0.26
## 5937        0.00         0.09
## 5938        0.00         0.15
## 5939        0.00         0.14
## 5940        0.00         0.12
## 5941        0.00         0.09
## 5942        0.00         0.06
## 5943        0.00         0.05
## 5944        0.00         4.12
## 5945        0.08         0.60
## 5946        0.00         2.37
## 5947        0.03         0.61
## 5948        0.08         8.49
## 5949        0.02         0.10
## 5950        0.07         6.43
## 5951        0.01         0.04
## 5952        0.13         1.39
## 5953        0.14         0.28
## 5954        0.01         0.07
## 5955        0.00         0.04
## 5956        0.00         0.03
## 5957        0.00         0.02
## 5958        0.03         0.31
## 5959        0.01         0.24
## 5960        0.03         0.58
## 5961        0.02         0.30
## 5962        0.01         0.12
## 5963        0.00         0.07
## 5964        0.06         0.40
## 5965        0.03         0.25
## 5966        0.00         0.12
## 5967        0.00         0.04
## 5968        0.01         0.27
## 5969        0.00         0.23
## 5970        0.00         0.04
## 5971        0.00         0.02
## 5972        0.00         0.01
## 5973        0.00         0.01
## 5974        0.01         0.10
## 5975        0.00         0.04
## 5976        0.03         0.37
## 5977        0.03         0.33
## 5978        0.00         0.08
## 5979        0.00         0.04
## 5980        0.02         0.16
## 5981        0.01         0.14
## 5982        0.06         0.51
## 5983        0.02         0.21
## 5984        0.05         0.36
## 5985        0.00         0.08
## 5986        0.05         0.42
## 5987        0.00         0.13
## 5988        1.33         1.87
## 5989        0.16         1.77
## 5990        0.00         0.03
## 5991        0.00         0.01
## 5992        0.02         0.15
## 5993        0.01         0.13
## 5994        0.01         0.04
## 5995        0.00         0.01
## 5996        0.10         0.80
## 5997        0.01         0.34
## 5998        0.04         0.22
## 5999        0.02         0.18
## 6000        0.00         0.04
## 6001        0.00         0.01
## 6002        0.02         0.18
## 6003        0.00         0.02
## 6004        0.01         0.15
## 6005        0.01         0.10
## 6006        0.06         0.60
## 6007        0.00         0.28
## 6008        0.07         1.07
## 6009        0.00         0.31
## 6010        0.05         0.42
## 6011        0.00         0.16
## 6012        0.01         0.19
## 6013        0.01         0.15
## 6014        0.02         0.28
## 6015        0.01         0.20
## 6016        0.02         0.23
## 6017        0.00         0.05
## 6018        0.01         0.05
## 6019        0.00         0.02
## 6020        0.01         0.38
## 6021        0.00         0.10
## 6022        0.03         0.46
## 6023        0.00         0.16
## 6024        0.05         0.46
## 6025        0.02         0.18
## 6026        0.02         0.16
## 6027        0.00         0.07
## 6028        0.00         0.04
## 6029        0.00         0.01
## 6030        0.10         1.26
## 6031        0.03         0.42
## 6032        0.01         0.11
## 6033        0.00         0.05
## 6034        0.00         0.08
## 6035        0.00         0.06
## 6036        0.01         0.17
## 6037        0.00         0.04
## 6038        0.06         0.47
## 6039        0.00         0.06
## 6040        0.01         0.08
## 6041        0.00         0.02
## 6042        0.02         0.19
## 6043        0.00         0.06
## 6044        0.05         2.42
## 6045        0.01         0.49
## 6046        0.01         0.10
## 6047        0.00         0.04
## 6048        0.30         2.81
## 6049        0.01         0.13
## 6050        0.01         0.13
## 6051        0.02         0.06
## 6052        0.00         0.93
## 6053        0.01         0.09
## 6054        0.01         0.13
## 6055        0.01         0.09
## 6056        0.02         0.12
## 6057        0.00         0.05
## 6058        0.00         0.03
## 6059        0.00         0.03
## 6060        0.05         0.20
## 6061        0.02         0.14
## 6062        0.01         0.19
## 6063        0.01         0.17
## 6064        0.00         0.06
## 6065        0.00         0.05
## 6066        0.04         0.28
## 6067        0.05         0.22
## 6068        0.15         0.61
## 6069        0.06         0.46
## 6070        0.01         0.09
## 6071        0.00         0.01
## 6072        0.02         0.17
## 6073        0.00         0.07
## 6074        0.08         0.60
## 6075        0.01         0.15
## 6076        0.01         0.12
## 6077        0.01         0.09
## 6078        0.01         0.09
## 6079        0.00         0.05
## 6080        0.05         0.71
## 6081        0.00         0.29
## 6082        0.03         0.23
## 6083        0.00         0.12
## 6084        0.01         0.04
## 6085        0.00         0.02
## 6086        0.01         0.04
## 6087        0.00         0.03
## 6088        0.00         0.22
## 6089        0.00         0.04
## 6090        0.00         0.08
## 6091        0.00         0.04
## 6092        0.00         0.51
## 6093        0.00         0.10
## 6094        0.00         0.42
## 6095        0.00         0.10
## 6096        0.00         0.45
## 6097        0.00         0.08
## 6098        0.00         0.11
## 6099        0.00         0.02
## 6100        0.00         0.24
## 6101        0.00         0.08
## 6102        0.00         0.27
## 6103        0.00         0.20
## 6104        0.00         0.26
## 6105        0.00         0.20
## 6106        0.00         0.13
## 6107        0.00         0.07
## 6108        0.00         0.17
## 6109        0.00         0.12
## 6110        0.00         0.44
## 6111        0.00         0.12
## 6112        0.04         0.57
## 6113        0.01         0.08
## 6114        0.01         0.58
## 6115        0.00         0.06
## 6116        0.00         0.03
## 6117        0.00         0.03
## 6118        0.01         0.11
## 6119        0.00         0.01
## 6120        0.00         0.03
## 6121        0.00         0.02
## 6122        0.07         0.53
## 6123        0.01         0.18
## 6124        0.01         0.16
## 6125        0.02         0.13
## 6126        0.02         0.22
## 6127        0.01         0.09
## 6128        0.00         0.10
## 6129        0.00         0.02
## 6130        0.00         0.07
## 6131        0.00         0.05
## 6132        0.08         0.76
## 6133        0.13         0.76
## 6134        0.00         0.02
## 6135        0.00         0.02
## 6136        0.02         0.30
## 6137        0.01         0.14
## 6138        0.00         0.02
## 6139        0.00         0.01
## 6140        0.00         0.13
## 6141        0.00         0.07
## 6142        0.00         0.07
## 6143        0.00         0.07
## 6144        0.02         0.22
## 6145        0.01         0.12
## 6146        0.00         0.15
## 6147        0.01         0.09
## 6148        0.07         6.40
## 6149        0.24         1.75
## 6150        0.17         4.33
## 6151        0.19         1.32
## 6152        0.01         0.09
## 6153        0.01         0.08
## 6154        0.00         0.09
## 6155        0.01         0.09
## 6156        0.05         1.41
## 6157        0.02         0.92
## 6158        0.07         0.56
## 6159        0.03         0.41
## 6160        0.12         0.91
## 6161        0.01         0.27
## 6162        0.00         0.08
## 6163        0.00         0.03
## 6164        0.00         0.11
## 6165        0.00         0.10
## 6166        0.00         0.03
## 6167        0.00         0.03
## 6168        0.51         3.23
## 6169        0.24         2.72
## 6170        0.06         0.47
## 6171        0.01         0.14
## 6172        0.12         1.46
## 6173        0.08         1.08
## 6174        0.05         0.24
## 6175        0.01         0.21
## 6176        0.01         0.71
## 6177        0.02         0.36
## 6178        0.01         0.08
## 6179        0.00         0.08
## 6180        0.01         0.08
## 6181        0.00         0.02
## 6182        0.00         0.03
## 6183        0.00         0.01
## 6184        0.30         3.52
## 6185        0.00         0.02
## 6186        0.37         3.99
## 6187        0.04         0.37
## 6188        0.00         0.02
## 6189        0.00         0.01
## 6190        0.00         0.06
## 6191        0.00         0.03
## 6192        0.07         0.55
## 6193        0.04         0.40
## 6194        0.01         0.16
## 6195        0.01         0.10
## 6196        0.04         0.34
## 6197        0.01         0.17
## 6198        0.01         0.14
## 6199        0.00         0.03
## 6200        0.01         0.11
## 6201        0.00         0.02
## 6202        0.12         1.10
## 6203        0.02         0.29
## 6204        0.01         0.08
## 6205        0.00         0.02
## 6206        0.01         0.10
## 6207        0.00         0.06
## 6208        0.01         0.16
## 6209        0.01         0.14
## 6210        0.01         0.10
## 6211        0.01         0.08
## 6212        0.01         0.09
## 6213        0.01         0.08
## 6214        0.90         5.92
## 6215        0.69         2.58
## 6216        0.29         1.86
## 6217        0.11         0.75
## 6218        0.03         0.41
## 6219        0.00         0.02
## 6220        0.00         1.10
## 6221        0.00         0.02
## 6222        0.09         0.67
## 6223        0.04         0.49
## 6224        0.15         0.70
## 6225        0.07         0.59
## 6226        0.00         0.10
## 6227        0.00         0.10
## 6228        0.03         0.14
## 6229        0.01         0.08
## 6230        0.00         0.09
## 6231        0.00         0.07
## 6232        0.11         1.34
## 6233        0.09         0.64
## 6234        0.01         0.10
## 6235        0.00         0.05
## 6236        0.04         0.55
## 6237        0.00         0.21
## 6238        0.00         0.04
## 6239        0.00         0.01
## 6240        0.02         0.23
## 6241        0.01         0.12
## 6242        0.13         0.94
## 6243        0.03         0.35
## 6244        0.06         0.92
## 6245        0.02         0.20
## 6246        0.05         0.71
## 6247        0.02         0.13
## 6248        0.16         0.84
## 6249        0.03         0.16
## 6250        0.01         0.08
## 6251        0.01         0.07
## 6252        0.02         0.29
## 6253        0.00         0.11
## 6254        0.01         0.20
## 6255        0.00         0.15
## 6256        0.03         0.26
## 6257        0.00         0.05
## 6258        0.04         0.30
## 6259        0.00         0.09
## 6260        0.10         0.76
## 6261        0.01         0.21
## 6262        0.02         0.14
## 6263        0.00         0.08
## 6264        0.10         0.75
## 6265        0.01         0.34
## 6266        0.13         1.04
## 6267        0.01         0.20
## 6268        0.25         1.92
## 6269        0.02         0.44
## 6270        0.02         0.17
## 6271        0.00         0.03
## 6272        0.01         0.08
## 6273        0.01         0.03
## 6274        0.01         0.06
## 6275        0.00         0.02
## 6276        0.14         1.03
## 6277        0.01         0.40
## 6278        0.05         0.56
## 6279        0.07         0.47
## 6280        0.02         0.19
## 6281        0.00         0.11
## 6282        0.17         1.11
## 6283        0.04         0.46
## 6284        0.04         1.75
## 6285        0.00         0.61
## 6286        0.04         1.74
## 6287        0.01         0.90
## 6288        0.00         0.03
## 6289        0.00         0.02
## 6290        0.05         0.29
## 6291        0.01         0.19
## 6292        0.03         0.47
## 6293        0.01         0.15
## 6294        0.19         1.48
## 6295        0.02         0.56
## 6296        0.00         0.15
## 6297        0.00         0.12
## 6298        0.00         0.02
## 6299        0.00         0.01
## 6300        0.16         1.28
## 6301        0.01         0.19
## 6302        0.01         0.13
## 6303        0.01         0.07
## 6304        0.46         3.78
## 6305        0.10         1.19
## 6306        0.91         8.06
## 6307        0.58         5.14
## 6308        0.48         4.58
## 6309        0.38         3.52
## 6310        0.01         0.46
## 6311        0.01         0.26
## 6312        0.02         2.28
## 6313        0.02         1.59
## 6314        0.02         1.47
## 6315        0.00         0.31
## 6316        0.00         0.06
## 6317        0.00         0.01
## 6318        0.01         0.12
## 6319        0.00         0.02
## 6320        0.02         0.34
## 6321        0.00         0.06
## 6322        0.14         1.35
## 6323        0.07         1.08
## 6324        0.05         0.78
## 6325        0.00         0.10
## 6326        0.01         0.22
## 6327        0.03         0.22
## 6328        0.27         2.93
## 6329        0.09         0.68
## 6330        0.04         0.54
## 6331        0.00         0.27
## 6332        0.00         0.06
## 6333        0.00         0.04
## 6334        0.00         0.07
## 6335        0.01         0.06
## 6336        0.00         0.12
## 6337        0.00         0.05
## 6338        0.25         1.16
## 6339        0.04         0.42
## 6340        0.06         0.97
## 6341        0.00         0.08
## 6342        0.01         0.10
## 6343        0.00         0.03
## 6344        0.06         0.88
## 6345        0.00         0.06
## 6346        0.02         0.20
## 6347        0.01         0.07
## 6348        0.00         0.13
## 6349        0.03         0.24
## 6350        0.07         1.04
## 6351        0.00         0.07
## 6352        0.02         0.18
## 6353        0.00         0.12
## 6354        0.02         0.27
## 6355        0.02         0.13
## 6356        0.02         0.16
## 6357        0.01         0.12
## 6358        0.06         0.50
## 6359        0.00         0.01
## 6360        0.10         0.76
## 6361        0.03         0.68
## 6362        0.01         0.12
## 6363        0.00         0.03
## 6364        0.18         1.47
## 6365        0.04         0.50
## 6366        0.24         6.03
## 6367        0.00         0.07
## 6368        0.05         0.52
## 6369        0.03         0.62
## 6370        0.01         0.11
## 6371        0.00         0.04
## 6372        0.05         0.55
## 6373        0.05         0.24
## 6374        0.00         0.02
## 6375        0.00         0.01
## 6376        0.79         3.66
## 6377        0.03         0.74
## 6378        0.16         1.16
## 6379        0.01         0.20
## 6380        0.24         1.78
## 6381        0.02         0.50
## 6382        0.31         2.45
## 6383        0.20         2.35
## 6384        0.14         2.63
## 6385        0.01         0.48
## 6386        0.01         0.13
## 6387        0.01         0.03
## 6388        0.01         0.02
## 6389        0.00         0.01
## 6390        0.03         0.18
## 6391        0.01         0.10
## 6392        0.03         2.76
## 6393        0.03         0.45
## 6394        0.03         1.17
## 6395        0.03         0.52
## 6396        0.03         0.45
## 6397        0.00         0.41
## 6398        0.16         1.13
## 6399        0.14         0.54
## 6400        0.02         0.14
## 6401        0.00         0.03
## 6402        0.00         0.46
## 6403        0.00         0.08
## 6404        0.00         0.21
## 6405        0.00         0.10
## 6406        0.04         0.28
## 6407        0.00         0.05
## 6408        0.00         0.03
## 6409        0.00         0.02
## 6410        0.07         0.96
## 6411        0.04         0.56
## 6412        0.18         2.58
## 6413        0.00         0.50
## 6414        0.00         0.05
## 6415        0.00         0.13
## 6416        0.00         0.25
## 6417        0.00         0.23
## 6418        0.00         0.03
## 6419        0.00         0.02
## 6420        0.10         1.67
## 6421        0.04         0.32
## 6422        0.01         0.18
## 6423        0.00         0.05
## 6424        0.10         1.46
## 6425        0.01         0.73
## 6426        0.04         0.68
## 6427        0.00         0.40
## 6428        0.11         2.79
## 6429        0.02         0.96
## 6430        0.22         2.00
## 6431        0.16         1.93
## 6432        0.14         1.06
## 6433        0.02         0.25
## 6434        0.09         0.69
## 6435        0.01         0.31
## 6436        0.02         0.15
## 6437        0.00         0.07
## 6438        0.05         0.45
## 6439        0.03         0.28
## 6440        0.03         0.27
## 6441        0.03         0.16
## 6442        0.04         0.22
## 6443        0.02         0.17
## 6444        0.04         0.17
## 6445        0.01         0.06
## 6446        0.01         0.10
## 6447        0.00         0.02
## 6448        0.30         1.04
## 6449        0.25         0.34
## 6450        0.01         0.56
## 6451        0.03         0.44
## 6452        0.01         0.06
## 6453        0.00         0.02
## 6454        0.04         0.61
## 6455        0.03         0.26
## 6456        0.02         0.33
## 6457        0.01         0.13
## 6458        0.00         0.03
## 6459        0.00         0.02
## 6460        0.04         0.14
## 6461        0.01         0.06
## 6462        0.03         0.36
## 6463        0.03         0.32
## 6464        0.01         0.07
## 6465        0.00         0.06
## 6466        0.03         0.44
## 6467        0.01         0.13
## 6468        0.18         1.45
## 6469        0.04         0.51
## 6470        0.11         1.08
## 6471        0.10         1.05
## 6472        0.17         1.58
## 6473        0.17         1.53
## 6474        0.03         0.30
## 6475        0.02         0.23
## 6476        0.07         0.63
## 6477        0.05         0.47
## 6478        0.04         0.28
## 6479        0.00         0.06
## 6480        0.00         0.05
## 6481        0.00         0.01
## 6482        0.02         0.53
## 6483        0.00         0.40
## 6484        0.00         0.09
## 6485        0.01         0.06
## 6486        0.00         0.07
## 6487        0.00         0.03
## 6488        0.05         0.36
## 6489        0.01         0.18
## 6490        0.01         0.16
## 6491        0.01         0.10
## 6492        0.09         0.63
## 6493        0.01         0.27
## 6494        0.01         0.11
## 6495        0.00         0.04
## 6496        0.10         1.59
## 6497        0.00         0.53
## 6498        0.05         0.81
## 6499        0.09         0.70
## 6500        0.04         1.52
## 6501        0.01         0.98
## 6502        0.01         0.03
## 6503        0.00         0.02
## 6504        0.01         0.10
## 6505        0.01         0.08
## 6506        0.14         1.08
## 6507        0.01         0.23
## 6508        0.00         0.09
## 6509        0.07         0.58
## 6510        0.07         0.53
## 6511        0.02         0.22
## 6512        0.21         1.66
## 6513        0.02         0.51
## 6514        0.01         0.19
## 6515        0.01         0.13
## 6516        0.06         0.47
## 6517        0.00         0.13
## 6518        0.00         0.57
## 6519        0.00         0.06
## 6520        0.02         0.18
## 6521        0.01         0.13
## 6522        0.03         0.22
## 6523        0.01         0.19
## 6524        0.04         0.23
## 6525        0.02         0.20
## 6526        0.03         0.17
## 6527        0.01         0.10
## 6528        0.03         1.52
## 6529        0.00         0.44
## 6530        0.08         1.25
## 6531        0.13         1.10
## 6532        0.03         1.22
## 6533        0.00         0.47
## 6534        0.02         0.27
## 6535        0.02         0.15
## 6536        0.04         0.55
## 6537        0.00         0.25
## 6538        0.02         0.18
## 6539        0.00         0.02
## 6540        0.38         2.79
## 6541        0.01         0.42
## 6542        0.04         0.50
## 6543        0.02         0.15
## 6544        0.01         0.21
## 6545        0.00         0.04
## 6546        0.03         0.33
## 6547        0.02         0.32
## 6548        0.03         0.24
## 6549        0.01         0.14
## 6550        0.02         0.19
## 6551        0.01         0.16
## 6552        0.25         1.84
## 6553        0.03         0.97
## 6554        0.06         0.99
## 6555        0.05         0.83
## 6556        0.06         1.08
## 6557        0.06         0.87
## 6558        0.06         1.07
## 6559        0.06         0.80
## 6560        0.02         0.33
## 6561        0.02         0.15
## 6562        0.07         0.53
## 6563        0.01         0.20
## 6564        0.07         0.56
## 6565        0.02         0.21
## 6566        0.13         1.03
## 6567        0.01         0.24
## 6568        0.07         0.53
## 6569        0.01         0.28
## 6570        0.11         0.89
## 6571        0.01         0.18
## 6572        0.04         1.50
## 6573        0.01         1.06
## 6574        0.07         1.09
## 6575        0.00         0.58
## 6576        0.04         0.59
## 6577        0.00         0.42
## 6578        0.07         1.00
## 6579        0.05         0.36
## 6580        0.03         0.40
## 6581        0.05         0.38
## 6582        0.06         0.45
## 6583        0.00         0.12
## 6584        0.01         0.14
## 6585        0.01         0.11
## 6586        0.03         0.22
## 6587        0.00         0.05
## 6588        0.01         0.12
## 6589        0.01         0.10
## 6590        0.03         0.25
## 6591        0.02         0.25
## 6592        0.06         0.66
## 6593        0.07         0.58
## 6594        0.05         0.73
## 6595        0.07         0.60
## 6596        0.05         0.70
## 6597        0.07         0.59
## 6598        0.05         0.67
## 6599        0.10         0.65
## 6600        0.09         0.57
## 6601        0.04         0.54
## 6602        0.04         0.20
## 6603        0.02         0.15
## 6604        0.12         0.96
## 6605        0.04         0.63
## 6606        0.01         0.13
## 6607        0.01         0.09
## 6608        0.07         1.07
## 6609        0.00         0.39
## 6610        0.00         0.32
## 6611        0.01         0.14
## 6612        0.02         0.23
## 6613        0.02         0.20
## 6614        0.01         0.05
## 6615        0.01         0.04
## 6616        0.00         0.04
## 6617        0.00         0.03
## 6618        0.02         0.13
## 6619        0.00         0.06
## 6620        0.00         0.04
## 6621        0.00         0.03
## 6622        0.18         1.22
## 6623        0.07         0.79
## 6624        0.15         0.96
## 6625        0.04         0.51
## 6626        0.16         1.06
## 6627        0.03         0.28
## 6628        0.08         0.74
## 6629        0.04         0.45
## 6630        0.08         0.47
## 6631        0.02         0.23
## 6632        0.00         0.02
## 6633        0.00         0.02
## 6634        0.07         0.44
## 6635        0.04         0.41
## 6636        0.59         2.44
## 6637        0.02         0.21
## 6638        0.08         0.85
## 6639        0.04         0.39
## 6640        0.05         0.77
## 6641        0.01         0.48
## 6642        0.00         0.44
## 6643        0.00         0.06
## 6644        0.02         0.29
## 6645        0.02         0.23
## 6646        0.02         0.13
## 6647        0.01         0.10
## 6648        0.05         0.61
## 6649        0.02         0.23
## 6650        0.01         0.19
## 6651        0.01         0.08
## 6652        0.00         0.43
## 6653        0.00         0.01
## 6654        0.00         0.27
## 6655        0.01         0.17
## 6656        0.02         0.26
## 6657        0.01         0.11
## 6658        0.01         0.25
## 6659        0.01         0.22
## 6660        0.02         0.30
## 6661        0.01         0.29
## 6662        0.07         0.64
## 6663        0.02         0.29
## 6664        0.04         0.63
## 6665        0.00         0.26
## 6666        0.16         1.15
## 6667        0.04         0.27
## 6668        0.10         0.86
## 6669        0.00         0.01
## 6670        0.01         0.12
## 6671        0.01         0.10
## 6672        0.00         0.04
## 6673        0.00         0.01
## 6674        0.02         0.20
## 6675        0.00         0.02
## 6676        0.00         0.19
## 6677        0.00         0.06
## 6678        0.00         0.17
## 6679        0.00         0.11
## 6680        0.00         0.05
## 6681        0.01         0.04
## 6682        0.00         0.10
## 6683        0.00         0.01
## 6684        0.01         0.07
## 6685        0.00         0.04
## 6686        0.01         0.12
## 6687        0.02         0.09
## 6688        0.03         0.73
## 6689        0.00         0.06
## 6690        0.00         0.06
## 6691        0.00         0.03
## 6692        0.17         1.15
## 6693        0.06         0.71
## 6694        0.07         0.69
## 6695        0.00         0.12
## 6696        0.00         0.32
## 6697        0.00         0.08
## 6698        0.00         0.03
## 6699        0.00         0.03
## 6700        0.01         0.06
## 6701        0.00         0.01
## 6702        0.00         0.05
## 6703        0.01         0.04
## 6704        0.01         0.29
## 6705        0.00         0.08
## 6706        0.05         0.35
## 6707        0.01         0.21
## 6708        0.01         0.08
## 6709        0.00         0.04
## 6710        0.01         0.13
## 6711        0.00         0.05
## 6712        0.03         0.40
## 6713        0.00         0.02
## 6714        0.03         0.20
## 6715        0.01         0.13
## 6716        0.03         1.92
## 6717        0.01         0.14
## 6718        0.08         7.81
## 6719        0.02         1.22
## 6720        0.07         0.51
## 6721        0.01         0.28
## 6722        0.01         0.04
## 6723        0.00         0.02
## 6724        0.02         0.33
## 6725        0.00         0.17
## 6726        0.05         0.64
## 6727        0.01         0.10
## 6728        0.02         0.25
## 6729        0.00         0.06
## 6730        0.09         0.67
## 6731        0.02         0.13
## 6732        0.06         0.88
## 6733        0.03         0.38
## 6734        0.02         0.35
## 6735        0.00         0.05
## 6736        0.07         0.74
## 6737        0.01         0.13
## 6738        0.00         0.14
## 6739        0.01         0.08
## 6740        0.00         0.34
## 6741        0.00         0.10
## 6742        0.03         0.38
## 6743        0.02         0.23
## 6744        0.04         0.52
## 6745        0.00         0.01
## 6746        0.00         0.03
## 6747        0.00         0.01
## 6748        0.01         0.45
## 6749        0.01         0.15
## 6750        0.00         0.19
## 6751        0.01         0.12
## 6752        0.00         0.09
## 6753        0.00         0.07
## 6754        0.07         0.87
## 6755        0.02         0.19
## 6756        0.03         0.24
## 6757        0.02         0.24
## 6758        0.01         0.11
## 6759        0.01         0.11
## 6760        0.01         0.08
## 6761        0.00         0.03
## 6762        0.02         0.14
## 6763        0.00         0.06
## 6764        0.14         0.96
## 6765        0.10         0.52
## 6766        0.03         0.20
## 6767        0.00         0.09
## 6768        0.01         0.23
## 6769        0.00         0.03
## 6770        0.01         0.16
## 6771        0.00         0.06
## 6772        0.01         0.06
## 6773        0.00         0.04
## 6774        0.02         1.10
## 6775        0.01         0.54
## 6776        0.01         0.07
## 6777        0.00         0.07
## 6778        0.01         0.14
## 6779        0.01         0.12
## 6780        0.02         0.34
## 6781        0.02         0.34
## 6782        0.02         0.14
## 6783        0.01         0.11
## 6784        0.02         0.32
## 6785        0.00         0.20
## 6786        0.01         0.05
## 6787        0.00         0.01
## 6788        0.03         0.20
## 6789        0.00         0.10
## 6790        0.03         0.36
## 6791        0.01         0.20
## 6792        0.03         0.32
## 6793        0.01         0.03
## 6794        0.18         1.08
## 6795        0.10         1.01
## 6796        0.02         0.29
## 6797        0.02         0.12
## 6798        0.01         0.09
## 6799        0.00         0.02
## 6800        0.05         0.26
## 6801        0.02         0.21
## 6802        0.00         0.15
## 6803        0.00         0.13
## 6804        0.01         0.05
## 6805        0.00         0.03
## 6806        0.03         0.27
## 6807        0.00         0.04
## 6808        0.00         0.19
## 6809        0.00         0.07
## 6810        0.00         0.18
## 6811        0.00         0.11
## 6812        0.00         0.15
## 6813        0.00         0.13
## 6814        0.00         2.20
## 6815        0.00         0.03
## 6816        0.00         0.05
## 6817        0.00         0.03
## 6818        0.00         0.23
## 6819        0.00         0.11
## 6820        0.00         0.02
## 6821        0.00         0.01
## 6822        0.02         0.17
## 6823        0.00         0.05
## 6824        0.00         0.06
## 6825        0.00         0.05
## 6826        0.03         0.21
## 6827        0.00         0.11
## 6828        0.04         0.29
## 6829        0.01         0.17
## 6830        0.00         0.03
## 6831        0.00         0.02
## 6832        0.00         0.12
## 6833        0.01         0.09
## 6834        0.01         0.06
## 6835        0.00         0.02
## 6836        0.25         2.48
## 6837        0.14         0.90
## 6838        0.05         0.24
## 6839        0.02         0.18
## 6840        0.02         0.56
## 6841        0.02         0.29
## 6842        0.00         0.04
## 6843        0.00         0.01
## 6844        0.00         0.28
## 6845        0.00         0.02
## 6846        0.00         0.14
## 6847        0.00         0.13
## 6848        0.01         0.08
## 6849        0.00         0.02
## 6850        0.01         0.13
## 6851        0.01         0.12
## 6852        0.04         1.00
## 6853        0.00         0.06
## 6854        0.05         0.84
## 6855        0.01         0.58
## 6856        0.03         0.38
## 6857        0.00         0.02
## 6858        0.03         0.41
## 6859        0.00         0.30
## 6860        0.03         0.19
## 6861        0.01         0.09
## 6862        0.01         0.10
## 6863        0.00         0.04
## 6864        0.14         1.14
## 6865        0.07         0.72
## 6866        0.00         0.02
## 6867        0.00         0.01
## 6868        0.06         0.35
## 6869        0.02         0.26
## 6870        0.03         0.42
## 6871        0.01         0.04
## 6872        0.02         0.13
## 6873        0.00         0.05
## 6874        0.01         0.23
## 6875        0.00         0.22
## 6876        0.06         0.85
## 6877        0.01         0.45
## 6878        0.01         0.17
## 6879        0.00         0.05
## 6880        0.04         0.56
## 6881        0.00         0.03
## 6882        0.00         0.04
## 6883        0.00         0.02
## 6884        0.09         0.73
## 6885        0.01         0.06
## 6886        0.02         0.23
## 6887        0.00         0.01
## 6888        0.87         3.77
## 6889        0.03         0.29
## 6890        0.01         0.09
## 6891        0.00         0.01
## 6892        0.02         0.64
## 6893        0.02         0.32
## 6894        0.20         1.85
## 6895        0.06         0.80
## 6896        0.23         2.04
## 6897        0.04         0.49
## 6898        0.03         0.46
## 6899        0.00         0.01
## 6900        0.01         0.19
## 6901        0.00         0.18
## 6902        0.02         0.27
## 6903        0.01         0.13
## 6904        0.07         1.08
## 6905        0.01         0.59
## 6906        0.01         0.11
## 6907        0.00         0.03
## 6908        0.02         0.37
## 6909        0.00         0.07
## 6910        0.01         0.20
## 6911        0.01         0.07
## 6912        0.01         0.12
## 6913        0.01         0.10
## 6914        1.03         6.60
## 6915        0.57         6.34
## 6916        0.18         1.15
## 6917        0.09         1.07
## 6918        0.19         1.45
## 6919        0.02         0.55
## 6920        0.01         0.04
## 6921        0.00         0.02
## 6922        0.21         2.34
## 6923        0.00         0.06
## 6924        0.11         3.72
## 6925        0.00         0.08
## 6926        0.01         0.03
## 6927        0.00         0.01
## 6928        0.25         3.77
## 6929        0.00         0.04
## 6930        0.09         0.74
## 6931        0.03         0.33
## 6932        0.00         0.06
## 6933        0.00         0.04
## 6934        0.14         3.17
## 6935        0.01         0.90
## 6936        0.01         0.09
## 6937        0.00         0.05
## 6938        0.00         0.06
## 6939        0.01         0.05
## 6940        0.01         0.19
## 6941        0.03         0.14
## 6942        0.10         2.43
## 6943        0.02         0.32
## 6944        0.00         0.10
## 6945        0.01         0.09
## 6946        0.03         0.40
## 6947        0.00         0.10
## 6948        0.06         0.39
## 6949        0.04         0.44
## 6950        0.02         0.19
## 6951        0.00         0.03
## 6952        0.01         0.11
## 6953        0.00         0.05
## 6954        0.04         0.43
## 6955        0.07         0.37
## 6956        0.02         0.24
## 6957        0.02         0.13
## 6958        0.00         0.06
## 6959        0.00         0.02
## 6960        0.00         0.05
## 6961        0.00         0.05
## 6962        0.09         2.49
## 6963        0.22         1.72
## 6964        0.15         1.27
## 6965        0.09         0.76
## 6966        0.03         0.27
## 6967        0.00         0.10
## 6968        0.01         0.12
## 6969        0.00         0.04
## 6970        0.01         0.04
## 6971        0.00         0.02
## 6972        0.01         0.14
## 6973        0.01         0.11
## 6974        0.01         0.04
## 6975        0.00         0.13
## 6976        0.00         0.06
## 6977        0.00         0.04
## 6978        0.00         0.25
## 6979        0.00         0.03
## 6980        0.00         0.53
## 6981        0.01         0.13
## 6982        0.00         0.09
## 6983        0.00         0.02
## 6984        0.00         0.97
## 6985        0.01         0.58
## 6986        0.06         0.58
## 6987        0.00         0.06
## 6988        0.08         0.51
## 6989        0.02         0.27
## 6990        0.01         0.15
## 6991        0.01         0.12
## 6992        0.01         0.16
## 6993        0.01         0.16
## 6994        0.01         0.05
## 6995        0.00         0.02
## 6996        0.01         0.09
## 6997        0.00         0.05
## 6998        0.01         0.03
## 6999        0.00         0.03
## 7000        0.08         0.33
## 7001        0.04         0.28
## 7002        0.23         3.52
## 7003        0.01         0.50
## 7004        0.04         0.35
## 7005        0.00         0.17
## 7006        0.00         0.02
## 7007        0.01         0.04
## 7008        0.01         0.22
## 7009        0.01         0.21
## 7010        0.01         0.08
## 7011        0.00         0.06
## 7012        0.04         0.22
## 7013        0.02         0.19
## 7014        0.00         0.31
## 7015        0.00         0.06
## 7016        0.00         0.34
## 7017        0.00         0.05
## 7018        0.00         0.07
## 7019        0.00         0.03
## 7020        0.35         1.46
## 7021        0.12         0.14
## 7022        0.04         0.32
## 7023        0.01         0.17
## 7024        0.00         0.04
## 7025        0.00         0.03
## 7026        0.00         0.36
## 7027        0.02         0.35
## 7028        0.00         0.03
## 7029        0.00         0.03
## 7030        0.01         0.15
## 7031        0.01         0.08
## 7032        0.02         0.15
## 7033        0.00         0.04
## 7034        0.00         0.55
## 7035        0.00         0.11
## 7036        0.02         0.29
## 7037        0.01         0.11
## 7038        0.00         0.01
## 7039        0.00         0.01
## 7040        0.02         0.14
## 7041        0.00         0.06
## 7042        0.01         0.06
## 7043        0.00         0.02
## 7044        0.00         0.40
## 7045        0.00         0.07
## 7046        0.02         1.35
## 7047        0.00         0.07
## 7048        0.00         0.19
## 7049        0.00         0.04
## 7050        0.00         0.08
## 7051        0.00         0.06
## 7052        0.01         0.75
## 7053        0.03         0.38
## 7054        0.00         0.04
## 7055        0.00         0.01
## 7056        0.01         0.07
## 7057        0.00         0.06
## 7058        0.00         0.06
## 7059        0.00         0.01
## 7060        0.03         0.19
## 7061        0.01         0.16
## 7062        0.02         0.27
## 7063        0.02         0.19
## 7064        0.03         0.20
## 7065        0.01         0.03
## 7066        0.01         0.14
## 7067        0.01         0.11
## 7068        0.01         0.09
## 7069        0.01         0.08
## 7070        0.01         0.11
## 7071        0.01         0.10
## 7072        0.04         0.60
## 7073        0.03         0.38
## 7074        0.00         0.05
## 7075        0.00         0.01
## 7076        0.29         0.60
## 7077        0.02         0.13
## 7078        0.06         0.48
## 7079        0.01         0.25
## 7080        0.03         0.27
## 7081        0.00         0.03
## 7082        0.04         0.51
## 7083        0.00         0.09
## 7084        0.00         0.20
## 7085        0.00         0.01
## 7086        0.00         0.22
## 7087        0.00         0.13
## 7088        0.00         0.09
## 7089        0.00         0.05
## 7090        0.03         0.65
## 7091        0.01         0.30
## 7092        0.00         0.03
## 7093        0.00         0.02
## 7094        0.00         0.02
## 7095        0.00         0.01
## 7096        0.03         0.23
## 7097        0.02         0.17
## 7098        0.00         0.02
## 7099        0.00         0.02
## 7100        0.00         0.06
## 7101        0.00         0.01
## 7102        0.01         0.07
## 7103        0.00         0.02
## 7104        0.02         0.31
## 7105        0.00         0.18
## 7106        0.02         0.24
## 7107        0.00         0.19
## 7108        0.01         0.11
## 7109        0.01         0.08
## 7110        0.01         0.27
## 7111        0.02         0.25
## 7112        0.02         0.21
## 7113        0.01         0.09
## 7114        0.13         1.14
## 7115        0.00         0.04
## 7116        0.04         0.28
## 7117        0.02         0.19
## 7118        0.09         0.73
## 7119        0.01         0.36
## 7120        0.01         0.09
## 7121        0.01         0.08
## 7122        0.01         0.32
## 7123        0.00         0.15
## 7124        0.00         0.05
## 7125        0.00         0.04
## 7126        0.00         0.11
## 7127        0.00         0.05
## 7128        0.01         0.32
## 7129        0.00         0.12
## 7130        0.09         0.96
## 7131        0.02         0.22
## 7132        0.01         0.11
## 7133        0.00         0.11
## 7134        0.00         0.13
## 7135        0.00         0.04
## 7136        0.00         0.04
## 7137        0.00         0.02
## 7138        0.02         0.13
## 7139        0.00         0.06
## 7140        0.04         0.30
## 7141        0.00         0.12
## 7142        0.01         0.07
## 7143        0.00         0.06
## 7144        0.00         0.13
## 7145        0.01         0.09
## 7146        0.06         0.51
## 7147        0.01         0.18
## 7148        0.05         0.34
## 7149        0.02         0.19
## 7150        0.06         0.47
## 7151        0.03         0.33
## 7152        0.06         0.40
## 7153        0.04         0.45
## 7154        0.10         0.53
## 7155        0.01         0.07
## 7156        0.05         0.38
## 7157        0.00         0.03
## 7158        0.00         2.08
## 7159        0.04         0.63
## 7160        0.06         0.53
## 7161        0.03         0.32
## 7162        0.01         0.13
## 7163        0.01         0.11
## 7164        0.04         1.98
## 7165        0.01         0.03
## 7166        0.04         0.48
## 7167        0.03         0.35
## 7168        0.49         1.86
## 7169        0.13         1.16
## 7170        1.09         1.36
## 7171        0.17         0.95
## 7172        0.02         0.13
## 7173        0.01         0.11
## 7174        0.38         0.44
## 7175        0.02         0.18
## 7176        0.44         0.63
## 7177        0.08         0.45
## 7178        0.39         0.45
## 7179        0.03         0.33
## 7180        0.03         0.19
## 7181        0.02         0.14
## 7182        0.01         0.05
## 7183        0.00         0.03
## 7184        0.04         0.41
## 7185        0.01         0.18
## 7186        0.06         0.72
## 7187        0.04         0.38
## 7188        0.09         1.09
## 7189        0.12         0.85
## 7190        0.24         2.68
## 7191        0.35         2.08
## 7192        0.05         0.59
## 7193        0.01         0.18
## 7194        0.11         1.62
## 7195        0.06         0.45
## 7196        0.23         1.81
## 7197        0.02         0.07
## 7198        0.08         0.55
## 7199        0.05         0.28
## 7200        0.01         0.11
## 7201        0.01         0.05
## 7202        0.20         1.56
## 7203        0.00         0.01
## 7204        0.01         0.09
## 7205        0.00         0.01
## 7206        0.00         0.13
## 7207        0.00         0.07
## 7208        0.01         0.20
## 7209        0.01         0.15
## 7210        0.16         1.74
## 7211        0.13         1.37
## 7212        0.03         0.49
## 7213        0.03         0.40
## 7214        0.22         2.90
## 7215        0.04         0.91
## 7216        0.10         0.93
## 7217        0.02         0.18
## 7218        0.31         2.27
## 7219        0.13         1.43
## 7220        0.15         1.59
## 7221        0.20         1.47
## 7222        0.10         0.76
## 7223        0.04         0.59
## 7224        0.02         1.14
## 7225        0.05         0.71
## 7226        0.02         0.36
## 7227        0.00         0.20
## 7228        0.02         0.31
## 7229        0.00         0.24
## 7230        0.01         0.16
## 7231        0.01         0.13
## 7232        0.01         0.15
## 7233        0.01         0.09
## 7234        0.04         0.59
## 7235        0.02         0.25
## 7236        0.00         0.02
## 7237        0.00         0.01
## 7238        0.09         0.70
## 7239        0.00         0.11
## 7240        0.01         0.18
## 7241        0.02         0.17
## 7242        0.08         1.78
## 7243        0.01         0.55
## 7244        0.16         0.92
## 7245        0.02         0.35
## 7246        0.03         0.35
## 7247        0.01         0.16
## 7248        0.01         0.19
## 7249        0.01         0.13
## 7250        0.06         0.49
## 7251        0.00         0.13
## 7252        0.28         1.97
## 7253        0.02         0.71
## 7254        0.01         0.19
## 7255        0.01         0.17
## 7256        0.02         0.30
## 7257        0.00         0.04
## 7258        0.01         0.11
## 7259        0.01         0.12
## 7260        0.02         0.19
## 7261        0.00         0.02
## 7262        0.01         0.10
## 7263        0.00         0.04
## 7264        0.00         0.06
## 7265        0.00         0.03
## 7266        0.16         0.78
## 7267        0.04         0.52
## 7268        0.01         0.23
## 7269        0.01         0.31
## 7270        0.02         0.45
## 7271        0.01         0.04
## 7272        0.05         1.37
## 7273        0.01         0.06
## 7274        0.14         1.09
## 7275        0.01         0.26
## 7276        0.09         1.95
## 7277        0.04         0.55
## 7278        0.06         0.50
## 7279        0.02         0.44
## 7280        0.08         2.19
## 7281        0.02         0.14
## 7282        0.01         0.13
## 7283        0.01         0.10
## 7284        0.02         0.67
## 7285        0.01         0.05
## 7286        0.22         1.76
## 7287        0.01         0.17
## 7288        0.00         0.06
## 7289        0.00         0.02
## 7290        0.09         0.82
## 7291        0.03         0.30
## 7292        0.02         1.03
## 7293        0.00         0.15
## 7294        0.05         0.76
## 7295        0.00         0.35
## 7296        0.08         0.66
## 7297        0.01         0.15
## 7298        0.00         0.11
## 7299        0.01         0.10
## 7300        0.13         0.82
## 7301        0.00         0.05
## 7302        0.00         0.02
## 7303        0.00         0.02
## 7304        0.01         0.12
## 7305        0.00         0.05
## 7306        0.20         1.55
## 7307        0.00         0.04
## 7308        0.00         0.06
## 7309        0.00         0.04
## 7310        0.18         0.18
## 7311        0.00         0.03
## 7312        0.01         0.04
## 7313        0.00         0.02
## 7314        0.00         0.24
## 7315        0.00         0.12
## 7316        0.00         0.18
## 7317        0.00         0.07
## 7318        0.00         0.06
## 7319        0.00         0.03
## 7320        0.00         0.05
## 7321        0.00         0.01
## 7322        0.04         0.34
## 7323        0.00         0.05
## 7324        0.02         1.18
## 7325        0.00         0.07
## 7326        0.00         0.04
## 7327        0.00         0.03
## 7328        0.00         0.05
## 7329        0.00         0.03
## 7330        0.23        11.89
## 7331        0.98        10.42
## 7332        0.77        40.24
## 7333        0.22         5.07
## 7334        0.46        17.28
## 7335        0.20         5.20
## 7336        0.55        20.61
## 7337        0.20         5.46
## 7338        0.09         4.12
## 7339        0.09         2.91
## 7340        0.03         0.24
## 7341        0.01         0.15
## 7342        0.00         0.02
## 7343        0.00         0.01
## 7344        0.00         0.55
## 7345        0.01         0.23
## 7346        0.00         0.07
## 7347        0.00         0.03
## 7348        0.00         0.09
## 7349        0.00         0.06
## 7350        0.43         7.45
## 7351        0.57         5.02
## 7352        0.03         2.00
## 7353        0.00         0.15
## 7354        0.02         0.27
## 7355        0.01         0.08
## 7356        0.05         0.42
## 7357        0.00         0.08
## 7358        0.01         0.04
## 7359        0.00         0.01
## 7360        0.01         0.09
## 7361        0.01         0.05
## 7362        0.03         0.35
## 7363        0.04         0.19
## 7364        0.00         0.05
## 7365        0.00         0.04
## 7366        0.00         0.04
## 7367        0.00         0.03
## 7368        0.00         0.30
## 7369        0.02         0.12
## 7370        0.00         0.03
## 7371        0.00         0.02
## 7372        0.03         0.29
## 7373        0.04         0.28
## 7374        0.09         0.46
## 7375        0.01         0.06
## 7376        0.07         0.54
## 7377        0.00         0.04
## 7378        0.01         0.04
## 7379        0.00         0.01
## 7380        0.00         0.07
## 7381        0.00         0.02
## 7382        0.00         0.05
## 7383        0.00         0.05
## 7384        0.00         0.71
## 7385        0.05         0.53
## 7386        0.01         0.11
## 7387        0.00         0.05
## 7388        0.04         0.28
## 7389        0.01         0.16
## 7390        0.00         0.22
## 7391        0.00         0.11
## 7392        0.07         1.04
## 7393        0.00         0.52
## 7394        0.00         0.80
## 7395        0.00         0.12
## 7396        0.08         0.45
## 7397        0.00         0.24
## 7398        0.00         0.59
## 7399        0.00         0.07
## 7400        0.04         1.10
## 7401        0.06         0.54
## 7402        0.05         0.75
## 7403        0.00         0.45
## 7404        0.03         0.59
## 7405        0.06         0.38
## 7406        0.06         0.82
## 7407        0.00         0.57
## 7408        0.03         0.36
## 7409        0.03         0.21
## 7410        0.00         0.07
## 7411        0.00         0.06
## 7412        0.00         0.02
## 7413        0.00         0.01
## 7414        0.02         0.22
## 7415        0.01         0.12
## 7416        0.02         2.17
## 7417        0.04         1.99
## 7418        0.11         0.54
## 7419        0.04         0.35
## 7420        0.18         1.34
## 7421        0.02         0.42
## 7422        0.03         0.23
## 7423        0.00         0.09
## 7424        0.00         0.05
## 7425        0.00         0.04
## 7426        0.58        30.26
## 7427        0.11         5.58
## 7428        0.00         0.23
## 7429        0.00         0.15
## 7430        0.07         0.78
## 7431        0.05         0.58
## 7432        0.01         0.11
## 7433        0.01         0.09
## 7434        0.03         0.21
## 7435        0.00         0.10
## 7436        0.09         1.08
## 7437        0.03         0.32
## 7438        0.06         0.65
## 7439        0.03         0.33
## 7440        0.01         0.07
## 7441        0.00         0.01
## 7442        0.02         0.27
## 7443        0.03         0.23
## 7444        0.02         0.14
## 7445        0.00         0.04
## 7446        0.01         0.10
## 7447        0.01         0.12
## 7448        0.13         0.67
## 7449        0.04         0.44
## 7450        0.03         0.39
## 7451        0.03         0.27
## 7452        0.03         0.21
## 7453        0.00         0.08
## 7454        0.09         0.67
## 7455        0.00         0.11
## 7456        0.01         0.06
## 7457        0.00         0.02
## 7458        0.01         0.11
## 7459        0.01         0.08
## 7460        0.06         0.47
## 7461        0.00         0.01
## 7462        0.08         0.79
## 7463        0.11         0.75
## 7464        0.01         0.08
## 7465        0.00         0.03
## 7466        0.02         0.20
## 7467        0.00         0.06
## 7468        0.00         0.17
## 7469        0.00         0.05
## 7470        0.02         0.13
## 7471        0.00         0.07
## 7472        0.01         0.05
## 7473        0.01         0.13
## 7474        0.01         0.17
## 7475        0.00         0.17
## 7476        0.01         0.07
## 7477        0.00         0.03
## 7478        0.01         0.16
## 7479        0.01         0.11
## 7480        0.03         0.33
## 7481        0.03         0.31
## 7482        0.02         0.21
## 7483        0.01         0.18
## 7484        0.06         0.69
## 7485        0.00         0.01
## 7486        1.01         5.99
## 7487        0.82         4.55
## 7488        0.00         0.20
## 7489        0.00         0.06
## 7490        0.00         0.16
## 7491        0.00         0.07
## 7492        0.00         0.06
## 7493        0.00         0.02
## 7494        0.04         0.31
## 7495        0.02         0.22
## 7496        0.01         0.15
## 7497        0.00         0.12
## 7498        0.03         0.38
## 7499        0.01         0.19
## 7500        0.13         4.61
## 7501        0.10         2.70
## 7502        0.16         7.60
## 7503        0.30         4.21
## 7504        0.13         4.60
## 7505        0.13         1.77
## 7506        0.70         7.31
## 7507        0.04         1.59
## 7508        0.01         0.06
## 7509        0.00         0.02
## 7510        0.15         1.20
## 7511        0.03         0.53
## 7512        0.07         0.49
## 7513        0.01         0.31
## 7514        0.01         0.15
## 7515        0.01         0.13
## 7516        0.02         0.25
## 7517        0.00         0.16
## 7518        0.06         0.45
## 7519        0.00         0.07
## 7520        0.06         0.83
## 7521        0.04         0.50
## 7522        0.02         0.24
## 7523        0.01         0.13
## 7524        0.01         0.13
## 7525        0.01         0.11
## 7526        0.06         0.64
## 7527        0.04         0.47
## 7528        0.07         0.52
## 7529        0.01         0.29
## 7530        0.03         0.23
## 7531        0.00         0.11
## 7532        0.05         0.42
## 7533        0.01         0.22
## 7534        0.02         0.17
## 7535        0.00         0.09
## 7536        0.00         0.04
## 7537        0.00         0.03
## 7538        0.05         0.41
## 7539        0.01         0.15
## 7540        0.06         0.44
## 7541        0.01         0.20
## 7542        0.01         0.20
## 7543        0.01         0.08
## 7544        0.15         0.96
## 7545        0.08         0.94
## 7546        0.00         2.40
## 7547        0.01         0.09
## 7548        0.01         0.09
## 7549        0.00         0.02
## 7550        0.09         0.66
## 7551        0.02         0.20
## 7552        0.02         0.21
## 7553        0.01         0.15
## 7554        0.09         0.55
## 7555        0.04         0.51
## 7556        0.07         0.39
## 7557        0.03         0.36
## 7558        0.02         0.28
## 7559        0.00         0.20
## 7560        0.04         0.34
## 7561        0.00         0.09
## 7562        0.01         0.08
## 7563        0.00         0.02
## 7564        0.00         0.11
## 7565        0.00         0.05
## 7566        0.04         0.58
## 7567        0.00         0.38
## 7568        0.01         0.10
## 7569        0.00         0.08
## 7570        0.02         0.12
## 7571        0.01         0.06
## 7572        0.10         1.54
## 7573        0.01         0.33
## 7574        0.08         1.64
## 7575        0.01         0.64
## 7576        0.02         0.23
## 7577        0.00         0.11
## 7578        0.19         2.06
## 7579        0.02         0.11
## 7580        0.28         5.24
## 7581        0.13         2.29
## 7582        0.18         3.54
## 7583        0.00         0.62
## 7584        0.13         2.48
## 7585        0.00         0.41
## 7586        0.00         0.04
## 7587        0.00         0.01
## 7588        0.00         0.24
## 7589        0.02         0.21
## 7590        0.02         0.22
## 7591        0.02         0.24
## 7592        0.00         0.40
## 7593        0.00         0.09
## 7594        0.01         0.07
## 7595        0.00         0.04
## 7596        0.00         0.06
## 7597        0.01         0.03
## 7598        0.02         0.46
## 7599        0.01         0.10
## 7600        0.01         0.17
## 7601        0.00         0.05
## 7602        0.02         0.13
## 7603        0.00         0.04
## 7604        0.01         0.11
## 7605        0.00         0.02
## 7606        0.01         0.09
## 7607        0.00         0.02
## 7608        0.03         0.38
## 7609        0.00         0.18
## 7610        0.00         0.03
## 7611        0.00         0.02
## 7612        0.01         0.07
## 7613        0.01         0.05
## 7614        0.08         1.71
## 7615        0.01         0.93
## 7616        0.02         0.19
## 7617        0.00         0.13
## 7618        0.01         0.04
## 7619        0.00         0.03
## 7620        0.09         1.43
## 7621        0.00         0.28
## 7622        0.11         0.87
## 7623        0.01         0.25
## 7624        0.02         0.19
## 7625        0.00         0.09
## 7626        0.00         0.06
## 7627        0.00         0.06
## 7628        0.02         0.22
## 7629        0.01         0.05
## 7630        0.04         0.27
## 7631        0.03         0.36
## 7632        0.02         0.29
## 7633        0.02         0.25
## 7634        0.00         0.05
## 7635        0.00         0.01
## 7636        0.02         0.14
## 7637        0.00         0.05
## 7638        0.03         0.28
## 7639        0.01         0.11
## 7640        0.19         2.07
## 7641        0.24         1.77
## 7642        0.13         1.05
## 7643        0.07         1.00
## 7644        0.02         0.25
## 7645        0.02         0.23
## 7646        0.04         0.32
## 7647        0.00         0.08
## 7648        0.00         0.02
## 7649        0.00         0.02
## 7650        0.00         0.06
## 7651        0.00         0.04
## 7652        0.01         0.06
## 7653        0.00         0.02
## 7654        0.13         1.29
## 7655        0.02         0.17
## 7656        0.07         0.35
## 7657        0.03         0.23
## 7658        0.09         0.62
## 7659        0.04         0.42
## 7660        0.02         0.18
## 7661        0.00         0.08
## 7662        0.02         0.62
## 7663        0.04         0.28
## 7664        0.01         0.22
## 7665        0.03         0.21
## 7666        0.01         0.09
## 7667        0.00         0.06
## 7668        0.08         1.23
## 7669        0.00         0.31
## 7670        0.03         0.48
## 7671        0.00         0.11
## 7672        0.05         0.45
## 7673        0.07         0.39
## 7674        0.05         0.46
## 7675        0.06         0.33
## 7676        0.00         0.01
## 7677        0.00         0.02
## 7678        0.20         1.63
## 7679        0.00         0.02
## 7680        0.01         0.21
## 7681        0.00         0.14
## 7682        0.08         1.22
## 7683        0.01         0.79
## 7684        0.07         1.88
## 7685        0.00         0.21
## 7686        0.00         0.01
## 7687        0.00         0.01
## 7688        0.02         0.09
## 7689        0.01         0.04
## 7690        0.21         1.19
## 7691        0.10         1.13
## 7692        0.04         0.35
## 7693        0.00         0.08
## 7694        0.33         2.94
## 7695        0.03         0.40
## 7696        0.07         1.76
## 7697        0.01         0.71
## 7698        0.13         3.36
## 7699        0.02         1.33
## 7700        0.02         0.30
## 7701        0.01         0.21
## 7702        0.02         0.12
## 7703        0.00         0.01
## 7704        0.03         0.25
## 7705        0.01         0.09
## 7706        0.04         0.37
## 7707        0.05         0.30
## 7708        0.00         0.29
## 7709        0.00         0.03
## 7710        0.08         0.33
## 7711        0.01         0.07
## 7712        0.17         1.06
## 7713        0.03         0.46
## 7714        0.02         0.17
## 7715        0.01         0.13
## 7716        0.02         0.19
## 7717        0.01         0.06
## 7718        0.04         0.52
## 7719        0.02         0.21
## 7720        0.00         0.25
## 7721        0.00         0.05
## 7722        0.11         0.63
## 7723        0.05         0.50
## 7724        0.01         0.08
## 7725        0.00         0.01
## 7726        0.02         0.22
## 7727        0.01         0.19
## 7728        0.02         0.13
## 7729        0.00         0.06
## 7730        0.03         0.22
## 7731        0.00         0.05
## 7732        0.00         0.04
## 7733        0.00         0.02
## 7734        0.00         0.03
## 7735        0.00         0.02
## 7736        0.01         0.10
## 7737        0.00         0.04
## 7738        0.00         0.04
## 7739        0.00         0.03
## 7740        0.00         0.03
## 7741        0.00         0.01
## 7742        0.00         1.94
## 7743        0.05         0.80
## 7744        0.00         0.02
## 7745        0.00         0.02
## 7746        0.04         0.29
## 7747        0.00         0.21
## 7748        0.00         0.07
## 7749        0.00         0.05
## 7750        0.00         0.07
## 7751        0.00         0.04
## 7752        0.00         0.05
## 7753        0.00         0.02
## 7754        0.00         0.01
## 7755        0.00         0.01
## 7756        0.00         0.02
## 7757        0.00         0.02
## 7758        0.00         0.05
## 7759        0.00         0.04
## 7760        0.00         0.02
## 7761        0.00         0.02
## 7762        0.00         0.05
## 7763        0.00         0.03
## 7764        0.00         0.02
## 7765        0.00         0.01
## 7766        0.33         0.49
## 7767        0.06         0.32
## 7768        0.12         2.09
## 7769        0.04         0.62
## 7770        0.00         0.02
## 7771        0.00         0.04
## 7772        0.01         0.09
## 7773        0.00         0.05
## 7774        0.22         1.68
## 7775        0.00         0.05
## 7776        0.01         0.05
## 7777        0.00         0.04
## 7778        0.02         0.17
## 7779        0.01         0.17
## 7780        0.01         0.23
## 7781        0.00         0.04
## 7782        0.03         0.25
## 7783        0.01         0.15
## 7784        0.00         0.10
## 7785        0.00         0.01
## 7786        0.68         3.85
## 7787        0.00         0.09
## 7788        0.77         4.06
## 7789        0.03         0.44
## 7790        0.00         0.04
## 7791        0.06         0.29
## 7792        0.01         0.03
## 7793        0.00         0.02
## 7794        0.08         1.06
## 7795        0.00         0.04
## 7796        0.01         0.11
## 7797        0.00         0.07
## 7798        0.00         0.05
## 7799        0.00         0.02
## 7800        0.24         0.78
## 7801        0.01         0.08
## 7802        0.14         0.45
## 7803        0.04         0.36
## 7804        0.01         0.07
## 7805        0.00         0.05
## 7806        0.01         0.14
## 7807        0.02         0.14
## 7808        0.03         0.42
## 7809        0.00         0.26
## 7810        0.00         0.21
## 7811        0.01         0.10
## 7812        0.01         0.05
## 7813        0.00         0.03
## 7814        0.03         0.27
## 7815        0.00         0.15
## 7816        0.01         0.03
## 7817        0.00         0.02
## 7818        0.08         0.98
## 7819        0.04         0.56
## 7820        0.00         0.06
## 7821        0.00         0.05
## 7822        0.02         0.10
## 7823        0.00         0.05
## 7824        0.01         0.80
## 7825        0.00         0.11
## 7826        0.00         0.16
## 7827        0.00         0.12
## 7828        0.00         0.25
## 7829        0.00         0.17
## 7830        0.00         0.26
## 7831        0.00         0.15
## 7832        0.01         0.11
## 7833        0.01         0.07
## 7834        0.01         0.10
## 7835        0.00         0.03
## 7836        0.01         0.14
## 7837        0.01         0.12
## 7838        0.02         0.22
## 7839        0.02         0.11
## 7840        0.01         1.75
## 7841        0.00         0.73
## 7842        0.03         1.68
## 7843        0.02         1.12
## 7844        0.00         0.09
## 7845        0.01         0.04
## 7846        0.02         0.13
## 7847        0.00         0.05
## 7848        0.01         0.08
## 7849        0.00         0.06
## 7850        0.02         0.12
## 7851        0.00         0.02
## 7852        0.01         0.06
## 7853        0.01         0.06
## 7854        0.08         1.02
## 7855        0.01         0.05
## 7856        0.03         0.20
## 7857        0.01         0.10
## 7858        0.05         0.43
## 7859        0.02         0.20
## 7860        0.01         0.17
## 7861        0.00         0.04
## 7862        0.03         0.34
## 7863        0.01         0.10
## 7864        0.00         0.05
## 7865        0.00         0.02
## 7866        0.01         0.07
## 7867        0.01         0.07
## 7868        0.03         0.27
## 7869        0.02         0.23
## 7870        0.12         1.31
## 7871        0.19         1.24
## 7872        0.05         0.73
## 7873        0.03         0.46
## 7874        0.02         0.28
## 7875        0.01         0.10
## 7876        0.02         0.12
## 7877        0.01         0.10
## 7878        0.02         0.19
## 7879        0.00         0.02

Consoles sales data

dConSales %>% 
  get_dupes(Platform)
## No duplicate combinations found of: Platform
## [1] Platform     dupe_count   Position     NA_Sales     EU_Sales    
## [6] JP_Sales     Other_Sales  Global_Sales
## <0 rows> (or 0-length row.names)

Next to performing a search for duplicate information in the files of the consoles and titles some rows were found containing repeated names in the list of videogames. However, they will not be removed because the titles belong to different platforms.

Analysis

Once the data has been completed, the investigation continues to find the data that will help to create visualizations about the results what I want to obtain.

First, I start by creating and displaying console sales for each region. Because, I want to know which are the most popular consoles around the world

total_sales = dConSales %>%
  subset(select = c(Platform, NA_Sales, EU_Sales, JP_Sales, Other_Sales)) %>%
  group_by(Platform) %>%
  pivot_longer(c("NA_Sales", "EU_Sales", "JP_Sales", "Other_Sales"), values_to = "Sales")
  ggplot(total_sales, aes(x = Platform, y = Sales, fill = name)) + geom_bar(stat = "identity", position = position_dodge(width = 0.3)) + labs(title = "Console Sales per Region", x = "Console", y = "Sales(inMillions)") + theme_linedraw() + theme(axis.text.x = element_text(size = 5, angle = 90)) + scale_fill_brewer(palette = "Set1")

After obtaining the data, I was able to observe that the preferred console in North America was the Nintendo DS, as its sales record to date stands at 57.92 million. In the case of Europe, their favorite console is the PlayStation 2, with sales totaling 55.28 million. As for Japan, the preferred console was the Nintendo DS, with sales reaching 32.99 million. Lastly, in other parts of the world, the preferred console was the PlayStation 2, with sales of 26.59 million

dConSales %>%
  group_by(Platform) %>%
  summarize(total = sum(Global_Sales)) %>%
  arrange(desc(total)) %>%
  slice(1:5) %>%
  ggplot(aes(x = total, y = reorder(Platform, -total), fill = Platform)) + 
  geom_bar(stat = "identity") + 
  labs(title = "Top 5 Platforms by Global Sale", x= "Sales(Millions)", y = "Console") + 
  theme_linedraw() + 
  theme(axis.text.y = element_text(size = 8, angle = 0)) +
  scale_fill_brewer(palette = "Set1")

These findings raised another question for me: Are Nintendo and PlayStation the most favored companies among video game enthusiasts? The answer is yes. Upon reviewing the sales figures of other consoles, the PlayStation 4, Nintendo Switch, and Game Boy, are other consoles that also preferred by people worldwide

After seeing the results, I asked myself: What’s happening with Microsoft and the other video game companies? Do they have popular consoles in the video game market?

color <- c("Xbox 360 (X360)" = "mediumseagreen")

dConSales %>%
  group_by(Platform) %>%
  summarize(total = sum(Global_Sales)) %>%
  arrange(desc(total)) %>%
  slice(1:10) %>%
  ggplot(aes(x = reorder(Platform, -total), y = total, fill = Platform)) + 
  geom_col() +
  geom_text(aes(label = paste0(round(total, 2), "M")), vjust = -0.10, color = "black", size = 2.5) +
  labs(title = "Top 10 Platforms by Global Sale", x = "Console", y = "Sales (Millions)") +
  scale_fill_manual(values = color) + theme_linedraw() +
  theme(axis.text.x = element_text(size = 10, angle = 90))

The finding I discovered was that Microsoft only has one preferred video game console by people, which is called the Xbox 360.

After clarifying my doubts about console gaming, I continue to observe which are the 10 favorite titles that users prefer to play nowadays

dVgSales %>%
  group_by(Name) %>%
  summarize(total = sum(Global_Sales)) %>%
  arrange(desc(total)) %>%
  slice(1:10) %>%
  ggplot(aes(x = total, y = reorder(Name, total), fill = Name)) + 
  geom_col() +
  geom_text(aes(label = paste0(round(total, 2), "M")), hjust = -0.10, color = "black", size = 2.5) +
  labs(title = "10 Best-Selling Video Games Of All Time", x = "Sales (Millions)", y = "Game") +
  theme_linedraw() +
  theme(axis.text.y = element_text(size = 6))

When I observed the list of video games, I thought the game in first place would be a multiplatform one, which it wasn’t. On the other hand, I can see that the games do not belong to a specific genre. Therefore, it makes me wonder which genres people prefer to enjoy in their free time

genre_zone <- dVgSales %>%
  group_by(Genre) %>%
  summarize(NorthA_Sales = sum(NA_Sales), 
            Europe_Sales = sum(EU_Sales),
            Japan_Sales = sum(JP_Sales),
            OtherC_Sales = sum(Other_Sales),
            .groups = "drop")
sales_genre <- genre_zone %>%
  mutate(Total_Sales = NorthA_Sales + Europe_Sales + Japan_Sales + OtherC_Sales) %>%
  top_n(5, Total_Sales) %>%
  arrange(desc(Total_Sales))
table <- kable(sales_genre, caption = "The Best-Selling Video Game Genres by Zone")
print(table)
## 
## 
## Table: The Best-Selling Video Game Genres by Zone
## 
## |Genre        | NorthA_Sales| Europe_Sales| Japan_Sales| OtherC_Sales| Total_Sales|
## |:------------|------------:|------------:|-----------:|------------:|-----------:|
## |Action       |       877.83|       525.00|      159.95|       187.38|     1750.16|
## |Sports       |       683.35|       376.85|      135.37|       134.97|     1330.54|
## |Shooter      |       582.60|       313.27|       38.28|       102.69|     1036.84|
## |Role-Playing |       327.28|       188.06|      352.31|        59.61|      927.26|
## |Platform     |       447.05|       201.63|      130.77|        51.59|      831.04|

Once the results are obtained, we observe the most popular genres around the world, noting that action games are the genre of choice globally

dVgSales %>%
  group_by(Genre) %>%
  summarize(total = sum(Global_Sales)) %>%
  arrange(desc(total)) %>%
  slice(1:5) %>%
  ggplot(aes(x = total, y = reorder(Genre, total), size = total, fill = total)) + 
  geom_point(shape = 21, color = "black") +
  geom_text(aes(label = paste0(round(total, 2), "M")), hjust = -0.10, color = "black", size = 2.5) +
  scale_fill_gradient(low = "red3", high = "seagreen3") +
  labs(title = "5 Best-Selling Video Games Genre Of All Time", x = "Sales (Millions)", y = "Genre") +
  theme_linedraw() +
  theme(axis.text.y = element_text(size = 8))

Conclusion

In conclusion, after conducting a thorough analysis of the research on video games, I am pleased to share that it has provided me with a deeper insight into the world of video games. This allowed me to observe sales trends, the most popular genres, and the geographic distribution of sales, and above all, the preferences of players worldwide.

Furthermore, it has given me a clearer idea of the opportunities and challenges faced by video game developers and publishers in a highly competitive global market.

Conducting this research analysis on video games has been a rewarding experience, same like to purchasing and opening a new game, which has allowed me to delve deeper into a field that I am passionate about. I hope that the knowledge gained through this study can be useful in better understanding the dynamics and evolution of the video game industry in the future.

References

I would like to thank the following websites that helped me with create my case: